/* ===========================================================
   Ashwani Pal Tax Consultant — landing page styles
   Direction: trustworthy + premium. Deep navy ink, warm gold
   accent, warm "paper" background. Display serif + clean sans.
   =========================================================== */

:root {
  /* color — overridable by Tweaks */
  --ink: #141638;            /* deep indigo */
  --ink-2: #20235a;
  --paper: #f4f3fb;
  --surface: #ffffff;
  --accent: #7c5cf0;         /* brand violet */
  --accent-deep: #5b3fd6;
  --accent-soft: #ebe5fd;
  --positive: #2f7d5b;       /* compliance green */
  --line: #e7e4f2;
  --line-ink: rgba(255,255,255,.15);

  --text: #1a1c3d;
  --muted: #5d607e;
  --muted-ink: #c3c2e6;

  /* type — overridable by Tweaks */
  --font-display: "Spectral", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  /* metrics */
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(12,30,51,.06), 0 1px 3px rgba(12,30,51,.05);
  --shadow-md: 0 8px 24px -10px rgba(12,30,51,.18), 0 2px 6px rgba(12,30,51,.06);
  --shadow-lg: 0 30px 60px -25px rgba(12,30,51,.35), 0 10px 24px -12px rgba(12,30,51,.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.section { padding: clamp(64px, 9vw, 120px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--accent);
}
.eyebrow.center { justify-content: center; }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  margin-top: 16px;
}
.section-head p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--muted);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px -12px var(--accent-deep);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 16px 28px -12px var(--accent-deep); }
.btn-ink {
  background: var(--ink);
  color: #fff;
}
.btn-ink:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost-light {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: var(--line-ink);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 17px 30px; font-size: 16.5px; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--muted-ink);
  font-size: 13.5px;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 9px; padding-bottom: 9px;
}
.topbar a { color: #fff; }
.topbar .tb-left { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar .tb-item svg { width: 14px; height: 14px; color: var(--accent); }
.topbar .tb-right { display: inline-flex; align-items: center; gap: 7px; }
.topbar .tb-right svg { width: 14px; height: 14px; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,241,232,.82);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.header.scrolled {
  background: rgba(245,241,232,.94);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px; padding-bottom: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark-img { height: 44px; width: auto; display: block; }
.brand .name { line-height: 1.12; white-space: nowrap; }
.brand .name strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  display: block;
  letter-spacing: -.01em;
}
.brand .name span {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 15px; font-weight: 500; color: var(--text);
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--accent);
  transition: width .25s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 11px;
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); transition: .25s; border-radius: 2px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  display: none;
  position: fixed; inset: 0 0 0 auto;
  width: min(360px, 86vw);
  background: var(--surface);
  z-index: 60;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,.0,.2,1);
  padding: 88px 28px 28px;
  box-shadow: var(--shadow-lg);
  flex-direction: column; gap: 6px;
}
.drawer.open { transform: translateX(0); }
.drawer a { padding: 14px 4px; font-size: 18px; font-weight: 500; border-bottom: 1px solid var(--line); }
.drawer .btn { margin-top: 18px; }
.scrim {
  display: none; position: fixed; inset: 0; z-index: 55;
  background: rgba(12,30,51,.45); opacity: 0; transition: opacity .3s;
}
.scrim.show { display: block; opacity: 1; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; top: -30%; right: -10%;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle at center, var(--accent-soft), transparent 65%);
  opacity: .55; z-index: 0; pointer-events: none;
}
.hero .wrap {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  padding-top: clamp(48px, 6vw, 84px);
  padding-bottom: clamp(48px, 6vw, 84px);
}
.hero-copy h1 {
  font-size: clamp(38px, 5.6vw, 64px);
  margin-top: 22px;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--accent-deep);
}
.hero-copy .lead {
  margin-top: 22px;
  font-size: 19px;
  color: var(--muted);
  max-width: 520px;
}
.hero-ticks {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 24px;
}
.tick { display: flex; align-items: center; gap: 11px; font-weight: 500; font-size: 15.5px; }
.tick .dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(47,125,91,.12); color: var(--positive);
  display: grid; place-items: center; flex-shrink: 0;
}
.tick .dot svg { width: 14px; height: 14px; }
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 30px; display: flex; align-items: center; gap: 16px;
  font-size: 14px; color: var(--muted);
}
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 16px; height: 16px; }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hero-frame::before {
  content: "";
  position: absolute; inset: -14px -14px 34px 34px;
  border: 1.5px solid var(--accent);
  border-radius: 26px;
  z-index: -1;
  opacity: .5;
}
.float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 16px 18px;
}
.float-card.fc-1 { left: -28px; top: 38px; display: flex; align-items: center; gap: 13px; }
.float-card.fc-1 .ic {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  background: var(--ink); color: var(--accent); display: grid; place-items: center;
}
.float-card.fc-1 .ic svg { width: 20px; height: 20px; }
.float-card.fc-1 b { font-family: var(--font-display); font-size: 17px; color: var(--ink); }
.float-card.fc-1 small { display: block; color: var(--muted); font-size: 12.5px; }
.float-card.fc-2 {
  right: -22px; bottom: 40px; text-align: left;
}
.float-card.fc-2 .num { font-family: var(--font-display); font-size: 30px; color: var(--ink); line-height: 1; }
.float-card.fc-2 .num span { color: var(--accent-deep); }
.float-card.fc-2 small { color: var(--muted); font-size: 12.5px; }

