/* =====================================================
   CA VAIHAV PRO — Elite Premium Website
   Theme: Light Blue & Pure White
   Font: Plus Jakarta Sans
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ─── Design Tokens ─────────────────────────────── */
:root {
  /* Blues */
  --blue-950: #030e26;
  --blue-900: #0a1f44;
  --blue-800: #0f3080;
  --blue-700: #1547b5;
  --blue-600: #1d5ed8;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #60a5fa;
  --blue-200: #93c5fd;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;

  /* Whites & Grays */
  --white:      #ffffff;
  --surface-1:  #f8faff;
  --surface-2:  #f0f5ff;
  --border:     #e1eaff;
  --border-2:   #c7d9fc;
  --text-1:     #0a1628;
  --text-2:     #2d4669;
  --text-3:     #5b7399;
  --text-4:     #8fa6c5;

  /* Accent */
  --accent:     #2563eb;
  --accent-hover: #1d5ed8;

  /* Effects */
  --shadow-xs:  0 1px 4px rgba(37,99,235,.06);
  --shadow-sm:  0 2px 12px rgba(37,99,235,.08);
  --shadow-md:  0 8px 32px rgba(37,99,235,.12);
  --shadow-lg:  0 20px 60px rgba(37,99,235,.16);
  --shadow-xl:  0 40px 100px rgba(37,99,235,.20);
  --shadow-blue: 0 8px 28px rgba(37,99,235,.38);

  /* Radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 48px;
  --r-pill: 9999px;

  /* Transition */
  --t: all .28s cubic-bezier(.4,0,.2,1);
  --t-slow: all .5s cubic-bezier(.4,0,.2,1);

  /* Layout */
  --max-w: 1180px;
  --sec-py: 100px;
  --container-px: 28px;
}

@media (max-width: 1024px) {
  :root { 
    --sec-py: 80px;
    --container-px: 24px;
  }
}
@media (max-width: 768px) {
  :root { 
    --sec-py: 64px;
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  :root { 
    --sec-py: 56px;
    --container-px: 16px;
  }
}

/* ─── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface-1); }
::-webkit-scrollbar-thumb { background: var(--blue-200); border-radius: 9px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-400); }

/* ─── Layout Utilities ───────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--container-px); position: relative; }
.section-py { padding: var(--sec-py) 0; }
.bg-surface { background: var(--surface-1); }
.bg-white   { background: var(--white); }

/* Responsive Grids */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
}

