/*
Theme Name: Jaffza
Theme URI: https://jaffzasolutions.com
Author: Jaffza Solutions
Description: Jaffza Solutions marketing site. Dark glass design, solution landing pages, free audit lead capture. No page builder, no form plugin.
Version: 1.2.0
Requires at least: 6.4
Requires PHP: 8.0
License: Proprietary
Text Domain: jaffza
*/

/* ------------------------------------------------------------------
   Tokens. These are the values from the existing site, unchanged.
   ------------------------------------------------------------------ */
:root {
  --bg: #070c09;
  --bg2: #0b1410;
  --green: #2ee88a;
  --green-dim: #1db86d;
  --green-glow: rgba(46, 232, 138, 0.18);
  --green-glow2: rgba(46, 232, 138, 0.07);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg2: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(46, 232, 138, 0.18);
  --glass-border2: rgba(255, 255, 255, 0.08);
  --text: #f0f4f1;
  --muted: #9fb3a7;
  --muted2: #7a9984;
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1140px;
  --font-display: "Syne", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* ------------------------------------------------------------------
   Base
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient green glow, as on the current site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 15% 5%, var(--green-glow), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 90%, var(--green-glow2), transparent 60%),
    var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--text); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
p.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }
.muted { color: var(--muted); }

.container { width: min(var(--max), calc(100% - 3rem)); margin: 0 auto; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section + .section { border-top: 1px solid var(--glass-border2); }
.section-head { max-width: 62ch; margin-bottom: 2.5rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ------------------------------------------------------------------
   Glass
   ------------------------------------------------------------------ */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border2);
  border-radius: var(--radius);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
}
.glass--accent { border-color: var(--glass-border); }

