/* =================================================================
   NETVANTA — Premium ISP Website
   Palette:  #15478b (primary) · #46942c (secondary) · #172e5a (dark)
   ================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  --primary:        #15478b;
  --primary-600:    #113c78;
  --primary-700:    #0e3262;
  --primary-50:     #eef3fa;
  --primary-100:    #dbe6f4;
  --secondary:      #46942c;
  --secondary-600:  #3a7d24;
  --secondary-50:   #eef7e9;
  --dark:           #172e5a;
  --dark-2:         #0e1e3f;
  --ink:            #1b2336;
  --muted:          #a4a6a9;
  --line:           #e6ebf5;
  --line-2:         #eff2f9;
  --bg:             #ffffff;
  --bg-soft:        #f7f9fc;
  --bg-cream:       #f4f6fb;
  --warning:        #f59e0b;
  --danger:         #dc2626;
  --wa:             #25D366;
  --radius-sm:      8px;
  --radius:         16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --shadow-sm:      0 1px 2px rgba(23, 46, 90, .06);
  --shadow:         0 6px 20px rgba(23, 46, 90, .08);
  --shadow-lg:      0 24px 60px rgba(23, 46, 90, .12);
  --shadow-xl:      0 40px 100px -20px rgba(23, 46, 90, .22);
  --grad-brand:     linear-gradient(135deg, #15478b 0%, #172e5a 60%, #46942c 120%);
  --grad-title:     linear-gradient(92deg, #15478b 0%, #46942c 100%);
  --grad-hero:      linear-gradient(180deg, #f7f9fc 0%, #ffffff 60%);
  --header-h:       88px;
  --strip-h:        42px;
  --ease:           cubic-bezier(.22, 1, .36, 1);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Satoshi', 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: calc(var(--header-h) + var(--strip-h));
}
body.no-scroll { overflow: hidden; }
img, svg, video { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--secondary); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Clash Display', 'Space Grotesk', 'Segoe UI', sans-serif;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 .6em;
  line-height: 1.14;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.5rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1em; color: var(--ink); }
.small-text { font-size: .85rem; color: var(--muted); }
.opacity-50 { opacity: .5; }

/* Accent gradient text */
.accent-gradient {
  background: var(--grad-title);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- 3. Container & section padding ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 22px; width: 100%; }
.section-pad { padding: clamp(60px, 9vw, 120px) 0; position: relative; }
.bg-soft { background: var(--bg-soft); }
.pattern-soft { position: relative; }
.pattern-soft::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(21,71,139,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  pointer-events: none;
}
.pattern-soft > * { position: relative; }

/* Section heads */
.section-head { margin-bottom: 56px; }
.section-head.text-center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--primary);
  padding: 7px 16px 7px 14px;
  background: var(--primary-50);
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(70,148,44,.15);
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.12;
  margin-bottom: 18px;
  max-width: 20ch;
}
.section-head.text-center .section-title,
.section-head.text-center .section-sub { margin-left: auto; margin-right: auto; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 62ch; line-height: 1.7; margin-bottom: 0; }

/* ---------- 4. Buttons ---------- */
.btn, a.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-weight: 600; font-size: .95rem;
  border-radius: 999px; border: 1.5px solid transparent;
  transition: all .35s var(--ease);
  white-space: nowrap; text-decoration: none;
  line-height: 1; cursor: pointer;
}
.btn i { font-size: 1em; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 30px -10px rgba(21,71,139,.5); }
.btn-primary:hover, .btn-primary:focus { background: var(--dark); color: #fff; transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(21,71,139,.6); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--line); }
.btn-outline:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--secondary); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: #fff; color: var(--primary); border-color: #fff; }
.btn-ghost { background: rgba(21,71,139,.06); color: var(--dark); }
.btn-ghost:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 17px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 18px; font-size: .85rem; }
.btn:disabled { opacity: .65; cursor: not-allowed; }

/* ---------- 5. Top utility strip ---------- */
.top-strip {
  background: var(--dark-2);
  color: rgba(255,255,255,.85);
  padding: 10px 0;
  font-size: .85rem;
  position: fixed;          /* ← changed */
  top: 0; left: 0; right: 0; /* ← added */
  z-index: 101;
}
.top-strip a { color: rgba(255,255,255,.85); }
.top-strip a:hover { color: #fff; }
.top-strip-left i, .top-strip-right i { color: var(--secondary); }
.top-strip-right a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  margin-left: 6px;
  transition: all .25s ease;
}
.top-strip-right a:hover { background: rgba(255,255,255,.12); transform: translateY(-1px); }