/* ─── Typography ─────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: var(--r-pill);
  padding: 5px 14px;
}

.tag--dark {
  background: rgba(37,99,235,.12);
  border-color: rgba(37,99,235,.25);
  color: var(--blue-300);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-500);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--blue-200);
  max-width: 60px;
}

.h1 { font-size: clamp(34px, 7vw, 72px); font-weight: 800; line-height: 1.05; letter-spacing: -.035em; color: var(--text-1); }
.h2 { font-size: clamp(26px, 5vw, 48px); font-weight: 800; line-height: 1.1; letter-spacing: -.025em; color: var(--text-1); }
.h3 { font-size: clamp(20px, 3.5vw, 28px); font-weight: 700; line-height: 1.25; letter-spacing: -.015em; color: var(--text-1); }
.h4 { font-size: clamp(17px, 2.5vw, 19px); font-weight: 700; line-height: 1.35; color: var(--text-1); }
.body-lg { font-size: clamp(16px, 2vw, 18px); line-height: 1.75; color: var(--text-2); }
.body-md { font-size: 15px; line-height: 1.7; color: var(--text-2); }
.body-sm { font-size: 14px; line-height: 1.6; color: var(--text-3); }

.text-blue  { color: var(--blue-500); }
.text-grad  {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-serif { font-family: 'Cormorant Garamond', serif; }

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; border-radius: var(--r-sm);
  transition: var(--t); cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  color: #fff; padding: 13px 26px; font-size: 15px;
  box-shadow: 0 4px 18px rgba(37,99,235,.3);
  border: 2px solid transparent;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); background: linear-gradient(135deg,var(--blue-700),var(--blue-500)); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--white); color: var(--blue-600);
  padding: 12px 26px; font-size: 15px;
  border: 2px solid var(--blue-200);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--blue-400); background: var(--blue-50); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent; color: var(--blue-600);
  padding: 11px 22px; font-size: 14px;
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--blue-50); border-color: var(--blue-300); }

.btn-white {
  background: #fff; color: var(--blue-700);
  padding: 14px 30px; font-size: 16px; font-weight: 800;
  border: 2px solid rgba(255,255,255,.5);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,.18); }

.btn-outline-white {
  background: rgba(255,255,255,.08); color: #fff;
  padding: 14px 30px; font-size: 16px; font-weight: 700;
  border: 2px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }

.btn-lg { padding: 16px 36px; font-size: 17px; border-radius: var(--r-md); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-icon { width: 42px; height: 42px; padding: 0; border-radius: 50%; }

/* Icons inside buttons */
.btn svg, .btn .btn-ico { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── Cards ──────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.card:hover { border-color: var(--blue-200); box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.card-dark {
  background: linear-gradient(145deg, var(--blue-900), var(--blue-950));
  border-color: transparent;
  color: #fff;
}

/* ─── Icons ──────────────────────────────────────── */
.ico { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ico-xs svg { width: 14px; height: 14px; }
.ico-sm svg { width: 17px; height: 17px; }
.ico-md svg { width: 22px; height: 22px; }
.ico-lg svg { width: 28px; height: 28px; }
.ico-xl svg { width: 36px; height: 36px; }

.icon-box {
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md); flex-shrink: 0; transition: var(--t);
}
.icon-box--blue {
  background: var(--blue-50); border: 1.5px solid var(--blue-200); color: var(--blue-500);
}
.icon-box--blue-fill {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  border: none; color: #fff; box-shadow: 0 4px 16px rgba(37,99,235,.25);
}
.icon-box--lg { width: 60px; height: 60px; }
.icon-box--md { width: 48px; height: 48px; }
.icon-box--sm { width: 38px; height: 38px; }

/* ─── Section Header ─────────────────────────────── */
.sec-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.sec-header .tag { margin-bottom: 16px; }
.sec-header .h2 { margin-bottom: 14px; }
.sec-header p { max-width: 600px; margin: 0 auto; }
@media (max-width: 768px) {
  .sec-header { margin-bottom: 48px; }
}

/* ─── Divider ────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ─── Badge ──────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; border-radius: var(--r-pill);
  padding: 4px 12px;
}
.badge--blue { background: var(--blue-50); color: var(--blue-600); border: 1px solid var(--blue-200); }
.badge--gold { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

/* ─── Check List ─────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-2); font-weight: 500;
}
.check-list li .check-ico {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue-50); border: 1.5px solid var(--blue-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500); flex-shrink: 0; margin-top: 1px;
}
.check-list li .check-ico svg { width: 11px; height: 11px; }

/* ─── Reveal Animations ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease-out, transform .65s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity .65s ease-out, transform .65s ease-out; }
.reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity .65s ease-out, transform .65s ease-out; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale { opacity: 0; transform: scale(.95); transition: opacity .55s ease-out, transform .55s ease-out; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .5s ease-out, transform .5s ease-out; }
.stagger.visible > *:nth-child(1) { opacity:1;transform:none;transition-delay:.05s; }
.stagger.visible > *:nth-child(2) { opacity:1;transform:none;transition-delay:.12s; }
.stagger.visible > *:nth-child(3) { opacity:1;transform:none;transition-delay:.19s; }
.stagger.visible > *:nth-child(4) { opacity:1;transform:none;transition-delay:.26s; }
.stagger.visible > *:nth-child(5) { opacity:1;transform:none;transition-delay:.33s; }
.stagger.visible > *:nth-child(6) { opacity:1;transform:none;transition-delay:.40s; }

/* ─── Float Animation ────────────────────────────── */
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.float { animation: floatY 5s ease-in-out infinite; }
.float-d { animation: floatY 5s ease-in-out 2.5s infinite; }

/* ─── Pulse Ring ─────────────────────────────────── */
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.5); opacity: 0; }
}
.pulse-ring::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 3px solid var(--blue-400);
  animation: pulse-ring 2s ease-out infinite;
}