/* ------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.btn-primary {
  background: var(--green);
  color: #06140c;
  box-shadow: 0 0 0 0 var(--green-glow);
}
.btn-primary:hover { background: #4cf09b; color: #06140c; box-shadow: 0 0 28px var(--green-glow); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--glass-border2);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1.02rem; }

/* ------------------------------------------------------------------
   Header
   ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 12, 9, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border2);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 68px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  color: var(--text);
  text-transform: uppercase;
}
.brand span { color: var(--green); }
.brand:hover { color: var(--text); }

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav a { color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.nav a:hover { color: var(--text); }
.nav .btn { color: #06140c; }

.nav-item { position: relative; }
.nav-item > button {
  background: none;
  border: 0;
  color: var(--muted);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-item > button:hover, .nav-item[aria-expanded="true"] > button { color: var(--text); }
.nav-item > button::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.nav-item[aria-expanded="true"]::before {
  content: "";
  position: absolute;
  left: -20px; right: -20px;
  top: 100%;
  height: 18px;
}
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding: 0.5rem;
  display: none;
  grid-template-columns: 1fr;
  gap: 2px;
  background: rgba(11, 20, 16, 0.92);
  border: 1px solid var(--glass-border2);
  border-radius: 14px;
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.nav-item[aria-expanded="true"] .dropdown { display: grid; }
.dropdown a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.92rem;
}
.dropdown a:hover { background: var(--glass-bg2); color: var(--green); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--glass-border2);
  border-radius: 10px;
  color: var(--text);
  width: 42px; height: 42px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: currentColor; margin: 3px auto;
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.5rem 1.25rem;
    background: rgba(7, 12, 9, 0.96);
    border-bottom: 1px solid var(--glass-border2);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }
  .nav.is-open { display: flex; }
  .nav > a, .nav-item > button { padding: 0.8rem 0; font-size: 1rem; width: 100%; text-align: left; justify-content: space-between; }
  .dropdown { position: static; box-shadow: none; border: 0; background: transparent; padding: 0 0 0.5rem 0.75rem; }
  .nav .btn { margin-top: 0.75rem; justify-content: center; }
}

/* ------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------ */
.hero { padding: clamp(5rem, 12vw, 9rem) 0 clamp(3.5rem, 8vw, 6rem); }
.hero h1 { max-width: 16ch; }
.hero .lead { margin: 1.25rem 0 2rem; font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero--solution { padding-bottom: clamp(2.5rem, 6vw, 4rem); }
.hero-kicker {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ------------------------------------------------------------------
   Solutions grid (home)
   ------------------------------------------------------------------ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.solution-card {
  display: block;
  padding: 1.5rem;
  color: var(--text);
  transition: border-color 0.18s, background 0.18s;
}
.solution-card:hover { border-color: var(--glass-border); background: var(--glass-bg2); color: var(--text); }
.solution-card h3 { margin-bottom: 0.4rem; }
.solution-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.solution-card .go { display: inline-block; margin-top: 1rem; color: var(--green); font-size: 0.88rem; font-weight: 600; }
@media (max-width: 880px) { .solutions-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .solutions-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------
   Steps (the audit process is a real sequence)
   ------------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; counter-reset: step; }
.step { padding: 1.6rem; position: relative; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--green-glow);
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--muted); margin: 0; font-size: 0.97rem; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------
   Two-column prose (problem, why-no-price, about)
   ------------------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.split h2 { max-width: 18ch; }
.split .body p { color: var(--muted); font-size: 1.05rem; max-width: 58ch; }
.split .body p:last-child { margin-bottom: 0; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------
   Benefits (what you get)
   ------------------------------------------------------------------ */
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.benefit { padding: 1.6rem; }
.benefit h3 { margin-bottom: 0.45rem; }
.benefit p { color: var(--muted); margin: 0; font-size: 0.97rem; }
@media (max-width: 720px) { .benefits { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------
   Pakistan strip
   ------------------------------------------------------------------ */
.strip {
  padding: 2rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  align-items: center;
}
.strip h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 0; }
.strip p { color: var(--muted); margin: 0; font-size: 1.02rem; }
@media (max-width: 880px) { .strip { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------
   FAQ rows
   ------------------------------------------------------------------ */
.faq { max-width: 74ch; }
.faq-item { padding: 1.35rem 0; border-top: 1px solid var(--glass-border2); }
.faq-item:last-child { border-bottom: 1px solid var(--glass-border2); }
.faq-item h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; margin-bottom: 0.4rem; }
.faq-item p { color: var(--muted); margin: 0; }

/* ------------------------------------------------------------------
   Closing CTA
   ------------------------------------------------------------------ */
.cta {
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: left;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}
.cta h2 { margin: 0 0 0.5rem; max-width: 22ch; }
.cta p { color: var(--muted); margin: 0; max-width: 50ch; }
.cta .actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-self: end; }
@media (max-width: 880px) { .cta { grid-template-columns: 1fr; } .cta .actions { justify-self: start; } }

/* ------------------------------------------------------------------
   Forms
   ------------------------------------------------------------------ */
.form { padding: clamp(1.5rem, 4vw, 2.5rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 0.88rem; font-weight: 500; color: var(--muted); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  font-size: 0.97rem;
}
.field select option { background: var(--bg2); color: var(--text); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); outline: none; }
.form-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.25rem; }
.form-note { color: var(--muted2); font-size: 0.85rem; margin: 0; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.notice {
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.97rem;
}
.notice-ok { background: var(--green-glow2); border: 1px solid var(--glass-border); color: var(--text); }
.notice-err { background: rgba(255, 90, 90, 0.08); border: 1px solid rgba(255, 90, 90, 0.3); color: var(--text); }

/* ------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2rem; align-items: start; }
.contact-list { display: grid; gap: 0.75rem; }
.contact-list a, .contact-list div { display: block; padding: 1.1rem 1.25rem; color: var(--text); }
.contact-list small { display: block; color: var(--muted2); font-size: 0.82rem; margin-bottom: 0.2rem; }
.contact-list a:hover { border-color: var(--glass-border); color: var(--text); }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------
   Generic page content
   ------------------------------------------------------------------ */
.prose { max-width: 70ch; }
.prose p, .prose li { color: var(--muted); font-size: 1.05rem; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; }

/* ------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------ */
.site-footer { border-top: 1px solid var(--glass-border2); padding: 3.5rem 0 2.5rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer-grid h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.9rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-grid a { color: var(--muted); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--green); }
.footer-grid p { color: var(--muted); font-size: 0.92rem; max-width: 34ch; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--glass-border2); color: var(--muted2); font-size: 0.85rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* WhatsApp floating link */
.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 40;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: rgba(11, 20, 16, 0.9);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.wa-float:hover { color: var(--green); }
.wa-float svg { width: 18px; height: 18px; fill: var(--green); }

/* Screen reader only */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ------------------------------------------------------------------
   Hero with visual
   ------------------------------------------------------------------ */
.hero--split .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-visual { position: relative; }
.hero-visual .mock { width: 100%; height: auto; display: block; filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45)); }
.hero-visual--photo { overflow: hidden; }
.hero-visual--photo img { width: 100%; height: auto; display: block; }
@media (max-width: 880px) {
  .hero--split .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
}

/* Home hero: three screens fanned */
.hero-stack { position: relative; aspect-ratio: 420 / 380; }
.hero-stack .mock {
  position: absolute;
  width: 78%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}
.hero-stack .mock:nth-child(1) { left: 0; top: 0; transform: rotate(-3deg); opacity: 0.85; }
.hero-stack .mock:nth-child(2) { left: 22%; top: 14%; transform: rotate(1.5deg); }
.hero-stack .mock:nth-child(3) { left: 8%; top: 36%; transform: rotate(-1deg); opacity: 0.95; }

/* Benefit and step icon squares, as on the existing site */
.icon-sq {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--green-glow);
  color: var(--green);
  margin-bottom: 0.9rem;
}
.icon-sq svg { width: 18px; height: 18px; }