/* ---------- 6. Header ---------- */
.site-header {
  position: fixed; top: var(--strip-h); left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  padding-top: 24px;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: all .4s var(--ease);
}
.site-header.scrolled {
  padding: 14px 0;
  padding-top: 22px;
  background: rgba(255,255,255,.97);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(23,46,90,.05);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img { height: 44px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; }
.main-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 2px;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  color: var(--dark); font-weight: 700; font-size: 1rem;
  padding: 10px 16px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 4px;
  letter-spacing: 2px;
  transition: all .2s ease;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--primary); background: var(--primary-50); }
.main-nav .caret { font-size: .7em; opacity: .7; transition: transform .25s ease; }
.main-nav .has-mega:hover .caret { transform: rotate(180deg); }

/* Mega dropdown */
.has-mega { position: static; }
.mega {
  position: absolute;
  left: 50%; top: calc(100% + 10px);
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border-radius: 24px;
  width: min(1120px, calc(100vw - 40px));
  padding: 26px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  opacity: 0; visibility: hidden;
  transition: all .35s var(--ease);
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
}
.has-mega:hover .mega,
.has-mega:focus-within .mega {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.mega-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  transition: background .25s ease;
}
.mega-item:hover { background: var(--bg-cream); }
.mega-item-img {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-50), #fff);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  overflow: hidden;
}
.mega-item-img img { width: 100%; height: 100%; object-fit: cover; }
.mega-item-img i { font-size: 1.2rem; }
.mega-item:hover .mega-item-img { background: var(--primary); color: #fff; border-color: var(--primary); }
.mega-item-body strong { display: block; font-weight: 600; color: var(--dark); font-size: .95rem; line-height: 1.3; margin-bottom: 3px; }
.mega-item-body small { color: var(--muted); font-size: .8rem; line-height: 1.4; display: block; }
.mega-promo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--grad-brand);
  color: #fff;
  padding: 24px;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.mega-promo-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(70,148,44,.35), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(70,148,44,.18), transparent 60%);
  pointer-events: none;
}
.mega-promo h4 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; position: relative; }
.mega-promo p { color: rgba(255,255,255,.88); font-size: .9rem; margin-bottom: 14px; position: relative; }
.mega-promo .btn { position: relative; align-self: flex-start; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.hamburger {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary-50);
  border: 0;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: all .25s ease;
}

/* ---------- 7. Mobile nav ---------- */
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 90vw);
  background: #fff;
  z-index: 200;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
  box-shadow: -24px 0 60px rgba(23,46,90,.15);
  display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.mobile-nav-head img { height: 42px; width: auto; }
