/* =========================================================================
   Muhammad Zohaib — SEO & Link Building Specialist  ·  ovaverse.com
   Light editorial system: warm paper, ink type, restrained violet.
   Green = proof only. No glow, no glass, no aurora. Human, premium.
   ========================================================================= */

:root {
  /* Warm paper neutrals — tinted toward the violet brand hue, never #fff/#000 */
  --bg:        oklch(0.987 0.004 286);
  --bg-2:      oklch(0.965 0.006 286);
  --card:      oklch(1 0 0);
  --surface:   oklch(0.972 0.005 286);
  --surface-2: oklch(0.955 0.007 286);
  --border:    oklch(0.30 0.03 286 / 0.13);
  --border-2:  oklch(0.30 0.03 286 / 0.08);
  --border-glow: oklch(0.52 0.19 286 / 0.45);

  --text:      oklch(0.26 0.025 286);
  --text-dim:  oklch(0.45 0.022 286);
  --text-mute: oklch(0.515 0.020 286);

  /* Restrained palette: violet carries identity, green is proof, blue is rare */
  --primary:        oklch(0.52 0.195 286);   /* premium purple */
  --primary-deep:   oklch(0.44 0.205 286);
  --primary-tint:   oklch(0.52 0.195 286 / 0.10);
  --secondary:      oklch(0.60 0.140 162);   /* natural green — results only */
  --secondary-tint: oklch(0.60 0.140 162 / 0.12);
  --blue:           oklch(0.56 0.135 248);   /* sparing accent */

  /* Back-compat aliases (HTML inline styles still reference these) */
  --cyan:   var(--primary);
  --violet: var(--primary);
  --green:  var(--secondary);
  --pink:   var(--primary);

  --grad-main: linear-gradient(120deg, var(--primary), var(--blue));
  --grad-soft: linear-gradient(160deg, var(--primary-tint), var(--secondary-tint));

  /* Realistic neutral elevation — light, soft, no color glow */
  --sh-1: 0 1px 2px oklch(0.26 0.02 286 / 0.05), 0 1px 1px oklch(0.26 0.02 286 / 0.04);
  --sh-2: 0 2px 4px oklch(0.26 0.02 286 / 0.05), 0 10px 24px -12px oklch(0.26 0.02 286 / 0.13);
  --sh-3: 0 4px 8px oklch(0.26 0.02 286 / 0.06), 0 22px 44px -16px oklch(0.26 0.02 286 / 0.16);
  --glow-cyan:   var(--sh-3);              /* aliases kept; now = soft elevation */
  --glow-violet: var(--sh-3);

  --radius:    16px;
  --radius-sm: 12px;
  --maxw:      clamp(20rem, 90vw, 72rem);
  --gutter:    clamp(1.15rem, 4vw, 2.4rem);
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);

  --font-head: "Bricolage Grotesque", "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv01", "cv03";
  font-variant-numeric: tabular-nums;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: no-preference) { html { scroll-padding-top: 88px; } }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--primary-tint); color: var(--primary-deep); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 6px; }

body {
  font-family: var(--font-body);
  background: #fbfaff;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: clamp(0.97rem, 0.93rem + 0.2vw, 1.06rem);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient layers neutralised — clean paper, no AI glow */
.aurora { display: none; }
.grid-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 1;
  background:
    radial-gradient(60rem 40rem at 88% -10%, var(--primary-tint), transparent 70%),
    radial-gradient(50rem 38rem at 5% 8%, var(--secondary-tint), transparent 72%);
}