/* Honest promises strip */
.promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding: 0.5rem 0; }
.promise { padding: 1.5rem 1.75rem; border-left: 1px solid var(--glass-border2); }
.promise:first-child { border-left: 0; }
.promise h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.promise p { color: var(--muted); font-size: 0.95rem; margin: 0; }
@media (max-width: 880px) {
  .promises { grid-template-columns: 1fr; }
  .promise { border-left: 0; border-top: 1px solid var(--glass-border2); }
  .promise:first-child { border-top: 0; }
}

/* Solution page: screen next to the benefits */
.section-visual { margin: 0 0 2.5rem; max-width: 640px; }
.section-visual .mock { width: 100%; height: auto; filter: drop-shadow(0 24px 50px rgba(0,0,0,0.45)); }

/* ------------------------------------------------------------------
   Motion
   ------------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Ambient glow drifts very slowly */
@keyframes jz-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(2%, 1.5%, 0) scale(1.06); }
}
body::before { animation: jz-drift 26s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { body::before { animation: none; } }

/* Hero entrance */
@keyframes jz-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero h1, .hero .lead, .hero-actions, .hero-kicker {
  animation: jz-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-kicker { animation-delay: 0.02s; }
.hero h1 { animation-delay: 0.06s; }
.hero .lead { animation-delay: 0.16s; }
.hero-actions { animation-delay: 0.26s; }
@media (prefers-reduced-motion: reduce) {
  .hero h1, .hero .lead, .hero-actions, .hero-kicker { animation: none; }
}

/* The stacked screens settle into place */
.hero-stack .mock { animation: jz-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-stack .mock:nth-child(1) { animation-delay: 0.30s; }
.hero-stack .mock:nth-child(2) { animation-delay: 0.42s; }
.hero-stack .mock:nth-child(3) { animation-delay: 0.54s; }
@media (prefers-reduced-motion: reduce) { .hero-stack .mock { animation: none; } }

/* A row or slot that just changed */
@keyframes jz-flash {
  0%   { opacity: 0.35; }
  40%  { opacity: 1; }
  100% { opacity: 1; }
}
.mock-flash { animation: jz-flash 0.5s ease-out; }

/* Cards lift slightly */
.solution-card, .benefit, .step { transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease; }
.solution-card:hover { transform: translateY(-3px); }
@media (prefers-reduced-motion: reduce) { .solution-card:hover { transform: none; } }

/* ------------------------------------------------------------------
   FAQ accordion
   ------------------------------------------------------------------ */
.faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0;
  background: none;
  border: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}
.faq-q:hover { color: var(--green); }
.faq-q::after {
  content: "";
  flex: none;
  width: 10px; height: 10px;
  margin-top: 7px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}
.faq-item.is-open .faq-q::after { transform: rotate(-135deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
  opacity: 0;
}
.faq-item.is-open .faq-a { opacity: 1; margin-top: 0.7rem; }
.faq-a p { margin: 0; color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .faq-a { transition: none; } }

/* ------------------------------------------------------------------
   Mobile sticky call to action
   ------------------------------------------------------------------ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  display: none;
  gap: 0.6rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(7, 12, 9, 0.92);
  border-top: 1px solid var(--glass-border2);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-cta .btn { flex: 1; justify-content: center; }
.sticky-cta.is-visible { transform: none; }
@media (max-width: 880px) {
  .sticky-cta { display: flex; }
  .wa-float { display: none; }
  body { padding-bottom: 70px; }
}

/* ------------------------------------------------------------------
   Number strip (shown only when real numbers are entered)
   ------------------------------------------------------------------ */
.numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.number { padding: 2rem 1.75rem; border-left: 1px solid var(--glass-border2); }
.number:first-child { border-left: 0; }
.number .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); color: var(--green); line-height: 1; display: block; }
.number .l { color: var(--muted); font-size: 0.95rem; margin-top: 0.5rem; display: block; }
@media (max-width: 720px) {
  .numbers { grid-template-columns: 1fr; }
  .number { border-left: 0; border-top: 1px solid var(--glass-border2); }
  .number:first-child { border-top: 0; }
}