.mobile-close {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-cream); border: 0; color: var(--dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.mobile-close:hover { background: var(--primary); color: #fff; }
.mobile-menu { list-style: none; padding: 0; margin: 0 0 20px; }
.mobile-menu > li { border-bottom: 1px solid var(--line); }
.mobile-menu > li > a,
.mobile-menu > li > .mobile-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 16px 4px; color: var(--dark); font-size: 1.05rem; font-weight: 500;
  font-family: 'Clash Display', 'Segoe UI', sans-serif;
  background: transparent; border: 0; text-align: left;
}
.mobile-menu > li > a:hover { color: var(--primary); }
.mobile-toggle span { font-size: 1.3rem; line-height: 1; color: var(--primary); }
.mobile-menu .sub {
  list-style: none; padding: 0;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
}
.mobile-menu .sub.open { max-height: 600px; }
.mobile-menu .sub li { border-bottom: 0; }
.mobile-menu .sub a {
  display: block; padding: 10px 18px;
  color: var(--muted); font-size: .92rem; font-weight: 500;
}
.mobile-menu .sub a:hover { color: var(--primary); }
.mobile-nav-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.mobile-nav-foot .btn { width: 100%; }

.mobile-backdrop {
  position: fixed; inset: 0;
  background: rgba(14,30,63,.5);
  z-index: 150;
  opacity: 0; visibility: hidden;
  transition: all .35s ease;
}
.mobile-nav.open ~ .mobile-backdrop { opacity: 1; visibility: visible; }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  padding: 60px 0 100px;
  background: var(--grad-hero);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute; top: -10%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(21,71,139,.12), transparent 60%);
  border-radius: 50%;
  filter: blur(30px);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(21,71,139,.14) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse at 20% 40%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 20% 40%, #000 0%, transparent 65%);
}
.hero .container { position: relative; z-index: 1; }

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 16px 7px 8px;
  border-radius: 999px;
  font-size: .82rem; font-weight: 600; color: var(--dark);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.pill-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--secondary-50); color: var(--secondary);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.pill-dot::after {
  content: ''; position: absolute; inset: 5px;
  background: var(--secondary); border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(70,148,44,.5); }
  100% { box-shadow: 0 0 0 14px rgba(70,148,44,0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin-bottom: 20px;
}
.hero-title .typed-cursor { color: var(--secondary); font-weight: 300; opacity: .8; }

.hero-sub { font-size: 1.1rem; color: var(--muted); line-height: 1.7; max-width: 56ch; margin-bottom: 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 42px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 460px;
}
.hero-stats > div strong {
  display: block;
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--dark);
  font-weight: 600; line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.hero-stats > div small { color: var(--muted); font-size: .8rem; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-visual-wrap { position: relative; aspect-ratio: 1/1.05; max-width: 520px; margin: 0 auto; }
.hero-rings {
  position: absolute; inset: -24px;
  border-radius: 50%;
  border: 2px dashed var(--primary);
  opacity: .2;
  animation: rotate-slow 40s linear infinite;
  z-index: 0;
}
.hero-rings::before {
  content: ''; position: absolute; inset: -28px;
  border-radius: 50%;
  border: 2px dashed var(--secondary);
  opacity: .22;
  animation: rotate-slow 60s linear infinite reverse;
}
@keyframes rotate-slow { to { transform: rotate(360deg); } }

.hero-visual .img-frame {
  position: relative; z-index: 1;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: floaty 8s ease-in-out infinite;
}
.hero-visual .img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .img-frame::after { display: none; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-weight: 600; font-size: .85rem;
  color: var(--dark);
  z-index: 2;
  animation: floaty 6s ease-in-out infinite;
}
.hero-chip i { color: var(--secondary); font-size: .95rem; }
.chip-1 { top: 6%; right: -4%; animation-delay: 0s; }
.chip-1 i { color: var(--primary); }
.chip-2 { bottom: 20%; left: -8%; animation-delay: 1.2s; }
.chip-2 i { color: var(--secondary); }
.chip-3 { bottom: -2%; right: 10%; animation-delay: 2.4s; }

/* ---------- 9. Trust bar ---------- */
.trust-bar {
  background: #fff;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
  margin-top: -40px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-icon {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--primary-50); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.trust-item strong { display: block; font-size: .96rem; color: var(--dark); line-height: 1.2; }
.trust-item span { display: block; color: var(--muted); font-size: .82rem; margin-top: 2px; }

/* ---------- 10. Packages ---------- */
.packages-grid { display: flex; flex-wrap: wrap; }
.pkg-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 28px 32px;
  border: 1px solid var(--line);
  transition: all .45s var(--ease);
  height: 100%;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.pkg-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.pkg-card:hover::before { transform: scaleX(1); }
.pkg-card.pkg-popular {
  background: var(--grad-brand);
  color: #fff;
  border: 0;
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}
.pkg-card.pkg-popular:hover { transform: scale(1.03) translateY(-6px); }
.pkg-flag {
  position: absolute; top: 14px; right: 14px;
  background: var(--secondary); color: #fff;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.pkg-speed {
  font-family: 'Clash Display', sans-serif;
  font-size: 3rem; font-weight: 600;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 8px;
}
.pkg-card.pkg-popular .pkg-speed { color: #fff; }
.pkg-speed small { font-size: .9rem; font-weight: 500; color: var(--muted); margin-left: 6px; }
.pkg-card.pkg-popular .pkg-speed small { color: rgba(255,255,255,.75); }
.pkg-name { font-size: 1.3rem; margin-bottom: 14px; color: var(--dark); }
.pkg-card.pkg-popular .pkg-name { color: #fff; }
.pkg-price {
  font-family: 'Clash Display', sans-serif;
  color: var(--dark);
  margin-bottom: 18px;
  display: flex; align-items: baseline; gap: 4px;
}
.pkg-card.pkg-popular .pkg-price { color: #fff; }
.pkg-price .curr { font-size: 1rem; font-weight: 600; color: var(--muted); }
.pkg-card.pkg-popular .pkg-price .curr { color: rgba(255,255,255,.75); }
.pkg-price .amount { font-size: 2.4rem; font-weight: 600; line-height: 1; letter-spacing: -.03em; }
.pkg-price .per { font-size: .92rem; color: var(--muted); font-weight: 500; }
.pkg-card.pkg-popular .pkg-price .per { color: rgba(255,255,255,.7); }
.pkg-features { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.pkg-features li {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 6px 0; font-size: .92rem; color: var(--ink);
}
.pkg-features li i { color: var(--secondary); margin-top: 4px; flex-shrink: 0; font-size: .85em; }
.pkg-card.pkg-popular .pkg-features li { color: rgba(255,255,255,.92); }
.pkg-card.pkg-popular .pkg-features li i { color: #fff; }

/* ---------- 11. Services grid ---------- */
.services-grid { }
.service-card {
  display: flex; flex-direction: column;
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--line);
  transition: all .45s var(--ease);
  height: 100%;
  color: var(--dark);
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  color: var(--dark);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-50), #fff);
  border: 1px solid var(--line);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: all .4s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--primary); color: #fff; border-color: var(--primary);
  transform: rotate(-6deg);
}
.service-thumb {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden;
  margin: -4px -4px 18px;
  background: var(--bg-cream);
}
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service-card:hover .service-thumb img { transform: scale(1.08); }
.service-name { font-size: 1.2rem; margin-bottom: 8px; line-height: 1.3; }
.service-desc { color: var(--muted); font-size: .92rem; line-height: 1.6; margin-bottom: 18px; flex-grow: 1; }
.service-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: .88rem;
  margin-top: auto;
}
.service-more i { transition: transform .3s ease; }
.service-card:hover .service-more { color: var(--secondary); }
.service-card:hover .service-more i { transform: translateX(4px); }
.service-card-lg { padding: 0; }
.service-card-lg .service-name,
.service-card-lg .service-desc,
.service-card-lg .service-more { padding-left: 24px; padding-right: 24px; }
.service-card-lg .service-name { padding-top: 20px; }
.service-card-lg .service-more { padding-bottom: 24px; }
.service-card-lg .service-thumb { margin: 0 0 0; border-radius: 0; }

/* ---------- 12. Sticky pin section ---------- */
.sticky-pin-wrap .sticky-pin-col {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.pin-items > * + * { margin-top: 20px; }
.pin-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  transition: all .4s ease;
  position: relative;
}
.pin-item:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateX(4px); }
.pin-num {
  display: inline-block;
  font-family: 'Clash Display', sans-serif;
  font-size: 2.4rem; line-height: 1;
  color: var(--primary-100);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -.04em;
}
.pin-item h4 { font-size: 1.25rem; margin-bottom: 8px; }
.pin-item p { color: var(--muted); font-size: .94rem; line-height: 1.65; margin-bottom: 0; }

/* ---------- 13. Parallax ---------- */
.parallax-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(21,71,139,.92), rgba(23,46,90,.95));
  z-index: 0;
}
.parallax-section .container { position: relative; z-index: 1; }
.parallax-section h2,
.parallax-section p,
.parallax-title,
.parallax-sub { color: #fff; }
.parallax-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.parallax-sub { font-size: 1.05rem; color: rgba(255,255,255,.85); margin-bottom: 28px; }
.parallax-stats .stat-big,
.stat-big {
  display: block;
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  background: linear-gradient(135deg, #fff, #c8dcf9);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.parallax-stats p { color: rgba(255,255,255,.78); font-size: .92rem; margin: 0; }

/* ---------- 14. Testimonials ---------- */
.testi-slider { padding: 10px 0 60px; }
.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 260px;
  display: flex; flex-direction: column;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 10px; right: 24px;
  font-family: 'Clash Display', serif;
  font-size: 5rem; line-height: 1;
  color: var(--primary-50);
  user-select: none;
}
.testi-stars { color: var(--warning); margin-bottom: 14px; display: flex; gap: 2px; position: relative; }
.testi-stars i { font-size: .9rem; }
.testi-quote { font-size: .98rem; line-height: 1.65; color: var(--ink); flex-grow: 1; margin-bottom: 20px; position: relative; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Clash Display', sans-serif;
  font-weight: 600; font-size: 1.05rem;
}
.testi-author strong { display: block; font-weight: 600; color: var(--dark); font-size: .95rem; }
.testi-author small { color: var(--muted); font-size: .8rem; }
.testi-pagination { text-align: center; margin-top: 10px; }
.swiper-pagination-bullet { background: var(--primary); opacity: .25; }
.swiper-pagination-bullet-active { background: var(--secondary); opacity: 1; width: 28px; border-radius: 5px; transition: all .3s ease; }

/* ---------- 15. Blog cards ---------- */
.blog-card {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
  height: 100%;
  color: var(--dark);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; color: var(--dark); }
.blog-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-cream); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.07); }
.blog-body { padding: 22px 24px 26px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: inline-block;
  font-size: .78rem; font-weight: 600;
  color: var(--primary); letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 10px;
}
.blog-title { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.3; color: var(--dark); }
.blog-excerpt { color: var(--muted); font-size: .9rem; line-height: 1.6; margin-bottom: 16px; flex-grow: 1; }
.blog-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: .88rem;
  margin-top: auto;
}
.blog-more i { transition: transform .3s ease; }
.blog-card:hover .blog-more i { transform: translateX(4px); }

