/* =========================================================
   Sarswat Tax Consultant — Premium Landing Page Styles
   Pure CSS3, mobile-first, glassmorphism + gradient accents
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --c-bg: #ffffff;
  --c-bg-alt: #f6f8ff;
  --c-text: #0f172a;
  --c-muted: #5b6478;
  --c-border: #e6e9f2;

  --c-primary: #1e3a8a;        /* dark blue */
  --c-primary-2: #2848b3;
  --c-accent: #06b6d4;          /* cyan */
  --c-accent-2: #6366f1;        /* indigo */

  --grad-primary: linear-gradient(135deg, #1e3a8a 0%, #2848b3 50%, #06b6d4 100%);
  --grad-accent:  linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --grad-soft:    linear-gradient(135deg, #eef2ff 0%, #e0f7ff 100%);

  --shadow-sm: 0 4px 14px rgba(15, 23, 42, .06);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, .08);
  --shadow-lg: 0 24px 60px rgba(30, 58, 138, .15);
  --shadow-glow: 0 10px 40px rgba(6, 182, 212, .25);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1200px;

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --header-h: 72px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; margin: 0 0 .6em; color: var(--c-text); }
p  { margin: 0 0 1em; color: var(--c-muted); }
input, select, button, textarea { font-family: inherit; }