/* ---------- Layout & rhythm ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { padding: clamp(60px, 8vw, 120px) 0; position: relative; }
section + section { padding-top: 0; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary-deep);
  padding: 6px 14px; border-radius: 100px;
  background: var(--primary-tint); border: 1px solid var(--border-2);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.08; font-weight: 700; letter-spacing: -0.025em; color: var(--text); }
h1 { font-size: clamp(2.4rem, 1.5rem + 4vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 1.35rem + 2.2vw, 3rem); }
h3 { font-size: clamp(1.12rem, 1rem + 0.5vw, 1.4rem); }
p  { max-width: 66ch; }

.section-head { max-width: 44rem; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head.center { text-align: center; }
.section-head p { color: var(--text-dim); margin: 14px auto 0; font-size: 1.05rem; }

.gradient-text { color: var(--primary); }
.lead { color: var(--text-dim); font-size: clamp(1.04rem, 1rem + 0.3vw, 1.18rem); max-width: 40rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.97rem;
  min-height: 48px; padding: 0 26px; border-radius: 100px; position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: oklch(0.99 0.01 286); box-shadow: var(--sh-2); }
.btn-primary:hover { background: var(--primary-deep); transform: translateY(-2px); box-shadow: var(--sh-3); }
.btn-ghost { background: var(--card); border: 1px solid var(--border); color: var(--text); box-shadow: var(--sh-1); }
.btn-ghost:hover { border-color: var(--border-glow); color: var(--primary-deep); transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn-wa { background: oklch(0.60 0.14 162); color: oklch(0.99 0.01 162); box-shadow: var(--sh-2); }
.btn-wa:hover { background: oklch(0.54 0.145 162); transform: translateY(-2px); box-shadow: var(--sh-3); }

/* ---------- Navbar ---------- */
.nav { position: sticky; top: 0; z-index: 100; transition: background 0.3s, border-color 0.3s, box-shadow 0.3s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: oklch(0.99 0.003 286 / 0.85); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; }
.brand-mark { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--primary); color: oklch(0.99 0.01 286); font-weight: 800; font-size: 1.02rem; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.66rem; color: var(--text-mute); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-size: 0.93rem; color: var(--text-dim); padding: 10px 15px; border-radius: 100px; transition: color 0.2s, background 0.2s; font-weight: 500; }
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.active { color: var(--primary-deep); background: var(--primary-tint); }
.nav-cta { margin-left: 10px; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--card); border: 1px solid var(--border); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px auto; border-radius: 2px; transition: 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(60px, 8vw, 116px); }
.hero-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(34px, 5vw, 78px); align-items: center; }
.hero h1 { margin: 20px 0 22px; }
.hero .lead { margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-trust { display: flex; gap: clamp(22px, 3vw, 38px); margin-top: 44px; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust b { font-family: var(--font-head); font-size: clamp(1.55rem, 1.2rem + 1vw, 1.9rem); color: var(--text); font-weight: 700; }
.hero-trust span { font-size: 0.82rem; color: var(--text-mute); margin-top: 2px; }

/* Photo: editorial frame — offset accent block + soft real shadow, no glow */
.photo-wrap { position: relative; display: grid; place-items: center; }
.photo-orb {
  position: absolute; width: 86%; height: 88%; border-radius: 24px;
  background: var(--primary-tint); transform: rotate(-5deg) translate(4%, 4%);
}
.photo-ring {
  position: relative; width: min(410px, 78vw); aspect-ratio: 4 / 5;
  border-radius: 22px; padding: 8px; background: var(--card);
  border: 1px solid var(--border); box-shadow: var(--sh-3);
}
.photo-ring-inner { width: 100%; height: 100%; border-radius: 15px; overflow: hidden; background: var(--surface); position: relative; }
.photo-ring-inner img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.photo-badge {
  position: absolute; background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 14px; display: flex; align-items: center; gap: 9px;
  font-size: 0.83rem; font-weight: 600; color: var(--text); box-shadow: var(--sh-2);
}
.photo-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); }
.photo-badge.b1 { top: 22px; left: clamp(-22px, -3vw, -8px); }
.photo-badge.b2 { bottom: 26px; right: clamp(-24px, -3vw, -10px); }

/* ---------- Marquee (quiet) ---------- */
.marquee { overflow: hidden; padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: marquee 44s linear infinite; }
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
.chip { font-family: var(--font-head); font-size: 0.86rem; color: var(--text-dim); padding: 9px 20px; border-radius: 100px; white-space: nowrap; background: var(--card); border: 1px solid var(--border-2); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Grid & cards ---------- */
.grid { display: grid; gap: clamp(16px, 2vw, 22px); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(24px, 2.6vw, 32px);
  position: relative; box-shadow: var(--sh-1);
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-glow); box-shadow: var(--sh-3); }
.card .ico {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: var(--primary-tint); margin-bottom: 19px;
  font-family: var(--font-head); font-weight: 700; color: var(--primary-deep);
}
.card .ico svg { width: 24px; height: 24px; stroke: var(--primary-deep); }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--text-dim); font-size: 0.96rem; }
.card .price { margin-top: 15px; font-family: var(--font-head); font-weight: 600; color: var(--primary-deep); font-size: 0.9rem; }
.card-link { margin-top: 17px; display: inline-flex; align-items: center; gap: 7px; color: var(--primary-deep); font-weight: 600; font-size: 0.9rem; }
.card-link svg { width: 16px; transition: transform 0.3s var(--ease); }
.card:hover .card-link svg { transform: translateX(5px); }