/* ─── Gradient Lines ─────────────────────────────── */
.grad-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-400), transparent);
}

/* ─── Breadcrumb ─────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-3);
  padding: 0 0 32px;
}
.breadcrumb a { color: var(--blue-500); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-4); }

/* ─── Page Hero (inner pages) ────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--blue-950) 0%, var(--blue-800) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/grid-pattern.svg') center/60px repeat;
  opacity: .04;
}
.page-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.page-hero h1 { color: #fff; margin-bottom: 18px; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.75; }

/* Page hero decorations */
.page-hero-deco {
  position: absolute; pointer-events: none;
}
.page-hero-deco--1 {
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,.12) 0%, transparent 70%);
  top: -150px; right: -80px;
}
.page-hero-deco--2 {
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  bottom: -60px; left: 10%;
}

/* ─── Stat Cards ─────────────────────────────────── */
.stat-band {
  background: var(--blue-950);
  padding: 56px 0;
  position: relative;
}
.stat-band::before {
  content: ''; position: absolute; top:0;left:0;right:0; height:2px;
  background: linear-gradient(90deg,transparent,var(--blue-400),transparent);
}
.stat-band-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0; align-items: center;
}
.stat-band-item { text-align: center; padding: 12px 20px; position: relative; }
.stat-band-item + .stat-band-item::before {
  content: ''; position: absolute; left:0; top:50%; transform:translateY(-50%);
  height: 48px; width: 1px; background: rgba(255,255,255,.1);
}
.stat-band-num {
  font-size: clamp(36px,4vw,54px); font-weight: 900; color: #fff;
  letter-spacing: -.04em; line-height: 1;
}
.stat-band-label { font-size: 13px; color: var(--blue-200); font-weight: 600; margin-top: 6px; }

/* ─── Testimonial Card ───────────────────────────── */
.testi-card { position: relative; }
.testi-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text  { font-size: 15px; color: var(--text-2); line-height: 1.78; font-style: italic; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-300));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.testi-name { font-size: 15px; font-weight: 700; color: var(--text-1); }
.testi-role { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* ─── FAQ ────────────────────────────────────────── */
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; cursor: pointer; font-size: 16px; font-weight: 700; color: var(--text-1);
  background: none; width: 100%; text-align: left; transition: var(--t);
}
.faq-q:hover { color: var(--blue-600); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--surface-1);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500); flex-shrink: 0; transition: var(--t);
}
.faq-icon svg { width: 16px; height: 16px; transition: transform .25s; }
.faq-item.open .faq-icon { background: var(--blue-500); border-color: var(--blue-500); color: #fff; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease-out, padding .25s;
  font-size: 15px; color: var(--text-2); line-height: 1.78;
}
.faq-a-inner { padding-bottom: 20px; }
.faq-item.open .faq-a { max-height: 600px; }