/* ---------- 16. Image frames ---------- */
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-cream);
}
.img-frame img { width: 100%; height: auto; display: block; }

.img-frame-dotted::after {
  content: ''; position: absolute;
  inset: 14px;
  border: 2px dashed rgba(255,255,255,.6);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
.img-frame-dotted::before {
  content: ''; position: absolute;
  top: -14px; right: -14px;
  width: 80px; height: 80px;
  border: 3px solid var(--secondary);
  border-radius: 18px;
  z-index: -1;
  opacity: .6;
}

.img-frame-offset-ring { border-radius: 50%; aspect-ratio: 1/1; }
.img-frame-offset-ring img { width: 100%; height: 100%; object-fit: cover; }
.img-frame-offset-ring::before {
  content: ''; position: absolute;
  inset: -20px;
  border: 2px dashed var(--primary);
  border-radius: 50%;
  opacity: .25;
  animation: rotate-slow 40s linear infinite;
  pointer-events: none;
}
.img-frame-offset-ring::after {
  content: ''; position: absolute;
  inset: -44px;
  border: 2px dashed var(--secondary);
  border-radius: 50%;
  opacity: .3;
  animation: rotate-slow 60s linear infinite reverse;
  pointer-events: none;
}

.img-frame-lined::after {
  content: ''; position: absolute;
  top: -18px; left: -18px;
  right: 40px; bottom: 40px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  pointer-events: none;
}
.img-frame-lined::before {
  content: ''; position: absolute;
  bottom: -18px; right: -18px;
  top: 40px; left: 40px;
  border: 2px solid var(--secondary);
  border-radius: var(--radius-lg);
  z-index: -1;
  pointer-events: none;
}

/* ---------- 17. CTA band ---------- */
.cta-band {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--grad-brand);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-blobs {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(70,148,44,.3), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,.08), transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: center;
}
.cta-title { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 8px; }
.cta-sub { color: rgba(255,255,255,.85); font-size: 1.05rem; margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* ---------- 18. Footer ---------- */
.site-footer {
  background: var(--dark-2);
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(70,148,44,.12), transparent 40%),
    radial-gradient(circle at 95% 100%, rgba(21,71,139,.25), transparent 45%);
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-logo { background: #fff; padding: 6px 12px; border-radius: 10px; margin-bottom: 18px; width: auto; height: auto; max-height: 50px; }
.footer-about { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.7; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .3s ease;
  font-size: .92rem;
}
.footer-socials a:hover { background: var(--secondary); color: #fff; transform: translateY(-3px); }
.footer-title { color: #fff; font-size: 1rem; margin-bottom: 20px; font-weight: 600; font-family: 'Clash Display', sans-serif; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.7); font-size: .92rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s ease;
}
.footer-links a::before {
  content: ''; width: 6px; height: 1px; background: currentColor;
  opacity: 0; transition: all .3s ease;
}
.footer-links a:hover { color: var(--secondary); }
.footer-links a:hover::before { opacity: 1; width: 14px; }
.footer-contact-line { color: rgba(255,255,255,.7); font-size: .92rem; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact-line i { color: var(--secondary); margin-top: 4px; flex-shrink: 0; }
.footer-contact-line a { color: inherit; }
.footer-contact-line a:hover { color: var(--secondary); }

/* Newsletter */
.newsletter label { color: rgba(255,255,255,.65); font-size: .82rem; display: block; }
.newsletter-row {
  display: flex; gap: 6px;
  background: rgba(255,255,255,.06);
  padding: 5px 5px 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
}
.newsletter-row input {
  flex: 1;
  background: transparent; border: 0;
  padding: 10px 4px;
  color: #fff; font-family: inherit; font-size: .9rem;
  outline: none;
}
.newsletter-row input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-row button {
  background: var(--secondary); color: #fff;
  border: 0; width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.newsletter-row button:hover { background: var(--secondary-600); transform: translateX(3px); }

.footer-bottom {
  margin-top: 50px;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.55); font-size: .84rem;
}
.footer-bottom p { margin: 0; color: inherit; }
.footer-bottom a { color: rgba(255,255,255,.7); margin: 0 6px; }
.footer-bottom a:hover { color: var(--secondary); }

/* ---------- 19. Floating action buttons ---------- */
.floating-actions {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 90;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  position: relative;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 14px 30px -8px rgba(0,0,0,.35);
  transition: transform .3s ease;
  font-size: 1.25rem;
}
.fab:hover { transform: scale(1.08); color: #fff; }
.fab-wa { background: var(--wa); }
.fab-call { background: var(--primary); }
.fab-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: fabRing 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes fabRing {
  0%   { transform: scale(1);   opacity: .45; }
  80%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- 20. Page banner ---------- */
.page-banner {
  position: relative;
  padding: 70px 0 60px;
  background: linear-gradient(135deg, var(--primary-50), #fff 70%);
  overflow: hidden;
  isolation: isolate;
}
.banner-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(21,71,139,.14) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse at 80% 40%, #000 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 40%, #000 0%, transparent 60%);
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner nav {
  color: var(--muted); font-size: .88rem; margin-bottom: 14px;
}
.page-banner nav a { color: var(--primary); font-weight: 500; }
.page-banner nav span { margin: 0 6px; color: var(--muted); }
.banner-title { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: 14px; max-width: 22ch; }
.banner-sub { font-size: 1.05rem; color: var(--muted); max-width: 62ch; line-height: 1.65; margin: 0; }
.banner-slim { padding: 60px 0 40px; }
.banner-slim .banner-title { font-size: clamp(1.6rem, 3.6vw, 2.5rem); max-width: 30ch; }

/* ---------- 21. Contact ---------- */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
  height: 100%;
  transition: all .35s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.contact-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--primary-50); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
}
.contact-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-card p { margin-bottom: 4px; font-size: .92rem; }
.contact-card a { color: var(--dark); font-weight: 500; }
.contact-card a:hover { color: var(--primary); }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { font-size: 1.6rem; margin-bottom: 6px; }
.contact-form-card > p { color: var(--muted); margin-bottom: 22px; }

.form-label { display: block; font-weight: 600; font-size: .85rem; color: var(--dark); margin-bottom: 7px; }
.form-control, input[type="text"].form-control, input[type="email"].form-control,
input[type="tel"].form-control, textarea.form-control, select.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: .95rem;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  transition: all .25s ease;
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(21,71,139,.08); }
textarea.form-control { resize: vertical; min-height: 130px; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 460px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }

/* Alerts */
.alert {
  padding: 13px 18px; border-radius: 12px;
  font-size: .92rem; margin-bottom: 0;
  border-left: 3px solid currentColor;
}
.alert-success { background: var(--secondary-50); color: var(--secondary-600); border-color: var(--secondary); }
.alert-error   { background: #fef2f2; color: #b91c1c; border-color: #dc2626; }

/* ---------- 22. Sidebar ---------- */
.sidebar-sticky {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 22px;
}
.sidebar-card h4 { font-size: 1.05rem; margin-bottom: 14px; }
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { margin-bottom: 8px; }
.sidebar-list a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 10px;
  color: var(--dark); font-size: .92rem; font-weight: 500;
  transition: all .25s ease;
}
.sidebar-list a:hover { background: var(--primary-50); color: var(--primary); }
.sidebar-list a i { color: var(--primary); }
.sidebar-contact { background: var(--grad-brand); color: #fff; border: 0; }
.sidebar-contact h4 { color: #fff; }
.sidebar-contact p { color: rgba(255,255,255,.82); margin-bottom: 14px; }
.sidebar-contact .btn-primary { background: #fff; color: var(--primary); }
.sidebar-contact .btn-primary:hover { background: var(--secondary); color: #fff; }
.sidebar-contact .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.sidebar-contact .btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }

.recent-posts { list-style: none; padding: 0; margin: 0; }
.recent-posts li { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.recent-posts li:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.recent-posts a { display: flex; align-items: center; gap: 12px; color: var(--dark); }
.recent-posts img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.recent-posts strong { display: block; font-size: .9rem; line-height: 1.3; margin-bottom: 4px; color: var(--dark); font-weight: 600; }
.recent-posts small { color: var(--muted); font-size: .78rem; }
.recent-posts a:hover strong { color: var(--primary); }

/* ---------- 23. Article body ---------- */
.article-body { font-size: 1.02rem; line-height: 1.8; color: var(--ink); }
.article-body h2, .article-body h3, .article-body h4 { margin-top: 1.6em; margin-bottom: .6em; }
.article-body h2 { font-size: 1.6rem; }
.article-body h3 { font-size: 1.3rem; }
.article-body p { margin-bottom: 1.2em; }
.article-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--secondary); }
.article-body ul, .article-body ol { padding-left: 1.4em; margin-bottom: 1.2em; }
.article-body li { margin-bottom: .5em; }
.article-body img { border-radius: var(--radius); margin: 1.4em 0; }
.article-body blockquote {
  border-left: 4px solid var(--primary);
  background: var(--bg-soft);
  padding: 16px 22px;
  margin: 1.4em 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--dark);
}
.article-body code { background: var(--bg-cream); padding: 2px 8px; border-radius: 6px; font-size: .92em; }

.share-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: .9rem; color: var(--muted);
}
.share-bar a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-cream); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.share-bar a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ---------- 24. Check list ---------- */
.check-list { list-style: none; padding: 0; margin: 16px 0 24px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  font-size: .96rem;
}
.check-list li i {
  color: var(--secondary); flex-shrink: 0; margin-top: 6px;
  width: 18px; height: 18px;
  background: var(--secondary-50);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .65rem;
}

/* ---------- 25. Value cards (about page) ---------- */
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: all .4s var(--ease);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: .92rem; line-height: 1.6; margin: 0; }

/* ---------- 26. Service detail CTA ---------- */
.service-cta {
  background: var(--grad-brand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
}
.service-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding: 28px;
}
.service-cta h3 { color: #fff; margin-bottom: 6px; font-size: 1.3rem; }
.service-cta p { color: rgba(255,255,255,.85); margin: 0; font-size: .95rem; }
.service-cta .btn-primary { background: #fff; color: var(--primary); }
.service-cta .btn-primary:hover { background: var(--secondary); color: #fff; }
.service-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,.4); }
.service-cta .btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }

/* ---------- 27. Reveal animations ---------- */
.fade-up, .fade-left, .fade-right, .fade-in {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-up    { transform: translateY(30px); }
.fade-left  { transform: translateX(-30px); }
.fade-right { transform: translateX(30px); }
.fade-in    { transform: scale(.98); }
.fade-up.in, .fade-left.in, .fade-right.in, .fade-in.in {
  opacity: 1; transform: translate(0,0) scale(1);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ---------- 28. Bootstrap bridge / minor ---------- */
.row { --bs-gutter-x: 1.5rem; }
.container { width: 100%; }
.bg-soft { background: var(--bg-soft); }

/* ---------- 29. 404 ---------- */
.page-404 h1 {
  font-size: 9rem;
  background: var(--grad-title);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  line-height: 1;
  margin: 0 0 10px;
}

/* ---------- 30. Responsive ---------- */
@media (max-width: 1199.98px) {
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { justify-content: center; }
  .mega { grid-template-columns: 1fr 260px; width: min(960px, calc(100vw - 40px)); }
}

@media (max-width: 991.98px) {
  :root { --header-h: 76px; --strip-h: 0px; }  /* ← add --strip-h: 0px */
  body { padding-top: calc(var(--header-h) + var(--strip-h)); }
  .site-header .container { gap: 14px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trust-item { border-right: 0; padding: 14px; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .sticky-pin-wrap .sticky-pin-col { position: relative; top: auto; margin-bottom: 30px; }
  .parallax-section { background-attachment: scroll; }
  .hero { padding: 40px 0 70px; }
  .hero-visual { margin-top: 30px; max-width: 440px; margin-left: auto; margin-right: auto; }
  .chip-1 { top: 0; right: 0; }
  .chip-2 { left: 0; }
  .chip-3 { right: 4%; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .hero-stats > div strong { font-size: 1.5rem; }
  .trust-grid { grid-template-columns: 1fr; padding: 16px; }
  .trust-item { border-right: 0 !important; border-bottom: 1px solid var(--line); padding: 14px; }
  .trust-item:last-child { border-bottom: 0; }
  .pkg-card.pkg-popular { transform: none; }
  .pkg-card.pkg-popular:hover { transform: translateY(-6px); }
  .footer-bottom { text-align: center; justify-content: center; }
  .service-cta-inner { flex-direction: column; align-items: flex-start; }
  .service-cta-inner .d-flex { width: 100%; }
  .floating-actions { right: 14px; bottom: 14px; }
  .fab { width: 50px; height: 50px; font-size: 1.15rem; }
  .hero-ctas .btn { width: 100%; }
  .img-frame-lined::after, .img-frame-lined::before { display: none; }
  .img-frame-dotted::before { width: 50px; height: 50px; }
  .mega { display: none; } /* mega only on desktop; mobile has off-canvas */
}

@media (max-width: 575.98px) {
  .banner-title { font-size: 2rem; }
  .pkg-speed { font-size: 2.4rem; }
  .pkg-price .amount { font-size: 1.9rem; }
  .contact-form-card { padding: 26px 20px; }
  .section-title { font-size: 1.7rem; }
  .page-404 h1 { font-size: 6rem; }
}

/* Nice Select override */
.nice-select {
  width: 100%;
  padding: 13px 38px 13px 16px !important;
  height: auto !important;
  line-height: 1.5 !important;
  border-radius: 12px !important;
  border: 1.5px solid var(--line) !important;
  font-family: inherit !important;
  font-size: .95rem !important;
  background: #fff !important;
  color: var(--ink) !important;
}
.nice-select.open { border-color: var(--primary) !important; box-shadow: 0 0 0 4px rgba(21,71,139,.08) !important; }
.nice-select .list { border-radius: 12px !important; box-shadow: var(--shadow-lg) !important; max-height: 280px; overflow-y: auto; width: 100%; }
.nice-select .option.selected { color: var(--primary) !important; font-weight: 600 !important; }

/* Print */
@media print {
  .site-header, .floating-actions, .mobile-nav, .mobile-backdrop, .top-strip, .cta-band, .site-footer { display: none !important; }
  body { padding-top: 0; }
}

/* ---- Trust bar icon fix ---- */
.trust-icon {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--primary-50) !important;
  color: var(--primary) !important;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.trust-icon i,
.trust-icon svg {
  color: var(--primary) !important;
  fill: var(--primary) !important;
  font-size: 1.2rem;
}
.trust-icon img {
  width: 24px; height: 24px;
  object-fit: contain;
  filter: invert(22%) sepia(64%) saturate(700%) hue-rotate(192deg) brightness(90%) contrast(95%);
}

/* ---------- Trust bar icon (fixed) ---------- */
.trust-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary-50);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.trust-icon i {
  font-size: 1.35rem;
  line-height: 1;
  color: inherit;
  display: block;
}

/* Hover on the whole trust-item lifts and colors the icon */
.trust-item:hover .trust-icon {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(21, 71, 139, 0.25);
}