/* ================================================================
   SUPPORT — QR practicality. One idea, not a card grid.
   ================================================================ */
.support {
  position: relative;
  background: linear-gradient(180deg, var(--adah-surface-cream) 0%, var(--adah-surface-mist) 100%);
  padding: 100px 0;
  overflow: hidden;
}
.support-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.support-copy .eyebrow { font: var(--adah-t-eyebrow); letter-spacing: .12em; color: var(--adah-primary); text-transform: uppercase; }
.support-copy h2 { font: var(--adah-t-h1); font-size: clamp(34px, 4vw, 48px); color: var(--adah-tertiary); margin: 14px 0 20px; letter-spacing: -0.01em; line-height: 1.2; }
.support-copy p { font: var(--adah-t-lead); color: var(--adah-ink-soft); margin: 0 0 28px; max-width: 480px; line-height: 1.7; }
.support-list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 14px; }
.support-list li { display: flex; gap: 12px; align-items: flex-start; font: var(--adah-t-body); color: var(--adah-ink); }
.support-list .tick { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--adah-primary); color: #fff; display: flex; align-items: center; justify-content: center; margin-top: 2px; }

/* QR scene — one confident hero visual.
   The QR is a real SVG with a proper module matrix
   (not a CSS grid). The phone on the side shows the scan result.
   A subtle scanning beam ties them together. */
.qr-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 20px 0;
}

/* The card that hosts the QR — the hero element, centered + slight tilt */
.qr-card {
  position: relative; z-index: 3;
  background: #fff;
  border-radius: 24px;
  padding: 28px 28px 24px;
  width: 320px;
  box-shadow:
    0 30px 60px -24px rgba(var(--adah-tertiary-rgb),.28),
    0 10px 22px -12px rgba(var(--adah-primary-rgb),.2),
    0 0 0 1px rgba(var(--adah-tertiary-rgb),.04);
  text-align: center;
  transform: rotate(-3deg);
  animation: qrFloat 6s ease-in-out infinite;
}
@keyframes qrFloat { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-8px); } }
.qr-card .eb {
  display: inline-block; font: var(--adah-t-eyebrow);
  letter-spacing: .12em; color: var(--adah-primary);
  background: var(--adah-mint-wash); padding: 4px 10px; border-radius: 999px;
  font-size: 10px; margin-bottom: 14px;
}
.qr-card .qr-svg {
  display: block; width: 220px; height: 220px;
  margin: 0 auto 16px;
  padding: 14px; background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(var(--adah-tertiary-rgb),.08);
  position: relative;
}
/* brand bug in the center of the QR */
.qr-card .qr-brand {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--adah-wave-1), var(--adah-wave-4));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 22px;
  box-shadow: 0 4px 12px rgba(var(--adah-primary-rgb),.35), inset 0 0 0 3px #fff;
  z-index: 2;
}
.qr-card h4 { font: var(--adah-t-h4); color: var(--adah-tertiary); margin: 0 0 6px; font-size: 19px; }
.qr-card .url { font: var(--adah-t-caption); color: var(--adah-primary-ink); margin: 0 0 14px; direction: ltr; font-weight: 700; }
.qr-card .scan-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px dashed rgba(var(--adah-tertiary-rgb),.12);
  font: var(--adah-t-caption); color: var(--adah-muted);
}
.qr-card .scan-meta b { color: var(--adah-tertiary); font-weight: 700; }

/* Phone tucked behind the QR card on the left, peeking out — tells the
   "scan → view on phone" story without crowding the QR. */