/* ---------- Stats: editorial figures, green = proof ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 22px); }
.stat { padding: clamp(22px, 2.4vw, 30px); border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); box-shadow: var(--sh-1); }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(1.95rem, 1.4rem + 1.7vw, 2.7rem); color: var(--secondary); font-weight: 800; letter-spacing: -0.03em; }
.stat span { color: var(--text-dim); font-size: 0.88rem; display: block; margin-top: 5px; }

/* ---------- Skills ---------- */
.skill { margin-bottom: 20px; }
.skill-top { display: flex; justify-content: space-between; margin-bottom: 8px; font-family: var(--font-head); font-size: 0.94rem; }
.skill-top span:last-child { color: var(--primary-deep); }
.bar { height: 8px; border-radius: 100px; background: var(--surface-2); overflow: hidden; }
.bar i { display: block; height: 100%; width: 0; border-radius: 100px; background: var(--primary); transition: width 1.4s var(--ease); }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--border); border-radius: 2px; }
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -30px; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--card); border: 3px solid var(--primary); }
.tl-item time { font-family: var(--font-head); font-size: 0.78rem; color: var(--primary-deep); letter-spacing: 0.08em; font-weight: 600; }
.tl-item h3 { margin: 6px 0 8px; }
.tl-item p { color: var(--text-dim); font-size: 0.96rem; }

/* ---------- CTA band ---------- */
.cta-band { border-radius: 22px; padding: clamp(38px, 6vw, 66px); background: var(--grad-soft); border: 1px solid var(--border-2); text-align: center; position: relative; overflow: hidden; }
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--text-dim); max-width: 36rem; margin: 0 auto 28px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Quote ---------- */
.quote { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(28px, 3.5vw, 42px); position: relative; box-shadow: var(--sh-1); }
.quote::before { content: "\201C"; font-family: Georgia, serif; font-size: 4rem; color: var(--primary); opacity: 0.22; position: absolute; top: 10px; left: 22px; line-height: 1; }
.quote blockquote { font-size: clamp(1.06rem, 1rem + 0.45vw, 1.24rem); color: var(--text); margin: 14px 0 20px; font-weight: 500; line-height: 1.6; }
.quote cite { color: var(--text-mute); font-style: normal; font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--card); margin-bottom: 12px; overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; }
.faq-item:hover, .faq-item.open { border-color: var(--border-glow); box-shadow: var(--sh-1); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px clamp(18px, 2.4vw, 24px); font-family: var(--font-head); font-weight: 600; font-size: 1.01rem; min-height: 56px; }
.faq-q .pm { width: 26px; height: 26px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--primary-tint); transition: transform 0.35s var(--ease); color: var(--primary-deep); font-size: 1.2rem; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 clamp(18px, 2.4vw, 24px) 22px; color: var(--text-dim); }