/* ---------- stats strip ---------- */
.stats {
  background: var(--ink);
  color: #fff;
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 44px; padding-bottom: 44px;
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: -14px; top: 12%; bottom: 12%;
  width: 1px; background: var(--line-ink);
}
.stat .n { font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 46px); line-height: 1; }
.stat .n span { color: var(--accent); }
.stat .l { margin-top: 9px; font-size: 14px; color: var(--muted-ink); letter-spacing: .02em; }

/* ---------- services ---------- */
.services { background: var(--paper); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .3s ease, border-color .3s ease;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--accent); transition: width .35s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.svc-card:hover::before { width: 100%; }
.svc-card .ic {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--paper); color: var(--ink);
  display: grid; place-items: center; margin-bottom: 20px;
  border: 1px solid var(--line);
  transition: background .3s, color .3s;
}
.svc-card:hover .ic { background: var(--ink); color: var(--accent); }
.svc-card .ic svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 21px; margin-bottom: 9px; }
.svc-card p { color: var(--muted); font-size: 15px; }
.svc-card .more {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 14px; color: var(--accent-deep);
}
.svc-card .more svg { width: 15px; height: 15px; transition: transform .25s; }
.svc-card:hover .more svg { transform: translateX(4px); }
.svc-card.feature {
  grid-column: span 1;
  background: var(--ink);
  color: #fff;
}
.svc-card.feature h3 { color: #fff; }
.svc-card.feature p { color: var(--muted-ink); }
.svc-card.feature .ic { background: rgba(255,255,255,.07); color: var(--accent); border-color: var(--line-ink); }
.svc-card.feature .more { color: var(--accent); }

/* ---------- why us ---------- */
.why { background: var(--surface); }
.why .wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: var(--paper);
  transition: transform .25s, box-shadow .3s;
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-item .ic {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center; margin-bottom: 16px;
}
.why-item .ic svg { width: 22px; height: 22px; }
.why-item h4 { font-size: 18px; margin-bottom: 7px; }
.why-item p { font-size: 14.5px; color: var(--muted); }

/* ---------- process ---------- */
.process { background: var(--paper); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.step .num {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  color: var(--accent-deep);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: grid; place-items: center;
  margin-bottom: 20px;
  background: var(--accent-soft);
}
.step h4 { font-size: 19px; margin-bottom: 9px; }
.step p { font-size: 14.5px; color: var(--muted); }
.step .arrow {
  position: absolute; right: -16px; top: 48px; z-index: 2;
  color: var(--accent); width: 24px; height: 24px;
}
.step:last-child .arrow { display: none; }

/* ---------- testimonials ---------- */
.testi { background: var(--ink); color: #fff; }
.testi .section-head h2 { color: #fff; }
.testi .section-head p { color: var(--muted-ink); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-ink);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.testi-card .stars { margin-bottom: 16px; }
.testi-card .quote { font-size: 16.5px; line-height: 1.6; color: #f3f0e8; font-family: var(--font-display); font-weight: 400; }
.testi-card .who { margin-top: 22px; display: flex; align-items: center; gap: 13px; }
.testi-card .av {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent-soft); color: var(--ink);
  display: grid; place-items: center; font-weight: 700; font-family: var(--font-display);
}
.testi-card .who b { display: block; font-size: 15px; }
.testi-card .who small { color: var(--muted-ink); font-size: 13px; }

/* ---------- faq ---------- */
.faq { background: var(--surface); }
.faq .wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink);
}
.faq-q .pm { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: .3s; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--accent-deep); border-radius: 2px; transition: .3s; }
.faq-q .pm::before { width: 12px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 12px; }
.faq-item.open .faq-q .pm { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-q .pm::before, .faq-item.open .faq-q .pm::after { background: #fff; }
.faq-item.open .faq-q .pm::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 4px 24px; color: var(--muted); font-size: 15.5px; }

/* ---------- contact ---------- */
.contact { background: var(--paper); }
.contact .wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact-info .ci-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.contact-info .ci-item:first-of-type { border-top: 1px solid var(--line); }
.contact-info .ci-item .ic {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--ink); color: var(--accent); display: grid; place-items: center;
}
.contact-info .ci-item .ic svg { width: 22px; height: 22px; }
.contact-info .ci-item b { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); }
.contact-info .ci-item .v { font-size: 18px; font-weight: 600; color: var(--ink); margin-top: 3px; }
.contact-info .ci-item .v.lg { font-family: var(--font-display); }
.contact-info .ci-item small { display: block; color: var(--muted); font-size: 13.5px; margin-top: 2px; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 24px; margin-bottom: 6px; }
.form-card .sub { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: 11px;
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  background: var(--paper);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(124,92,240,.18);
}
.field textarea { resize: vertical; min-height: 96px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field.row .field { margin-bottom: 0; }
.field.error input, .field.error select { border-color: #d35450; }
.err-msg { display: none; color: #d35450; font-size: 12.5px; margin-top: 5px; }
.field.error .err-msg { display: block; }
.form-card .btn { width: 100%; margin-top: 6px; }
.form-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-success {
  display: none;
  text-align: center; padding: 40px 10px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: rgba(47,125,91,.12); color: var(--positive); display: grid; place-items: center;
}
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* ---------- final CTA ---------- */
.final {
  background: var(--ink);
  color: #fff;
  position: relative; overflow: hidden;
}
.final::before {
  content: ""; position: absolute; left: -8%; bottom: -60%;
  width: 50vw; height: 50vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(124,92,240,.30), transparent 65%);
}
.final .wrap { position: relative; text-align: center; padding-top: 88px; padding-bottom: 88px; }
.final h2 { color: #fff; font-size: clamp(32px, 5vw, 52px); max-width: 740px; margin: 18px auto 0; }
.final p { color: var(--muted-ink); font-size: 19px; margin: 18px auto 0; max-width: 560px; }
.final .actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer { background: #08172a; color: var(--muted-ink); }
.footer .wrap { padding-top: 64px; padding-bottom: 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-ink); }
.footer .brand .name strong { color: #fff; }
.footer-about { margin-top: 18px; font-size: 14.5px; max-width: 300px; line-height: 1.65; }
.footer-social { margin-top: 20px; display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line-ink); display: grid; place-items: center; color: #fff; transition: .25s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-col h5 { color: #fff; font-family: var(--font-body); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 18px; }
.footer-col a { display: block; font-size: 14.5px; padding: 6px 0; transition: color .2s, padding .2s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact .fc-item { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; margin-bottom: 14px; }
.footer-contact .fc-item svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; font-size: 13px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* whatsapp float */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.6);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1120px) {
  .nav { gap: 22px; }
  .header-cta .btn-ghost { display: none; }
}
@media (max-width: 1000px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why .wrap { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step .arrow { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq .wrap { grid-template-columns: 1fr; gap: 32px; }
  .contact .wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav, .header-cta .btn { display: none; }
  .menu-toggle { display: flex; }
  .drawer { display: flex; }
  .topbar .tb-right { display: none; }
  .stats .wrap { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .stat:nth-child(2)::after { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-ticks { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .float-card.fc-1 { left: 0; }
  .float-card.fc-2 { right: 0; }
  .form-card { padding: 26px 22px; }
}
@media (max-width: 420px) {
  .stats .wrap { grid-template-columns: 1fr; }
  .stat::after { display: none !important; }
}