/* ─── Form ───────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 13px; font-weight: 700; color: var(--text-1); letter-spacing: .01em; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: 15px; font-family: inherit; color: var(--text-1);
  background: var(--white); transition: var(--t); outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-4); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-3); justify-content: center; }
.form-note svg { width: 13px; height: 13px; }
.form-box {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 44px;
  box-shadow: var(--shadow-md);
}
.form-success {
  text-align: center; padding: 56px 32px; display: none;
}
.form-success-ico {
  width: 80px; height: 80px; background: #dcfce7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: #16a34a;
}
.form-success-ico svg { width: 44px; height: 44px; }

/* ─── Navigation (injected) ──────────────────────── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  /* Default: transparent over dark hero */
  background: transparent;
}
#site-nav.scrolled {
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(37,99,235,.08);
  border-bottom: 1px solid var(--border);
}
/* When scrolled — switch text to dark */
#site-nav.scrolled .nav-logo { color: var(--text-1); }
#site-nav.scrolled .nav-logo span strong { color: var(--blue-500); }
#site-nav.scrolled .nav-item { color: var(--text-2); }
#site-nav.scrolled .nav-item:hover,
#site-nav.scrolled .nav-item.active { color: var(--blue-600); background: var(--blue-50); }
#site-nav.scrolled .nav-phone { color: var(--text-2); }
#site-nav.scrolled .nav-phone svg { color: var(--blue-500); }
#site-nav.scrolled .hamburger span { background: var(--text-1); }
/* Default (transparent / dark hero bg) — white text */
#site-nav:not(.scrolled) .nav-logo { color: #fff; }
#site-nav:not(.scrolled) .nav-logo span strong { color: var(--blue-300); }
#site-nav:not(.scrolled) .nav-item { color: rgba(255,255,255,.85); }
#site-nav:not(.scrolled) .nav-item:hover,
#site-nav:not(.scrolled) .nav-item.active { color: #fff; background: rgba(255,255,255,.12); }
#site-nav:not(.scrolled) .nav-phone { color: rgba(255,255,255,.85); }
#site-nav:not(.scrolled) .nav-phone svg { color: var(--blue-300); }
#site-nav:not(.scrolled) .hamburger span { background: #fff; }
/* Pages with NO dark hero (about, contact, blog etc) add nav--scrolled-start class via JS */
#site-nav.nav--light-start:not(.scrolled) .nav-logo { color: var(--text-1); }
#site-nav.nav--light-start:not(.scrolled) .nav-logo span strong { color: var(--blue-500); }
#site-nav.nav--light-start:not(.scrolled) .nav-item { color: var(--text-2); }
#site-nav.nav--light-start:not(.scrolled) .nav-item:hover { color: var(--blue-600); background: var(--blue-50); }
#site-nav.nav--light-start:not(.scrolled) .nav-phone { color: var(--text-2); }
#site-nav.nav--light-start:not(.scrolled) .nav-phone svg { color: var(--blue-500); }
#site-nav.nav--light-start:not(.scrolled) .hamburger span { background: var(--text-1); }

/* Transparent Nav Logic for Scroll */
#site-nav .container { transition: padding .3s ease; }
#site-nav.scrolled .nav-inner { padding: 4px 0; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo   { display: flex; align-items: center; gap: 11px; font-size: 19px; font-weight: 700; transition: color .3s ease; }
.nav-logo-mark {
  width: 38px; height: 38px; background: linear-gradient(135deg,var(--blue-600),var(--blue-400));
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; font-weight: 900; letter-spacing:-.02em;
  box-shadow: 0 4px 16px rgba(37,99,235,.35); flex-shrink: 0;
}
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-item {
  padding: 8px 14px; font-size: 14px; font-weight: 600;
  border-radius: var(--r-xs); transition: color .25s ease, background .25s ease;
  position: relative;
}
.nav-item.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 2px; background: currentColor; border-radius: var(--r-pill);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); padding: 10px; min-width: 260px;
  opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(-8px);
  transition: opacity .22s, transform .22s;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dd-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  border-radius: var(--r-sm); font-size: 13px; font-weight: 600; color: var(--text-2);
  transition: var(--t);
}
.nav-dd-item:hover { background: var(--blue-50); color: var(--blue-600); }
.nav-dd-ico {
  width: 32px; height: 32px; border-radius: var(--r-xs);
  background: var(--surface-2); display: flex; align-items: center; justify-content: center;
  color: var(--blue-500); flex-shrink: 0;
}
.nav-dd-ico svg { width: 15px; height: 15px; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--text-2); }
.nav-phone svg { width: 15px; height: 15px; color: var(--blue-500); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 38px; height: 38px; align-items: center; justify-content: center;
  border-radius: var(--r-xs); transition: var(--t);
}
.hamburger:hover { background: var(--surface-2); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-1); border-radius: var(--r-pill); transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 2px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 20px var(--container-px) 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-item {
  padding: 12px 14px; font-size: 15px; font-weight: 600;
  color: var(--text-2); border-radius: var(--r-sm); transition: var(--t);
  border-bottom: 1px solid var(--border);
}
.mobile-item:hover { color: var(--blue-600); background: var(--blue-50); }
.mobile-sub { padding: 8px 14px 8px 28px; font-size: 13px; color: var(--text-3); }
.mobile-sub:hover { color: var(--blue-500); background: var(--blue-50); border-radius: var(--r-sm); }
.mobile-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-cta { margin-top: 8px; }