/* ---------- Contact methods ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 2vw, 22px); }
.cmethod { display: flex; align-items: center; gap: 17px; padding: clamp(20px, 2.4vw, 26px); background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--sh-1); transition: transform 0.35s var(--ease), border-color 0.25s, box-shadow 0.35s; }
.cmethod:hover { transform: translateY(-3px); border-color: var(--border-glow); box-shadow: var(--sh-3); }
.cmethod .ico { width: 50px; height: 50px; flex: none; border-radius: 13px; display: grid; place-items: center; background: var(--primary-tint); }
.cmethod .ico svg { width: 23px; height: 23px; stroke: var(--primary-deep); }
.cmethod b { font-family: var(--font-head); display: block; }
.cmethod span { color: var(--text-dim); font-size: 0.89rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: clamp(50px, 6vw, 64px) 0 34px; margin-top: 36px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 44px); margin-bottom: 44px; }
.footer h4 { font-family: var(--font-head); font-size: 0.77rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 16px; }
.footer-links a { display: block; color: var(--text-dim); padding: 6px 0; font-size: 0.93rem; transition: color 0.2s, transform 0.2s var(--ease); }
.footer-links a:hover { color: var(--primary-deep); transform: translateX(4px); }
.footer p.desc { color: var(--text-dim); font-size: 0.93rem; margin-top: 15px; max-width: 17rem; }
.socials { display: flex; gap: 11px; margin-top: 19px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--card); border: 1px solid var(--border); color: var(--text-dim); transition: 0.25s var(--ease); }
.socials a:hover { border-color: var(--border-glow); color: var(--primary-deep); transform: translateY(-3px); box-shadow: var(--sh-2); }
.socials a svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--text-mute); font-size: 0.85rem; }

/* ---------- Scroll reveal (subtle) ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.06s; }
[data-reveal][data-delay="2"] { transition-delay: 0.12s; }
[data-reveal][data-delay="3"] { transition-delay: 0.18s; }
[data-reveal][data-delay="4"] { transition-delay: 0.24s; }

.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 200; background: var(--primary); transition: width 0.1s linear; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: clamp(16px, 3vw, 24px); bottom: clamp(16px, 3vw, 24px); z-index: 90; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: oklch(0.60 0.14 162); color: oklch(0.99 0.01 162); box-shadow: var(--sh-3); transition: transform 0.3s var(--ease); }
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 26px; height: 26px; }

/* ---------- Inner page hero ---------- */
.page-hero { padding: clamp(52px, 7vw, 92px) 0 clamp(28px, 4vw, 50px); text-align: center; }
.page-hero h1 { margin: 16px 0 16px; }
.page-hero p { color: var(--text-dim); max-width: 40rem; margin: 0 auto; font-size: clamp(1.04rem, 1rem + 0.3vw, 1.16rem); }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 0.84rem; color: var(--text-mute); margin-top: 20px; }
.breadcrumb a:hover { color: var(--primary-deep); }

/* =========================================================================
   RESPONSIVE  ·  320px → ultrawide 2560px
   ========================================================================= */
@media (min-width: 1600px) { :root { --maxw: 80rem; } }
@media (min-width: 2100px) { :root { --maxw: 92rem; } body { font-size: 1.08rem; } }