.qr-phone {
  position: absolute;
  left: calc(50% - 260px);
  top: 60%;
  transform: translateY(-50%) rotate(-8deg);
  width: 180px; height: 360px;
  border-radius: 32px;
  background: #0F3D44;
  padding: 7px;
  box-shadow:
    0 40px 60px -30px rgba(var(--adah-tertiary-rgb),.4),
    0 0 0 1px rgba(var(--adah-tertiary-rgb),.05);
  z-index: 2;
  animation: phoneFloat 6s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(-50%) rotate(-8deg); }
  50% { transform: translateY(calc(-50% - 8px)) rotate(-8deg); }
}
.qr-phone .notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 14px; border-radius: 999px; background: #000;
  z-index: 2;
}
.qr-phone .screen {
  width: 100%; height: 100%; border-radius: 24px;
  background: linear-gradient(160deg, var(--adah-surface-mist) 0%, #fff 40%);
  overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
.qr-phone .sbar {
  height: 36px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 18px; font-size: 10px; font-weight: 700; color: var(--adah-ink-deep);
}
.qr-phone .sbar .right { display: flex; gap: 4px; align-items: center; }
.qr-phone .site-hd {
  height: 72px; background: linear-gradient(135deg, var(--adah-wave-1), var(--adah-wave-4));
  position: relative; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px;
}
.qr-phone .site-hd::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 60%;
  background: radial-gradient(120% 80% at 70% 100%, rgba(255,255,255,.35), transparent 60%);
}
.qr-phone .site-bd { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.qr-phone .s-title { height: 10px; width: 75%; background: #0F3D44; border-radius: 3px; }
.qr-phone .s-line { height: 6px; background: #DDE5E5; border-radius: 3px; }
.qr-phone .s-line.sm { width: 65%; }
.qr-phone .s-cta {
  margin-top: 6px; height: 28px; border-radius: 999px;
  background: linear-gradient(95deg, var(--adah-wave-1), var(--adah-wave-4));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px; font-weight: 700;
}

/* Subtle sparkle arc connecting QR corner to phone — replaces the old
   floating beam that sat in dead space. Pure decoration. */
.qr-scene::before {
  content: "";
  position: absolute;
  left: calc(50% - 110px);
  top: calc(50% - 30px);
  width: 90px; height: 90px;
  border-top: 1.5px dashed rgba(var(--adah-primary-rgb),.35);
  border-left: 1.5px dashed rgba(var(--adah-primary-rgb),.35);
  border-radius: 80px 0 0 0;
  z-index: 1; pointer-events: none;
}
.qr-scene::after {
  content: "";
  position: absolute;
  left: calc(50% - 118px); top: calc(50% - 38px);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--adah-wave-4);
  box-shadow: 0 0 0 4px rgba(var(--adah-secondary-rgb),.25), 0 0 18px rgba(var(--adah-primary-rgb),.5);
  z-index: 1; pointer-events: none;
}
.scan-beam { display: none; }

/* ================================================================
   PRICING — 3 plans, clear hierarchy, signature card for popular
   ================================================================ */
.pricing {
  background: #fff;
  padding: 100px 0;
}
.pricing-hd { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.pricing-hd .eyebrow { font: var(--adah-t-eyebrow); letter-spacing: .12em; color: var(--adah-primary); text-transform: uppercase; }
.pricing-hd h2 { font: var(--adah-t-h1); color: var(--adah-tertiary); letter-spacing: -0.01em; margin: 12px 0 14px; }
.pricing-hd p { font: var(--adah-t-lead); color: var(--adah-ink-soft); margin: 0; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1040px; margin: 0 auto; }
.pc {
  background: var(--adah-surface-cream);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  border: 1px solid rgba(var(--adah-tertiary-rgb),.06);
  transition: transform .3s, box-shadow .3s;
}
.pc:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -20px rgba(var(--adah-tertiary-rgb),.15); }
.pc h3 { font: var(--adah-t-h4); color: var(--adah-tertiary); margin: 0 0 6px; }
.pc .blurb { font: var(--adah-t-caption); color: var(--adah-muted); margin: 0 0 24px; }
.pc .price { font: var(--adah-t-h1); font-weight: 700; color: var(--adah-tertiary); font-size: 54px; display: flex; align-items: baseline; gap: 4px; letter-spacing: -0.02em; }
.pc .price .cur { font-size: 18px; color: var(--adah-muted); font-weight: 400; }
.pc .per { font: var(--adah-t-caption); color: var(--adah-muted); margin-bottom: 28px; }
.pc ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.pc li { display: flex; gap: 10px; font: var(--adah-t-body-sm); color: var(--adah-ink); }
.pc li svg { color: var(--adah-primary); flex: 0 0 auto; }
.pc.popular {
  background: linear-gradient(160deg, var(--adah-tertiary) 0%, #082F35 100%);
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 30px 60px -24px rgba(var(--adah-tertiary-rgb),.35);
  overflow: hidden;
}
.pc.popular::before {
  content:""; position: absolute; inset: -50% -30% auto -30%; height: 80%;
  background: radial-gradient(closest-side, rgba(var(--adah-secondary-rgb),.35), transparent 70%);
  filter: blur(20px);
}
.pc.popular > * { position: relative; z-index: 1; }
.pc.popular h3, .pc.popular .price { color: #fff; }
.pc.popular .blurb, .pc.popular .per, .pc.popular li { color: rgba(255,255,255,.7); }
.pc.popular li svg { color: var(--adah-wave-4); }
.pc.popular .price .cur { color: rgba(255,255,255,.6); }
.pc.popular .badge {
  position: absolute; top: 20px; inset-inline-end: 20px; z-index: 2;
  font: var(--adah-t-micro); font-weight: 700;
  background: var(--adah-wave-4); color: var(--adah-ink-deep);
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .08em;
}

/* ================================================================
   FAQ — calm, collapsible
   ================================================================ */
.faq {
  background: var(--adah-surface-mist);
  padding: 100px 0;
}
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-hd { text-align: center; margin-bottom: 48px; }
.faq-hd .eyebrow { font: var(--adah-t-eyebrow); letter-spacing: .12em; color: var(--adah-primary); text-transform: uppercase; }
.faq-hd h2 { font: var(--adah-t-h1); color: var(--adah-tertiary); letter-spacing: -0.01em; margin: 12px 0 8px; }
.faq-hd p { font: var(--adah-t-body); color: var(--adah-ink-soft); margin: 0; }

.faq-item {
  background: #fff;
  border: 1px solid rgba(var(--adah-tertiary-rgb),.06);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .25s;
}
.faq-item.open { box-shadow: 0 14px 32px -16px rgba(var(--adah-tertiary-rgb),.15); }
.faq-q {
  padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer;
  font: var(--adah-t-label); font-size: 16px;
  color: var(--adah-tertiary);
}
.faq-q .chev { width: 32px; height: 32px; border-radius: 50%; background: var(--adah-mint-wash); color: var(--adah-primary); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; transition: transform .3s; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.2,.7,.2,1);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 22px; margin: 0; font: var(--adah-t-body); color: var(--adah-ink-soft); line-height: 1.75; }

/* ================================================================
   FINAL CTA — the wave closes the story
   ================================================================ */
@property --final-glow-size {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 36%;
}
.final {
    --final-glow-size: 36%;
    background: radial-gradient( 900px 500px at 50% 120%, rgba(169,255,241,.5), transparent var(--final-glow-size) ), linear-gradient(165deg, var(--adah-tertiary) 0%, #082F35 100%);
    animation: finalGlow linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 55%;
    position: relative;
    color: #fff;
    padding: 120px 0 140px;
    overflow: hidden;
    text-align: center;
}

@keyframes finalGlow {
    from {
        --final-glow-size: 36%;
    }

    to {
        --final-glow-size: 120%;
    }
}
.final::before { /* incoming wave */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path d='M0,60 C280,10 620,110 900,60 C1180,10 1280,90 1440,50 L1440,0 L0,0 Z' fill='%23EEF7F6'/></svg>") no-repeat center/100% 100%;
}
.final h2 { font: var(--adah-t-display); font-size: clamp(38px, 5vw, 64px); color: #fff; margin: 0 0 18px; letter-spacing: -0.02em; line-height: 1.1; }
.final p { font: var(--adah-t-lead); font-size: 19px; color: rgba(255,255,255,.75); margin: 0 auto 36px; max-width: 560px; line-height: 1.65; }
.final .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final .adah-btn--ghost { color: #fff; }
.final .adah-btn--ghost:hover { color: var(--adah-wave-4); }
.final .reassure { display: flex; gap: 28px; justify-content: center; margin-top: 32px; font: var(--adah-t-caption); color: rgba(255,255,255,.5); flex-wrap: wrap;}
.final .reassure span { display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 991.98px) {
  .support-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-cards { grid-template-columns: 1fr; }
}