/* ---------- Container ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ---------- Section ---------- */
.section { padding: 80px 0; position: relative; }
.section-alt { background: var(--c-bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-head p { font-size: 16px; }
.kicker {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--grad-soft);
  color: var(--c-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid #d8e0ff;
}
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(30, 58, 138, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(30, 58, 138, .45); }
.btn-ghost {
  background: rgba(255, 255, 255, .8);
  color: var(--c-primary);
  border-color: var(--c-border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost-light {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .22); }
.btn-outline {
  background: #fff;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn-outline:hover { background: var(--c-primary); color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #0b1f4a, #1e3a8a);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.preloader.hide { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.2);
  border-top-color: #06b6d4;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}
.loader-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: .5px;
}
.loader-text span {
  background: linear-gradient(135deg, #06b6d4, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.header.scrolled {
  background: rgba(255, 255, 255, .95);
  border-bottom-color: var(--c-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  box-shadow: var(--shadow-glow);
}
.logo-text {
  display: flex; flex-direction: column;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-text);
  line-height: 1.05;
}
.logo-text small {
  font-weight: 500;
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: .8px;
  text-transform: uppercase;
}
.logo-light .logo-text { color: #fff; }
.logo-light .logo-text small { color: rgba(255,255,255,.7); }

.nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  position: relative;
}
.nav a:hover { color: var(--c-primary); background: var(--c-bg-alt); }

.header-cta { display: flex; align-items: center; gap: 8px; }
.btn-icon {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--c-border);
  background: #fff;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-icon svg { width: 16px; height: 16px; }
.btn-icon:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-call { color: var(--c-primary); }
.btn-wa { background: #25D366; color: #fff; border-color: transparent; }
.btn-wa:hover { background: #1ebe57; }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--c-bg-alt);
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 60px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 90% -10%, #dbeafe 0%, transparent 50%),
    radial-gradient(900px 500px at -10% 30%, #e0f7ff 0%, transparent 60%),
    #ffffff;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.orb-1 { width: 420px; height: 420px; top: -80px; right: -100px; background: radial-gradient(circle, #6366f1, transparent 70%); }
.orb-2 { width: 360px; height: 360px; bottom: -140px; left: -120px; background: radial-gradient(circle, #06b6d4, transparent 70%); }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,58,138,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,138,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, transparent 0, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 30%, #000 70%, transparent 100%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,.2);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); } 50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); } }
.hero-title {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.hero-sub { font-size: 17px; max-width: 560px; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin: 24px 0 8px;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong {
  font-family: var(--font-head); font-size: 22px; color: var(--c-text);
}
.trust-item span { font-size: 13px; color: var(--c-muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 22px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge-pill {
  font-size: 12px; font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(30,58,138,.06);
  border: 1px solid rgba(30,58,138,.12);
  color: var(--c-primary);
}

/* Lead Form (Glassmorphism) */
.glass {
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-lg);
}
.lead-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.lead-card::before {
  content: ""; position: absolute; inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--grad-accent);
  z-index: -1; opacity: .25;
  filter: blur(20px);
}
.lead-head { text-align: center; margin-bottom: 20px; }
.lead-head h3 { font-size: 22px; margin-bottom: 4px; }
.lead-head p { font-size: 14px; margin: 0; }
.lead-form .field { margin-bottom: 14px; }
.lead-form label {
  display: block; font-size: 13px; font-weight: 500;
  margin-bottom: 6px; color: var(--c-text);
}
.lead-form input, .lead-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  background: #fff;
  font-size: 14px;
  color: var(--c-text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.lead-form input:focus, .lead-form select:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(6,182,212,.15);
}
.form-note { font-size: 11px; color: var(--c-muted); margin: 12px 0 0; text-align: center; }
.form-note a { color: var(--c-primary); text-decoration: underline; }
.form-success {
  margin-top: 14px; padding: 10px 14px;
  background: #ecfdf5; color: #065f46;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  text-align: center;
}

/* Marquee */
.marquee {
  margin-top: 60px;
  padding: 18px 0;
  background: linear-gradient(90deg, #fff 0%, #f8faff 100%);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-muted);
  letter-spacing: 1px;
}
.marquee-track span { flex-shrink: 0; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-soft);
  opacity: 0; transition: opacity .3s var(--ease);
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  margin-bottom: 16px;
  color: #fff;
  background: var(--grad-primary);
  box-shadow: var(--shadow-glow);
}
.service-icon svg { width: 26px; height: 26px; }
.ic-1 { background: linear-gradient(135deg, #1e3a8a, #06b6d4); }
.ic-2 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.ic-3 { background: linear-gradient(135deg, #f97316, #ec4899); }
.ic-4 { background: linear-gradient(135deg, #10b981, #06b6d4); }
.ic-5 { background: linear-gradient(135deg, #0ea5e9, #6366f1); }
.ic-6 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.ic-7 { background: linear-gradient(135deg, #facc15, #f97316); }
.ic-8 { background: linear-gradient(135deg, #1e3a8a, #6366f1); }
.service-card h3 { font-size: 18px; margin-bottom: 6px; }
.service-card p { font-size: 14px; margin-bottom: 14px; }
.link-arrow {
  display: inline-flex; align-items: center;
  font-weight: 600; font-size: 14px;
  color: var(--c-primary);
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.link-arrow:hover { color: var(--c-accent); letter-spacing: .3px; }

/* ---------- WHY ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--grad-soft);
  color: var(--c-primary);
  margin-bottom: 16px;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 18px; }

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.popular {
  background: var(--grad-primary);
  color: #fff;
  border: none;
  box-shadow: 0 30px 70px rgba(30, 58, 138, .35);
  transform: translateY(-10px);
}
.price-card.popular:hover { transform: translateY(-14px); }
.price-card.popular h3,
.price-card.popular .amount,
.price-card.popular .rupee { color: #fff; }
.price-card.popular .price-features li { color: rgba(255,255,255,.92); }
.price-card.popular .price-features li::before { background: rgba(255,255,255,.25); color: #fff; }
.price-card.popular .price-head p,
.price-card.popular .per { color: rgba(255,255,255,.8); }
.price-card.popular .btn-primary { background: #fff; color: var(--c-primary); }
.price-card.popular .btn-primary:hover { background: rgba(255,255,255,.9); }
.ribbon {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.price-head h3 { font-size: 22px; margin-bottom: 4px; }
.price-head p { font-size: 13px; margin-bottom: 22px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.rupee { font-size: 24px; color: var(--c-text); font-weight: 600; }
.amount { font-family: var(--font-head); font-size: 44px; font-weight: 800; color: var(--c-text); line-height: 1; }
.per { font-size: 13px; color: var(--c-muted); margin-left: 4px; }
.price-features { margin-bottom: 26px; flex: 1; }
.price-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--c-text);
  border-bottom: 1px dashed var(--c-border);
}
.price-card.popular .price-features li { border-bottom-color: rgba(255,255,255,.15); }
.price-features li:last-child { border-bottom: 0; }
.price-features li::before {
  content: "✓";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-soft);
  color: var(--c-primary);
  font-weight: 700;
  display: grid; place-items: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ---------- PROCESS / TIMELINE ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 35px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.t-step {
  text-align: center;
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.t-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: #fff;
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700;
  box-shadow: var(--shadow-glow);
  margin-bottom: 16px;
  border: 4px solid var(--c-bg-alt);
}
.t-card { padding: 22px; border-radius: var(--radius-md); width: 100%; }
.t-card h3 { font-size: 17px; margin-bottom: 6px; }
.t-card p { font-size: 14px; margin: 0; }

/* ---------- STATS ---------- */
.stats-section {
  background: var(--grad-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(500px 250px at 20% 0%, rgba(6,182,212,.35), transparent 60%),
    radial-gradient(500px 250px at 80% 100%, rgba(99,102,241,.35), transparent 60%);
  pointer-events: none;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat { padding: 12px; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: -.02em;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,.85); font-weight: 500; }

/* ---------- TESTIMONIALS ---------- */
.t-slider { position: relative; }
.t-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 16px;
  scrollbar-width: none;
}
.t-track::-webkit-scrollbar { display: none; }
.t-card-q {
  flex: 0 0 calc(33.333% - 15px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.t-card-q:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.t-stars { color: #facc15; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.t-card-q p { font-size: 15px; color: var(--c-text); margin-bottom: 18px; line-height: 1.65; }
.t-user { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
}
.t-user strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--c-text); }
.t-user span { font-size: 13px; color: var(--c-muted); }

.t-controls {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 18px;
}
.t-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--c-border);
  color: var(--c-primary);
  font-size: 22px;
  font-weight: 600;
  display: grid; place-items: center;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.t-btn:hover { background: var(--c-primary); color: #fff; transform: scale(1.05); }
.t-dots { display: flex; gap: 8px; }
.t-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--c-border);
  transition: width .25s var(--ease), background .25s var(--ease);
}
.t-dots button.active { width: 28px; border-radius: 999px; background: var(--grad-primary); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 4px 22px;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.faq-item[open] {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  padding: 18px 0;
  color: var(--c-text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  font-size: 15px;
  color: var(--c-muted);
  margin: 0 0 18px;
}
.faq-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-soft);
  color: var(--c-primary);
  font-weight: 700;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.faq-item[open] .faq-ico {
  transform: rotate(45deg);
  background: var(--grad-primary);
  color: #fff;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  margin: 0 20px 80px;
  border-radius: var(--radius-xl);
  background: var(--grad-primary);
  color: #fff;
  overflow: hidden;
  padding: 60px 0;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(6,182,212,.5), transparent 60%),
    radial-gradient(500px 250px at 0% 100%, rgba(99,102,241,.4), transparent 60%);
}
.cta-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap;
}
.cta-text { max-width: 620px; }
.cta-text h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,.85); margin: 0; font-size: 16px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner .btn-primary { background: #fff; color: var(--c-primary); }
.cta-banner .btn-primary:hover { background: rgba(255,255,255,.92); }
.cta-banner .gradient-text {
  background: linear-gradient(135deg, #facc15, #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0b1f4a;
  color: #cbd5e1;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col h4 {
  color: #fff; font-size: 15px; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-col a:hover { color: #06b6d4; }
.footer-about { font-size: 14px; max-width: 320px; color: #94a3b8; margin: 14px 0 18px; }
.contact-list li { line-height: 1.5; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center;
  color: #cbd5e1;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.socials a:hover { background: var(--grad-accent); color: #fff; transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 13px;
}
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.footer-bottom p { margin: 0; color: #94a3b8; }
.legal a { color: #94a3b8; }
.legal a:hover { color: #fff; }

/* ---------- FLOATING WHATSAPP ---------- */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  z-index: 90;
  transition: transform .25s var(--ease);
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 28px; height: 28px; }
.float-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, .6);
  animation: ripple 1.8s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- BACK TO TOP ---------- */
.back-top {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: 18px; font-weight: 700;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 80;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-3px); }

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--c-border);
  display: none;
  align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px;
  z-index: 95;
  box-shadow: 0 -10px 30px rgba(15,23,42,.08);
}
.m-cta {
  flex: 1;
  text-align: center;
  padding: 12px 6px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}
.m-cta.call { background: var(--c-bg-alt); color: var(--c-primary); }
.m-cta.wa { background: #25D366; color: #fff; }
.m-cta.apply { background: var(--grad-primary); color: #fff; }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .t-card-q { flex: 0 0 calc(50% - 11px); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .timeline::before { display: none; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
    padding: 16px 20px 24px;
  }
  .nav.open { transform: translateY(0); }
  .nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav a {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 15px;
    border: 1px solid transparent;
  }
  .nav a:hover { border-color: var(--c-border); }

  .hamburger { display: flex; }
  .header-cta .btn-icon span { display: none; }
  .btn-icon { padding: 9px; }

  .hero { padding: calc(var(--header-h) + 30px) 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .lead-card { order: -1; }
  .trust-row { gap: 20px; }
  .trust-item strong { font-size: 18px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-4px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .t-card-q { flex: 0 0 85%; }

  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-banner { margin: 0 16px 60px; padding: 50px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom .container { flex-direction: column; }

  .mobile-cta { display: flex; }
  body { padding-bottom: 78px; }

  .float-wa { bottom: 88px; right: 16px; width: 52px; height: 52px; }
  .float-wa svg { width: 24px; height: 24px; }
  .back-top { bottom: 88px; left: 16px; }

  .section { padding: 60px 0; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .header-inner { gap: 8px; }
  .btn-call { display: none; }
  .logo-text small { display: none; }
  .section-head { margin-bottom: 36px; }
  .marquee-track { gap: 36px; font-size: 12px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto;
  }
  .reveal { opacity: 1; transform: none; }
}



/* =========================================================
   Category sections in services grid + price tag
   ========================================================= */
.cat-head {
  font-family: var(--font-head, 'Poppins', sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-primary, #1e3a8a);
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e6e9f2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cat-head:first-of-type { margin-top: 16px; }
.cat-head .cat-count {
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #1e3a8a, #06b6d4);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .5px;
}

/* Service card footer with price + apply link */
.svc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed #e6e9f2;
}
.price-tag {
  font-size: 13px;
  color: #475569;
  font-weight: 500;
}
.price-tag strong {
  color: #1e3a8a;
  font-weight: 700;
  font-size: 15px;
}

/* Make service cards a flex column so .svc-foot sticks to bottom */
.service-card {
  display: flex;
  flex-direction: column;
}
.service-card p {
  flex: 1;
}
.service-card .link-arrow {
  font-size: 13px;
  font-weight: 600;
}

/* Lead form select with optgroup support */
.lead-form select optgroup {
  font-weight: 600;
  color: #1e3a8a;
  background: #f4f6fb;
  font-style: normal;
}
.lead-form select option {
  font-weight: 400;
  color: #0f172a;
  padding: 4px;
}

/* Mobile tightening for category heads */
@media (max-width: 768px) {
  .cat-head { font-size: 18px; margin: 28px 0 12px; }
}