@media (max-width: 1180px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:nth-child(4) { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 0.85fr; gap: clamp(28px, 4vw, 48px); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero .lead, .section-head { margin-inline: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .photo-wrap { order: -1; margin-bottom: 14px; }
  .photo-ring { width: min(350px, 70vw); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:nth-child(1) { grid-column: 1 / -1; }
  .footer-grid > div:nth-child(4) { grid-column: auto; }
}
@media (max-width: 980px) {
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 2px; align-items: stretch;
    background: oklch(0.99 0.003 286 / 0.98); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    padding: 18px var(--gutter) 24px; border-bottom: 1px solid var(--border);
    transform: translateY(-135%); transition: transform 0.45s var(--ease);
    max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 15px 16px; font-size: 1rem; }
  .nav-cta { margin: 10px 0 0; width: 100%; }
  .nav-toggle { display: block; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4, .stats, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > div { grid-column: auto !important; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .hero-trust { gap: 18px 26px; }
  .btn { width: 100%; }
  .photo-badge { font-size: 0.78rem; padding: 9px 12px; }
  .photo-badge.b1 { left: -6px; }
  .photo-badge.b2 { right: -6px; }
}
@media (max-width: 380px) {
  :root { --gutter: 1rem; }
  .brand small { display: none; }
  .photo-ring { width: min(280px, 82vw); }
  .quote::before { display: none; }
}
@media (max-height: 480px) and (orientation: landscape) {
  .hero { padding-block: 40px; }
}
@media (min-resolution: 2dppx) {
  .card, .stat, .cmethod, .faq-item, .chip, .photo-ring { border-width: 0.5px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* =========================================================================
   LEAD-GEN COMPONENTS  ·  dropdown nav · result graphics · comparison · offers
   ========================================================================= */

/* ---------- Dropdown navigation ---------- */
.has-menu { position: relative; }
.has-menu > a { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.has-menu > a::after { content: ""; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-1px); opacity: 0.6; transition: transform 0.25s var(--ease); }
.has-menu.open > a::after { transform: rotate(-135deg); }
.submenu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 264px;
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--sh-3); padding: 8px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.has-menu:hover .submenu, .has-menu:focus-within .submenu, .has-menu.open .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu a { display: flex; flex-direction: column; gap: 2px; padding: 11px 14px; border-radius: 9px; font-size: 0.92rem; color: var(--text); width: auto; }
.submenu a:hover { background: var(--primary-tint); color: var(--primary-deep); }
.submenu a small { color: var(--text-mute); font-size: 0.78rem; font-weight: 400; }
.submenu .sep { height: 1px; background: var(--border); margin: 6px 4px; }

/* ---------- Trust bar ---------- */
.trustbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(18px, 4vw, 44px); padding: 22px 0; }
.trustbar div { display: flex; align-items: center; gap: 9px; color: var(--text-dim); font-size: 0.9rem; font-weight: 500; }
.trustbar b { font-family: var(--font-head); color: var(--text); }
.trustbar .star { color: oklch(0.75 0.15 80); }

/* ---------- Result graphics (FatJoe-style proof) ---------- */
.result-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(22px, 2.6vw, 30px); box-shadow: var(--sh-1); }
.result-card .rtag { display: inline-flex; font-family: var(--font-head); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary-deep); background: var(--primary-tint); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }
.result-card .big { font-family: var(--font-head); font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.3rem); font-weight: 800; color: var(--secondary); letter-spacing: -0.02em; }
.result-card .sub { color: var(--text-dim); font-size: 0.92rem; margin-top: 2px; }
.chart { width: 100%; height: 88px; margin: 16px 0 4px; overflow: visible; }
.chart .area { fill: var(--primary-tint); }
.chart .line { fill: none; stroke: var(--primary); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.chart .dot { fill: var(--primary); }
.chart .base { stroke: var(--border); stroke-width: 1; }
.ba { display: grid; gap: 12px; margin-top: 18px; }
.ba-row { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 10px; font-size: 0.86rem; }
.ba-row > span:first-child { min-width: 42px; }
.ba-row b { white-space: nowrap; font-size: 0.84rem; }
.ba-row span:first-child { color: var(--text-mute); }
.ba-track { height: 10px; border-radius: 100px; background: var(--surface-2); overflow: hidden; }
.ba-track i { display: block; height: 100%; border-radius: 100px; width: 0; transition: width 1.3s var(--ease); }
.ba-row.before .ba-track i { background: var(--text-mute); }
.ba-row.after .ba-track i { background: var(--secondary); }
.ba-row b { font-family: var(--font-head); color: var(--text); }

/* ---------- "What you do vs what I handle" comparison ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 22px); }
.compare > div { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(22px, 2.6vw, 30px); box-shadow: var(--sh-1); }
.compare h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 1.1rem; }
.compare .tagbadge { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 11px; border-radius: 100px; }
.compare .you .tagbadge { background: var(--surface-2); color: var(--text-dim); }
.compare .me .tagbadge { background: var(--primary-tint); color: var(--primary-deep); }
.compare ul { display: grid; gap: 11px; }
.compare li { display: flex; gap: 11px; color: var(--text-dim); font-size: 0.95rem; line-height: 1.5; }
.compare li::before { content: ""; flex: none; width: 20px; height: 20px; border-radius: 50%; margin-top: 1px; background: var(--secondary-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a673' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat; }
.compare .you li::before { background: var(--surface-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23857f9c' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E") center / 12px no-repeat; }

/* ---------- Pain points ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); }
.pain { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(22px, 2.5vw, 28px); box-shadow: var(--sh-1); }
.pain .x { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: oklch(0.62 0.16 25 / 0.12); color: oklch(0.55 0.18 25); font-weight: 800; font-family: var(--font-head); margin-bottom: 14px; }
.pain h3 { font-size: 1.06rem; margin-bottom: 7px; }
.pain p { color: var(--text-dim); font-size: 0.94rem; }

/* ---------- Offer list (clarity: what's included) ---------- */
.offer { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); box-shadow: var(--sh-2); }
.offer-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 20px; margin-bottom: 22px; border-bottom: 1px solid var(--border); }
.offer-head .price { font-family: var(--font-head); font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); font-weight: 800; color: var(--text); }
.offer-head .price small { font-size: 0.9rem; font-weight: 500; color: var(--text-mute); }
.offer-head .turn { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; color: var(--primary-deep); background: var(--primary-tint); padding: 6px 13px; border-radius: 100px; }
.offer ul { display: grid; gap: 13px; margin-bottom: 26px; }
.offer li { display: flex; gap: 12px; color: var(--text-dim); font-size: 0.96rem; }
.offer li::before { content: ""; flex: none; width: 21px; height: 21px; border-radius: 50%; background: var(--primary-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d3ee0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat; }

/* ---------- Industry pills ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { font-family: var(--font-head); font-size: 0.9rem; font-weight: 500; color: var(--text); padding: 11px 18px; border-radius: 12px; background: var(--card); border: 1px solid var(--border); box-shadow: var(--sh-1); transition: transform 0.3s var(--ease), border-color 0.25s, color 0.25s; }
.pill:hover { transform: translateY(-3px); border-color: var(--border-glow); color: var(--primary-deep); }

/* ---------- Numbered flow ---------- */
.flow { display: grid; gap: 14px; }
.flow-step { display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(18px, 2.2vw, 24px); box-shadow: var(--sh-1); }
.flow-step .n { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--primary); color: oklch(0.99 0.01 286); font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; }
.flow-step h3 { font-size: 1.08rem; margin-bottom: 5px; }
.flow-step p { color: var(--text-dim); font-size: 0.95rem; }