/* ─── Footer (injected) ──────────────────────────── */
#site-footer { background: var(--blue-950); color: rgba(255,255,255,.65); }
.footer-top { padding: 72px 0 56px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; }

/* footer-brand column */
.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-logo-mark {
  width: 36px; height: 36px; border-radius: var(--r-xs);
  background: linear-gradient(135deg,var(--blue-500),var(--blue-300));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; font-weight: 900;
}
.footer-logo-text { font-size: 18px; font-weight: 700; color: #fff; }
.footer-logo-text strong { color: var(--blue-300); }

/* ─── Story Section (About) ─────────────────────── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.story-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 1024px) {
  .story-grid { gap: 40px; }
}
@media (max-width: 768px) {
  .story-grid, .story-content-grid { grid-template-columns: 1fr; }
}

/* ─── About Section (Index) ─────────────────────── */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* ─── Contact Page ──────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.c-detail { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--surface-1); border: 1.5px solid var(--border); border-radius: 14px; transition: var(--t); text-decoration: none; color: inherit; margin-bottom: 12px; }
.c-detail:hover { border-color: var(--blue-300); background: var(--blue-50); transform: translateX(4px); }
.c-ico { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--t); }
.c-ico--blue { background: var(--blue-50); border: 1.5px solid var(--blue-200); color: var(--blue-500); }
.c-ico--green { background: #dcfce7; border: 1.5px solid #86efac; color: #16a34a; }
.c-ico svg { width: 20px; height: 20px; }
.c-detail:hover .c-ico--blue { background: var(--blue-500); border-color: var(--blue-500); color: #fff; }
.c-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-4); margin-bottom: 2px; }
.c-val { font-size: 15px; font-weight: 700; color: var(--text-1); }
.hours-box { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--blue-50); border: 1.5px solid var(--blue-200); border-radius: 14px; margin-top: 4px; }
.hours-ico { width: 40px; height: 40px; background: var(--blue-500); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.hours-ico svg { width: 20px; height: 20px; }

@media (max-width: 1024px) {
  .contact-grid { gap: 40px; }
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ─── Timeline (About Page) ─────────────────────── */
.timeline { position: relative; padding-left: 40px; transition: var(--t); }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue-500), var(--blue-200)); }
.tl-item { position: relative; margin-bottom: 36px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot { position: absolute; left: -47px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--blue-500); border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--blue-200); }
.tl-year { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-500); margin-bottom: 6px; }
.tl-item h4 { font-size: 16px; font-weight: 800; color: var(--text-1); margin-bottom: 6px; }
.tl-item p { font-size: 14px; color: var(--text-3); line-height: 1.65; }

@media (max-width: 768px) {
  .timeline { padding-left: 32px; }
  .tl-dot { left: -39px; }
}

/* ─── Qualifications & Team (About) ─────────────── */
.qual-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.qual-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 18px; padding: 24px; transition: var(--t); }
.qual-card:hover { border-color: var(--blue-200); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 24px; overflow: hidden; text-align: center; transition: var(--t); }
.team-card:hover { border-color: var(--blue-200); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-card-img { height: 200px; background: linear-gradient(135deg, var(--blue-100), var(--blue-200)); display: flex; align-items: center; justify-content: center; font-size: 56px; font-weight: 900; color: var(--blue-400); }
.team-card-body { padding: 20px; }
.team-card h4 { font-size: 17px; font-weight: 800; color: var(--text-1); margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--text-3); }

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .qual-grid, .team-grid { grid-template-columns: 1fr; }
}

