/* ===================================================================
   AdFyrr — Premium Performance Marketing Agency
   Design language: bold Inter typography, generous whitespace,
   dark/light alternating sections, flame gradient (pink→purple).
   =================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Flame brand gradient (from the AdFyrr logo) */
  --flame: linear-gradient(150deg, #FF4D8D 0%, #E0218A 32%, #A020F0 72%, #7B2FF7 100%);
  --flame-soft: linear-gradient(150deg, #FF4D8D, #7B2FF7);

  --pink: #E0218A;
  --pink-hot: #FF4D8D;
  --magenta: #A020F0;
  --purple: #7B2FF7;

  --ink: #0A0A0B;          /* near-black headlines */
  --ink-2: #18181B;        /* dark section bg */
  --slate: #52525B;        /* body text on light */
  --slate-2: #71717A;      /* muted text */
  --line: #E7E7EA;         /* hairline borders */
  --line-dark: #2A2A2F;    /* borders on dark */
  --cloud: #F7F7F8;        /* off-white bg */
  --white: #FFFFFF;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(10,10,11,.04), 0 1px 2px rgba(10,10,11,.06);
  --shadow-md: 0 12px 32px rgba(10,10,11,.08), 0 4px 10px rgba(10,10,11,.04);
  --shadow-lg: 0 30px 70px rgba(123,47,247,.16), 0 10px 24px rgba(10,10,11,.08);

  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.dark { background: var(--ink-2); color: #E9E9EC; }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.cloud { background: var(--cloud); }
.center { text-align: center; }
.gradient-text {
  background: var(--flame);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 900; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--slate); font-weight: 400; }
.dark .lead { color: #B4B4BD; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--flame);
}
.eyebrow.centered { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: .98rem; letter-spacing: -0.01em;
  padding: 15px 28px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  color: #fff; background: var(--flame);
  box-shadow: 0 10px 26px rgba(224,33,138,.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(224,33,138,.42); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.dark .btn-ghost { color: #fff; border-color: var(--line-dark); }
.dark .btn-ghost:hover { border-color: #fff; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo svg { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-weight: 600; font-size: .95rem; color: var(--ink); position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a.active { color: var(--pink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 700; font-size: .95rem; display: flex; align-items: center; gap: 7px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--pink); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 88px 0 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -160px; right: -140px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,33,138,.16), rgba(123,47,247,.05) 55%, transparent 70%);
  filter: blur(8px); z-index: 0;
}
.hero::after {
  content: ""; position: absolute; bottom: -200px; left: -160px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,47,247,.12), transparent 65%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 7px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: .82rem; font-weight: 600; color: var(--slate); margin-bottom: 26px;
}
.hero-badge b { color: var(--ink); }
.hero-badge .dot {
  width: 22px; height: 22px; border-radius: 50%; background: var(--flame);
  display: grid; place-items: center; color: #fff; font-size: 11px;
}
.hero h1 { margin-bottom: 22px; }
.hero p.lead { max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust .stars { color: var(--pink); font-size: 1.05rem; letter-spacing: 2px; }
.hero-trust small { color: var(--slate-2); font-size: .85rem; display: block; }
.hero-trust strong { font-weight: 800; }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: var(--ink-2); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(224,33,138,.22), transparent 50%);
}
.hero-card .hc-head { display: flex; justify-content: space-between; align-items: center; position: relative; margin-bottom: 22px; }
.hero-card .hc-head span { color: #A1A1AA; font-size: .82rem; font-weight: 600; }
.hero-card .hc-live { display: inline-flex; align-items: center; gap: 7px; color: #4ADE80; font-size: .78rem; font-weight: 700; }
.hero-card .hc-live .pulse { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 0 0 rgba(74,222,128,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(74,222,128,.5)} 70%{box-shadow:0 0 0 9px rgba(74,222,128,0)} 100%{box-shadow:0 0 0 0 rgba(74,222,128,0)} }
.hc-metric { position: relative; margin-bottom: 6px; }
.hc-metric .label { color: #A1A1AA; font-size: .8rem; font-weight: 600; }
.hc-metric .value { color: #fff; font-size: 2.6rem; font-weight: 900; letter-spacing: -.03em; line-height: 1.1; }
.hc-metric .value em { font-style: normal; color: #4ADE80; font-size: 1rem; font-weight: 700; margin-left: 8px; }
.hc-chart { position: relative; margin-top: 18px; height: 120px; }
.hc-stats { position: relative; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line-dark); }
.hc-stats div .n { color: #fff; font-weight: 800; font-size: 1.35rem; }
.hc-stats div .n.grad { background: var(--flame); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hc-stats div .t { color: #A1A1AA; font-size: .72rem; font-weight: 600; }
/* floating spark */
.spark { position: absolute; pointer-events: none; }

/* ---------- Partner / logo banner ---------- */
.partners { padding: 46px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.partners-label { text-align: center; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--slate-2); margin-bottom: 30px; }
.partners-row { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.partner { display: flex; align-items: center; gap: 10px; filter: grayscale(0); opacity: .92; transition: transform .25s var(--ease), opacity .25s; }
.partner:hover { transform: translateY(-3px); opacity: 1; }
.partner svg, .partner img { height: 30px; width: auto; }
.partner .pname { font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; color: var(--ink); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat .num { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 900; letter-spacing: -.04em; line-height: 1; }
.stat .num.grad { background: var(--flame); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .cap { margin-top: 10px; color: var(--slate); font-weight: 500; font-size: .95rem; }
.dark .stat .cap { color: #A1A1AA; }

/* ---------- Section heading block ---------- */
.head-block { max-width: 720px; }
.head-block.center { margin: 0 auto; }
.head-block h2 { margin-bottom: 18px; }

/* ---------- Services grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--flame); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.card:hover::after { transform: scaleX(1); }
.card-icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(224,33,138,.12), rgba(123,47,247,.12));
  margin-bottom: 22px;
}
.card-icon svg { width: 28px; height: 28px; stroke: var(--pink); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate); font-size: .98rem; }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-weight: 700; font-size: .9rem; color: var(--pink); }
.card .card-link svg { width: 15px; height: 15px; transition: transform .2s; }
.card:hover .card-link svg { transform: translateX(4px); }
/* spark-burst signature mark */
.spark-burst { position: absolute; top: 16px; right: 16px; width: 26px; height: 26px; opacity: .5; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.step { position: relative; padding-top: 14px; }
.step .step-n {
  font-size: 3.2rem; font-weight: 900; letter-spacing: -.05em; line-height: 1;
  background: var(--flame); -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .9; margin-bottom: 12px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: .95rem; }
.dark .step p { color: #A1A1AA; }
.step:not(:last-child)::before {
  content: ""; position: absolute; top: 30px; right: -12px; width: 24px; height: 2px;
  background: var(--line); display: none;
}

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-list { margin-top: 28px; display: grid; gap: 18px; }
.split-list li { display: flex; gap: 14px; align-items: flex-start; }
.check {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; background: var(--ink);
  display: grid; place-items: center; margin-top: 2px;
}
.check svg { width: 14px; height: 14px; stroke: #fff; }
.split-list li b { display: block; font-weight: 700; margin-bottom: 2px; }
.split-list li span { color: var(--slate); font-size: .96rem; }
.dark .split-list li span { color: #A1A1AA; }
.split-visual {
  background: var(--flame); border-radius: var(--radius-lg); padding: 4px; box-shadow: var(--shadow-lg);
}
.split-visual-inner { background: var(--ink-2); border-radius: 24px; padding: 34px; color: #fff; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.quote .mark { font-size: 3rem; line-height: .6; font-weight: 900; background: var(--flame); -webkit-background-clip: text; background-clip: text; color: transparent; }
.quote p { color: var(--ink); font-size: 1.02rem; margin: 12px 0 22px; font-weight: 500; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--flame); display: grid; place-items: center; color: #fff; font-weight: 800; }
.quote .who b { display: block; font-size: .95rem; }
.quote .who small { color: var(--slate-2); font-size: .82rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); padding: 64px; overflow: hidden; background: var(--ink-2); }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 0% 0%, rgba(224,33,138,.32), transparent 45%),
              radial-gradient(120% 120% at 100% 100%, rgba(123,47,247,.32), transparent 45%);
}
.cta-band .cta-inner { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; max-width: 600px; }
.cta-band p { color: #C4C4CE; margin-top: 12px; max-width: 520px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #A1A1AA; padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo svg { height: 32px; margin-bottom: 18px; }
.footer-about p { font-size: .94rem; max-width: 300px; line-height: 1.7; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer-col a { display: block; font-size: .94rem; margin-bottom: 12px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 11px; font-size: .94rem; margin-bottom: 14px; line-height: 1.5; }
.footer-contact svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; color: var(--pink-hot); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
  font-size: .85rem;
}
.footer-bottom .legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom .legal-links a:hover { color: #fff; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--line-dark); display: grid; place-items: center; transition: .25s; }
.footer-socials a:hover { background: var(--flame); border-color: transparent; color: #fff; }
.footer-socials svg { width: 17px; height: 17px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 70px 0 60px; position: relative; overflow: hidden; background: var(--cloud); border-bottom: 1px solid var(--line); }
.page-hero::before {
  content: ""; position: absolute; top: -120px; right: -80px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,33,138,.12), transparent 65%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 16px; }
.page-hero p { max-width: 600px; }
.crumbs { font-size: .85rem; color: var(--slate-2); margin-bottom: 18px; font-weight: 600; }
.crumbs a:hover { color: var(--pink); }
.crumbs span { color: var(--pink); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info .info-card {
  display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 16px; transition: box-shadow .25s, transform .25s;
}
.contact-info .info-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-info .ic-icon { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 13px; background: linear-gradient(150deg, rgba(224,33,138,.12), rgba(123,47,247,.12)); display: grid; place-items: center; }
.contact-info .ic-icon svg { width: 22px; height: 22px; stroke: var(--pink); }
.contact-info .ic-body b { display: block; font-size: 1.02rem; margin-bottom: 3px; }
.contact-info .ic-body p, .contact-info .ic-body a { color: var(--slate); font-size: .95rem; }
.contact-info .ic-body a:hover { color: var(--pink); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: .96rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(224,33,138,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .82rem; color: var(--slate-2); margin-top: 14px; }
.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius); margin-top: 8px; }

/* ---------- About values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.values .value { padding: 30px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.values .value .v-icon { width: 50px; height: 50px; border-radius: 13px; background: var(--flame); display: grid; place-items: center; margin-bottom: 18px; }
.values .value .v-icon svg { width: 24px; height: 24px; stroke: #fff; }
.values .value h3 { margin-bottom: 8px; }
.values .value p { color: var(--slate); font-size: .95rem; }

/* ---------- Legal / long-form content ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.5rem; margin: 38px 0 14px; }
.legal h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.legal p { color: var(--slate); margin-bottom: 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; color: var(--slate); }
.legal ul li { margin-bottom: 8px; }
.legal a { color: var(--pink); font-weight: 600; }
.legal .updated { color: var(--slate-2); font-size: .9rem; margin-bottom: 30px; }
.legal strong { color: var(--ink); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; align-items: start; }
.price {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 32px; background: #fff;
  position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price.featured { background: var(--ink-2); color: #fff; border-color: transparent; box-shadow: var(--shadow-lg); }
.price.featured h3, .price.featured .price-amt { color: #fff; }
.price .tag { position: absolute; top: 22px; right: 22px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--flame); padding: 5px 12px; border-radius: 999px; }
.price h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price .price-sub { color: var(--slate); font-size: .92rem; margin-bottom: 22px; }
.price.featured .price-sub { color: #A1A1AA; }
.price-amt { font-size: 2.6rem; font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.price-amt span { font-size: 1rem; font-weight: 600; color: var(--slate-2); }
.price ul { margin: 24px 0 28px; display: grid; gap: 12px; }
.price ul li { display: flex; gap: 11px; align-items: flex-start; font-size: .94rem; color: var(--slate); }
.price.featured ul li { color: #C4C4CE; }
.price ul li svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; stroke: var(--pink); }
.price .btn { width: 100%; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-weight: 700; font-size: 1.08rem; cursor: pointer; }
.faq-q .ic { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; background: var(--cloud); display: grid; place-items: center; font-size: 1.2rem; transition: .25s; }
.faq-item[open] .faq-q .ic { background: var(--flame); color: #fff; transform: rotate(45deg); }
.faq-a { color: var(--slate); margin-top: 14px; font-size: .98rem; }
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .cards, .quotes, .pricing, .values { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    background: #fff; padding: 24px; gap: 18px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .stats { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .cards, .quotes, .pricing, .values, .steps, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 40px 28px; }
  .cta-band .cta-inner { flex-direction: column; align-items: flex-start; }
  .partners-row { gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  body { font-size: 16px; }
}