@media (max-width: 880px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .has-menu { display: block; width: 100%; }
  .has-menu > a { width: 100%; padding: 15px 16px; font-size: 1rem; justify-content: space-between; }
  /* Collapsed by default; ONLY the JS .open class expands it
     (override every desktop hover/focus reveal so nothing leaks) */
  .submenu,
  .has-menu:hover .submenu,
  .has-menu:focus-within .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: transparent;
    min-width: 0; padding: 0; margin: 2px 0 4px;
    display: block; max-height: 0; overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }
  .has-menu.open .submenu { max-height: 640px; }
  .submenu a { display: block; width: 100%; padding: 13px 16px 13px 30px; font-size: 0.95rem; }
  .submenu a small { display: none; }   /* descriptions are desktop-only; keep mobile clean */
  .submenu .sep { display: none; }
}
@media (max-width: 600px) {
  .pain-grid, .compare { grid-template-columns: 1fr; }
}

/* ---------- Results carousel (prev / next) ---------- */
.results-carousel { position: relative; }
.rc-track {
  display: flex; gap: clamp(16px, 2vw, 22px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: 4px 2px 8px; scroll-behavior: smooth;
}
.rc-track::-webkit-scrollbar { display: none; }
.rc-track > .result-card {
  flex: 0 0 calc((100% - 2 * clamp(16px, 2vw, 22px)) / 3);
  scroll-snap-align: start;
}
.rc-nav { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 26px; }
.rc-btn { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--card); border: 1px solid var(--border); color: var(--text); box-shadow: var(--sh-1); transition: transform 0.25s var(--ease), border-color 0.25s, color 0.25s, opacity 0.2s; }
.rc-btn:hover:not(:disabled) { border-color: var(--border-glow); color: var(--primary-deep); transform: translateY(-2px); box-shadow: var(--sh-2); }
.rc-btn:disabled { opacity: 0.35; cursor: default; }
.rc-btn svg { width: 19px; height: 19px; }
.rc-count { font-family: var(--font-head); font-size: 0.9rem; color: var(--text-mute); min-width: 54px; text-align: center; }
@media (max-width: 980px) { .rc-track > .result-card { flex-basis: calc((100% - clamp(16px, 2vw, 22px)) / 2); } }
@media (max-width: 640px)  { .rc-track > .result-card { flex-basis: 85%; } }

/* =========================================================================
   DASHING LAYER  ·  bold type · committed color · dark contrast bands
   Clean white base kept for trust; impact added, not AI effects.
   ========================================================================= */
:root {
  --ink:   oklch(0.205 0.045 285);
  --ink-2: oklch(0.165 0.040 285);
  --on-dark:      oklch(0.97 0.012 286);
  --on-dark-dim:  oklch(0.80 0.030 286);
  --on-dark-mute: oklch(0.62 0.035 286);
}