/* ─── Hero Section ─────────────────────────────── */
.hero { min-height: 100vh; background: linear-gradient(155deg, #030e26 0%, #0f3080 55%, #1547b5 100%); display: flex; align-items: center; padding-top: 80px; position: relative; overflow: hidden; }
@media (max-width: 768px) { .hero { min-height: auto; padding-bottom: 60px; } }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(59,130,246, .18) 0%, transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 80px 0; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--blue-300); background: rgba(96,165,250, .12); border: 1px solid rgba(96,165,250, .25); border-radius: 999px; padding: 6px 18px; margin-bottom: 24px; }
.hero-tag svg { width: 14px; height: 14px; }
h1.hero-h1 { font-size: clamp(38px, 6vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -.035em; color: #fff; margin-bottom: 24px; }
h1.hero-h1 em { font-style: italic; font-family: 'Cormorant Garamond', serif; color: var(--blue-300); }
h1.hero-h1 .grad { background: linear-gradient(90deg, #60a5fa, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: clamp(16px, 2vw, 18px); line-height: 1.75; color: rgba(255,255,255, .72); margin-bottom: 36px; max-width: 500px; }
.hero-desc strong { color: #fff; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chip { display: flex; align-items: center; gap: 7px; padding: 8px 16px; background: rgba(255,255,255, .07); border: 1px solid rgba(255,255,255, .14); border-radius: 999px; font-size: 13px; font-weight: 600; color: rgba(255,255,255, .82); }
.trust-chip svg { width: 14px; height: 14px; color: var(--blue-300); }

/* Portrait side */
.hero-portrait { position: relative; display: flex; justify-content: center; z-index: 1; }
.portrait-wrap { position: relative; max-width: 430px; width: 100%; }
.portrait-frame { border-radius: 32px; overflow: hidden; aspect-ratio: 3/4; border: 2px solid rgba(255,255,255, .12); box-shadow: 0 40px 80px rgba(0,0,0, .45); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.portrait-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,14,38, .5) 0%, transparent 50%); }
.float-card { position: absolute; display: flex; align-items: center; gap: 12px; background: rgba(255,255,255, .96); backdrop-filter: blur(16px); border-radius: 16px; padding: 14px 20px; box-shadow: 0 16px 48px rgba(0,0,0, .22); z-index: 2; }
.float-card--tl { top: 28px; left: -28px; }
.float-card--br { bottom: 56px; right: -28px; }
.float-card-ico { width: 40px; height: 40px; background: linear-gradient(135deg, var(--blue-600), var(--blue-400)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.float-card-ico svg { width: 20px; height: 20px; }
.float-card-num { font-size: 20px; font-weight: 900; color: var(--text-1); line-height: 1; }
.float-card-txt { font-size: 11px; color: var(--text-3); font-weight: 600; margin-top: 2px; }

@media (max-width: 1180px) {
  .float-card--tl { left: 0; }
  .float-card--br { right: 0; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 60px 0; }
  .hero-portrait { order: -1; }
  .portrait-wrap { max-width: 300px; margin: 0 auto; }
  .hero-btns, .hero-trust { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
}

/* Hero decor circles */
.hd { position: absolute; border-radius: 50%; pointer-events: none; }
.hd1 { width: 600px; height: 600px; top: -200px; right: -120px; background: radial-gradient(circle, rgba(37,99,235, .15) 0%, transparent 70%); }
.hd2 { width: 300px; height: 300px; bottom: -80px; left: 8%; background: radial-gradient(circle, rgba(96,165,250, .1) 0%, transparent 70%); }

/* Scroll cue */
.scroll-cue { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.scroll-dot { width: 4px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255, .55), transparent); border-radius: 999px; animation: sdot 2s ease-in-out infinite; }
@keyframes sdot { 0%, 100% { opacity: .4; transform: scaleY(.7) } 50% { opacity: 1; transform: scaleY(1) } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px) } to { opacity: 1; transform: none } }

/* ─── Why Choose Us Grid ─────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { padding: 28px 24px; background: #fff; border: 1.5px solid var(--border); border-radius: 20px; transition: var(--t); }
.why-card:hover { border-color: var(--blue-200); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-card-num { font-size: 48px; font-weight: 900; color: var(--blue-100); letter-spacing: -.04em; line-height: 1; margin-bottom: 12px; transition: var(--t); }
.why-card:hover .why-card-num { color: var(--blue-200); }
.why-card h4 { font-size: 16px; font-weight: 800; color: var(--text-1); margin: 14px 0 8px; }
.why-card p { font-size: 13px; color: var(--text-3); line-height: 1.65; }

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ─── Testimonials Grid ─────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .testi-grid { grid-template-columns: 1fr; }
}

.footer-desc { font-size: 14px; line-height: 1.75; margin-bottom: 22px; color: rgba(255,255,255,.5); max-width: 280px; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.footer-contact-link { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--blue-200); transition: var(--t); }
.footer-contact-link:hover { color: #fff; }
.footer-contact-link svg { width: 15px; height: 15px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 36px; height: 36px; border-radius: var(--r-xs);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: var(--t);
}
.footer-social svg { width: 15px; height: 15px; }
.footer-social:hover { background: var(--blue-500); border-color: var(--blue-500); color: #fff; transform: translateY(-2px); }

.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.5); transition: var(--t); }
.footer-links a:hover { color: #fff; padding-left: 3px; }

.footer-badge {
  display: flex; align-items: center; gap: 10px; margin-top: 24px;
  padding: 12px 16px; background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.3); border-radius: var(--r-md);
  font-size: 12px; font-weight: 600; color: var(--blue-300); line-height: 1.5;
}
.footer-badge svg { width: 20px; height: 20px; flex-shrink: 0; }

.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.3); }

/* ─── Floating Buttons ───────────────────────────── */
.fab {
  position: fixed; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 28px rgba(0,0,0,.22);
  z-index: 900; transition: var(--t); border: 2px solid rgba(255,255,255,.2);
}
.fab svg { width: 22px; height: 22px; }
.fab:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,.3); }
.fab--wa { bottom: 106px; right: 22px; background: #25d366; }
.fab--call { bottom: 40px; right: 22px; background: linear-gradient(135deg,var(--blue-600),var(--blue-400)); }

.btt {
  position: fixed; bottom: 40px; left: 22px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md); color: var(--blue-500);
  display: flex; align-items: center; justify-content: center;
  z-index: 900; transition: var(--t); opacity: 0; pointer-events: none;
}
.btt svg { width: 19px; height: 19px; }
.btt.show { opacity: 1; pointer-events: auto; }
.btt:hover { background: var(--blue-500); border-color: var(--blue-500); color: #fff; transform: translateY(-2px); }

/* ─── Process Steps ──────────────────────────────── */
.process-row { display: flex; gap: 0; align-items: flex-start; }
.process-step { flex: 1; text-align: center; padding: 0 12px; position: relative; }
.process-num {
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-500); background: var(--blue-50); border: 1px solid var(--blue-200);
  border-radius: var(--r-pill); padding: 3px 12px; display: inline-block; margin-bottom: 20px;
}
.process-ico-wrap {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--white); border: 2px solid var(--blue-200);
  display: flex; align-items: center; justify-content: center; color: var(--blue-500);
  position: relative; box-shadow: var(--shadow-sm); transition: var(--t);
}
.process-ico-wrap svg { width: 32px; height: 32px; }
.process-step:hover .process-ico-wrap { background: var(--blue-500); border-color: var(--blue-500); color: #fff; box-shadow: var(--shadow-blue); }
.process-arrow { display: flex; align-items: center; padding-top: 56px; color: var(--blue-300); flex-shrink: 0; }
.process-arrow svg { width: 24px; height: 24px; }

/* ─── Industry Pills ─────────────────────────────── */
.pill-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600; color: var(--blue-700);
  background: var(--blue-50); border: 1.5px solid var(--blue-200);
  transition: var(--t); cursor: default;
}
.pill svg { width: 17px; height: 17px; color: var(--blue-500); }
.pill:hover { background: var(--blue-500); border-color: var(--blue-500); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.pill:hover svg { color: #fff; }

/* ─── Service Cards Grid ─────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 36px 30px;
  transition: var(--t); position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--blue-500),var(--blue-300));
  opacity: 0; transition: var(--t);
}
.svc-card:hover { border-color: var(--blue-200); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.svc-card:hover::before { opacity: 1; }
.svc-card h3 { font-size: 19px; font-weight: 800; color: var(--text-1); margin: 20px 0 10px; letter-spacing: -.015em; }
.svc-card p  { font-size: 14px; color: var(--text-3); line-height: 1.65; margin-bottom: 20px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--blue-500); transition: var(--t); }
.svc-link svg { width: 14px; height: 14px; transition: transform .2s; }
.svc-link:hover { gap: 10px; color: var(--blue-700); }
.svc-card--featured { background: linear-gradient(145deg,var(--blue-900),var(--blue-950)); border-color: transparent; }
.svc-card--featured::before { opacity: 1; }
.svc-card--featured h3 { color: #fff; }
.svc-card--featured p  { color: rgba(255,255,255,.65); }
.svc-card--featured .svc-link { color: var(--blue-300); }
.svc-card--featured .icon-box--blue { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: var(--blue-300); }
.svc-card--featured .check-list li { color: rgba(255,255,255,.75); }
.svc-card--featured .check-list li .check-ico { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: var(--blue-300); }

/* ─── Services Page Grids ────────────────────────── */
.all-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-big-card { background: #fff; border: 1.5px solid var(--border); border-radius: 24px; padding: 36px 30px; transition: var(--t); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.svc-big-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue-500), var(--blue-300)); opacity: 0; transition: var(--t); }
.svc-big-card:hover { border-color: var(--blue-200); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.svc-big-card:hover::before { opacity: 1; }
.svc-big-card h3 { font-size: 19px; font-weight: 800; color: var(--text-1); margin: 20px 0 12px; letter-spacing: -.015em; }
.svc-big-card p { font-size: 14px; color: var(--text-3); line-height: 1.7; flex: 1; }
.svc-big-card ul { margin: 14px 0 20px; display: flex; flex-direction: column; gap: 7px; }
.svc-big-card li { font-size: 13px; color: var(--text-2); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.svc-big-card li::before { content: '✓'; color: var(--blue-500); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

@media (max-width: 1024px) {
  .all-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .all-svc-grid { grid-template-columns: 1fr; }
}

/* ─── Blog Cards ─────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: var(--t); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--blue-200); }
.blog-card-img { aspect-ratio: 16/9; background: linear-gradient(135deg,var(--blue-100),var(--blue-200)); display: flex; align-items: center; justify-content: center; color: var(--blue-400); overflow: hidden; }
.blog-card-img svg { width: 48px; height: 48px; opacity: .5; }
.blog-card-body { padding: 24px; }
.blog-card-cat { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-500); margin-bottom: 10px; }
.blog-card h3 { font-size: 17px; font-weight: 800; color: var(--text-1); line-height: 1.35; margin-bottom: 10px; letter-spacing: -.01em; }
.blog-card p { font-size: 14px; color: var(--text-3); line-height: 1.65; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-4); font-weight: 600; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-meta svg { width: 12px; height: 12px; }

/* ─── CTA Band ───────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg,var(--blue-800) 0%,var(--blue-950) 100%);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(59,130,246,.2) 0%, transparent 65%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 18px; }
.cta-band p  { color: rgba(255,255,255,.7); font-size: 18px; max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }
.cta-band-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat-band-grid { grid-template-columns: repeat(2,1fr); }
  .stat-band-item + .stat-band-item::before { display: none; }
  .blog-grid      { grid-template-columns: repeat(2,1fr); }
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .page-hero-grid > div:last-child { display: flex; justify-content: center; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .process-row { flex-direction: column; gap: 20px; align-items: center; }
  .process-step { max-width: 320px; }
  .process-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand, .footer-desc, .footer-contacts, .footer-socials { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }
  .footer-logo { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-box { padding: 32px 20px; }
  .stat-band-grid { grid-template-columns: repeat(2,1fr); gap: 20px 0; }
  
  /* Shared section styles */
  .about-inner { grid-template-columns: 1fr !important; gap: 48px !important; text-align: center !important; }
  .about-inner .reveal-left, .about-inner .reveal-right { transform: none !important; opacity: 1 !important; }
  .about-inner [style*="flex-direction:column"] { align-items: center !important; }
}

@media (max-width: 480px) {
  .cta-band-btns { flex-direction: column; }
  .hero-btns { flex-direction: column; width: 100%; max-width: 300px; margin-left: auto; margin-right: auto; }
  .hero-btns .btn { width: 100%; }
  .stat-band-grid { grid-template-columns: 1fr; gap: 24px; }
  .stat-band-item + .stat-band-item::before { display: none; }
  .trust-chip { font-size: 12px; padding: 6px 14px; }
}