/* Faint film grain — depth without glass */
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Extreme, confident type scale */
h1 { font-size: clamp(2.7rem, 1.5rem + 5.4vw, 6rem); font-weight: 800; letter-spacing: -0.038em; line-height: 1.02; }
.hero h1 { font-size: clamp(3rem, 1.5rem + 6.4vw, 6.8rem); }
h2 { font-size: clamp(2.05rem, 1.35rem + 3.1vw, 3.7rem); letter-spacing: -0.032em; line-height: 1.05; }
.section-head { margin-bottom: clamp(46px, 7vw, 76px); }
.section-head p { font-size: 1.12rem; }
.hero .lead { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.32rem); }

/* Eyebrow as a bold dark chip (high contrast on white) */
.eyebrow { background: var(--ink); color: var(--on-dark); border: 0; padding: 8px 17px; letter-spacing: 0.16em; }
.eyebrow::before { background: var(--primary); box-shadow: none; }

/* Bigger, more decisive buttons */
.btn { min-height: 53px; padding: 0 30px; font-size: 1.0rem; }
.btn-primary { background: var(--primary-deep); box-shadow: 0 14px 30px -12px oklch(0.44 0.205 286 / 0.55); }
.btn-primary:hover { background: oklch(0.40 0.205 286); }

/* Hero: a bold solid color block behind the portrait (escapes, overlaps) */
.photo-orb {
  width: 86%; height: 88%; border-radius: 26px; background: var(--primary);
  transform: rotate(-6deg) translate(7%, 5%); opacity: 1;
}
.photo-ring { box-shadow: 0 40px 90px -30px oklch(0.20 0.04 285 / 0.45); border-color: oklch(0.20 0.04 285 / 0.08); }
.hero-trust b { font-size: clamp(1.7rem, 1.2rem + 1.4vw, 2.3rem); color: var(--primary-deep); }

/* Stat / result figures, amplified */
.stat b { font-size: clamp(2.3rem, 1.5rem + 2.4vw, 3.3rem); }
.result-card .big { font-size: clamp(1.9rem, 1.4rem + 1.7vw, 2.5rem); }

/* THE signature moment: CTA band becomes a bold full dark panel.
   Appears on every page, breaks the white, reads premium. */
.cta-band {
  background: var(--ink); border: 0; color: var(--on-dark);
  padding: clamp(48px, 8vw, 96px); border-radius: 30px;
}
.cta-band::before {
  content: ""; position: absolute; width: 60%; height: 220%; left: -6%; top: -60%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 62%);
  opacity: 0.32; filter: blur(10px);
}
.cta-band h2 { color: var(--on-dark); font-size: clamp(2.2rem, 1.5rem + 3.4vw, 4rem); }
.cta-band p { color: var(--on-dark-dim); font-size: 1.12rem; }
.cta-band .btn-ghost { background: oklch(1 0 0 / 0.08); border: 1px solid oklch(1 0 0 / 0.38); color: var(--on-dark); }
.cta-band .btn-ghost:hover { background: oklch(1 0 0 / 0.16); border-color: oklch(1 0 0 / 0.7); color: #fff; }

/* Footer as a deep dark band — high-end contrast against the white site */
.footer { background: var(--ink-2); border-top: 0; color: var(--on-dark-dim); margin-top: 0; }
.footer .brand { color: #fff; }
.footer .brand small { color: var(--on-dark-mute); }
.footer h4 { color: var(--on-dark-mute); }
.footer p.desc { color: var(--on-dark-dim); }
.footer-links a { color: var(--on-dark-dim); }
.footer-links a:hover { color: #fff; }
.footer .socials a { background: oklch(1 0 0 / 0.06); border-color: oklch(1 0 0 / 0.15); color: var(--on-dark-dim); }
.footer .socials a:hover { color: #fff; border-color: oklch(1 0 0 / 0.4); background: oklch(1 0 0 / 0.12); box-shadow: none; }
.footer-bottom { border-top-color: oklch(1 0 0 / 0.12); color: var(--on-dark-mute); }

@media (max-width: 600px) {
  .cta-band { border-radius: 22px; }
}
