/* ============================================================
   MedSpaMedia AI — COMPONENTS (shared component contract)
   Both concepts use these classes; concept.css only retunes vibe vars.
   Every animation = transform/opacity only. No transition:all. No ease-in.
   ============================================================ */

/* ---------- Buttons ---------- */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:var(--sp-2);
  font-weight:var(--w-semi); font-size:var(--t-body); line-height:1; text-align:center;
  padding:14px 22px; min-height:48px; border-radius:var(--r-button); white-space:nowrap;
  transition:transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out),
             background-color var(--dur-base) var(--ease-out-soft), font-variation-settings var(--dur-base) var(--ease-out); }
.btn:active{ transform:scale(.97); transition:transform 160ms var(--ease-out); }
.btn .icon{ width:18px; height:18px; }

.btn-primary{ background:var(--cta); color:#fff; box-shadow:var(--cta-hi), var(--shadow-card); }
@media (hover:hover) and (pointer:fine){
  .btn-primary:hover{ background:var(--cta-hover); box-shadow:var(--cta-hi), var(--shadow-hover);
    transform:translateY(-1px); font-variation-settings:"GRAD" 55,"wght" 600; }
}
.btn-secondary{ background:transparent; color:var(--primary-press); border:1.5px solid var(--taupe); }
@media (hover:hover) and (pointer:fine){
  .btn-secondary:hover{ border-color:var(--deep); background:rgba(31,70,47,.04); transform:translateY(-1px); }
}
.btn-ghost{ background:transparent; color:var(--heading); padding:12px 14px; min-height:44px; }
@media (hover:hover) and (pointer:fine){ .btn-ghost:hover{ background:rgba(31,70,47,.05); } }
.btn-on-deep{ background:var(--ivory); color:var(--deep); }
@media (hover:hover) and (pointer:fine){ .btn-on-deep:hover{ background:#fff; transform:translateY(-1px); } }
.btn-block{ width:100%; }
.btn-lg{ min-height:54px; padding:16px 28px; font-size:var(--t-lead); }

/* ---------- Chips / tags ---------- */
.chip{ display:inline-flex; align-items:center; gap:6px; padding:7px 14px; border-radius:var(--r-chip);
  background:var(--ivory); border:1px solid var(--hairline); color:var(--heading);
  font-size:var(--t-body-sm); font-weight:var(--w-med);
  transition:transform var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out-soft); }
@media (hover:hover) and (pointer:fine){ .chip:hover{ background:var(--matcha); transform:translateY(-1px); } }
.tag{ display:inline-flex; align-items:center; gap:5px; padding:4px 10px; border-radius:var(--r-tag);
  background:var(--matcha); color:var(--deep); font-size:var(--t-eyebrow); font-weight:var(--w-semi);
  text-transform:uppercase; letter-spacing:.06em; }

/* ---------- Nav ---------- */
.nav{ position:relative; z-index:100; background:color-mix(in srgb,var(--bg) 88%,transparent);
  backdrop-filter:saturate(1.1) blur(10px); transition:transform var(--dur-mid) var(--ease-out),
  box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  border-bottom:1px solid transparent; }
.nav.scrolled{ border-bottom-color:var(--hairline); box-shadow:0 6px 20px rgba(31,70,47,.06); }
.nav.hide{ transform:translateY(-100%); }
.nav__inner{ display:flex; align-items:center; gap:var(--sp-6); height:72px; }
.brand{ display:flex; align-items:center; gap:10px; font-weight:var(--w-semi); font-size:1.0625rem; color:var(--heading); }
.brand img{ height:30px; width:auto; }
.brand b{ font-weight:var(--w-bold); }
.brand .light{ font-weight:var(--w-med); }
.nav__links{ display:flex; align-items:center; gap:var(--sp-6); margin-left:auto; }
.nav__links a{ font-size:var(--t-body-sm); font-weight:var(--w-med); color:var(--heading); padding:8px 2px; position:relative; }
.nav__links a::after{ content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px; background:var(--leaf);
  transform:scaleX(0); transform-origin:left center; transition:transform var(--dur-base) var(--ease-out); }
@media (hover:hover){ .nav__links a:hover::after, .nav__links a[aria-current="page"]::after{ transform:scaleX(1); } }
.nav__cta{ display:flex; align-items:center; gap:var(--sp-3); }
.nav__burger{ display:none; }
@media (max-width:900px){
  /* hide the inline nav links AND the actual nav CTA button (it is .btn, not
     .btn-secondary) so the burger-only nav can shrink below 390px without
     forcing horizontal overflow. The cart ghost button stays. */
  .nav__links,.nav__cta > a.btn{ display:none; }
  .nav__burger{ display:inline-flex; margin-left:auto; padding:10px; }
}
/* mobile sheet */
.nav-sheet{ position:fixed; inset:0; z-index:120; background:var(--bg); transform:translateX(100%); visibility:hidden;
  transition:transform var(--dur-slow) var(--ease-drawer), visibility 0s linear var(--dur-slow);
  display:flex; flex-direction:column; padding:var(--sp-6); }
.nav-sheet.open{ transform:none; visibility:visible; transition:transform var(--dur-slow) var(--ease-drawer); }
.nav-sheet a{ font-size:var(--t-h3); font-weight:var(--w-semi); color:var(--heading); padding:var(--sp-4) 0; border-bottom:1px solid var(--hairline); }

/* ---------- Search bar (hero protagonist) ---------- */
.searchbar{ display:flex; align-items:stretch; background:#fff; border:1.5px solid var(--hairline);
  border-radius:var(--r-pill); box-shadow:var(--shadow-card); overflow:hidden; max-width:640px;
  transition:box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out); }
.searchbar:focus-within{ border-color:var(--leaf); box-shadow:var(--shadow-hover); }
.searchbar select{ border:none; background:transparent; padding:0 14px 0 18px; font-weight:var(--w-med);
  color:var(--heading); border-right:1px solid var(--hairline); cursor:pointer; }
.searchbar input{ flex:1; border:none; padding:16px 16px; background:transparent; min-width:0; }
.searchbar input::placeholder{ color:var(--placeholder); }
.searchbar .btn-primary{ margin:0; min-height:auto; padding:0 22px; align-self:stretch;
  border-radius:0 var(--r-pill) var(--r-pill) 0; }

/* ---------- Trust row (SVG icons, never emoji) ---------- */
.trust-row{ display:flex; flex-wrap:wrap; gap:var(--sp-6) var(--sp-8); align-items:center; }
.trust-row li{ display:flex; align-items:center; gap:8px; font-size:var(--t-body-sm); color:var(--muted); font-weight:var(--w-med); }
.trust-row .icon{ color:var(--leaf); }
.section--deep .trust-row li{ color:var(--on-dark-muted); }
.section--deep .trust-row .icon{ color:var(--sage); }

/* ---------- Cards (the Castilho polish trio on every card) ---------- */
.card{ background:var(--surface); border:1px solid var(--hairline); border-radius:var(--r-card);
  box-shadow:var(--elev-hi), var(--shadow-card); padding:var(--sp-8);
  transition:transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
@media (hover:hover) and (pointer:fine){ .card.lift:hover{ transform:translateY(-2px); box-shadow:var(--elev-hi), var(--shadow-hover); } }
.card__icon{ display:inline-flex; align-items:center; justify-content:center; width:48px; height:48px;
  border-radius:14px; background:var(--matcha); color:var(--leaf); margin-bottom:var(--sp-4); }
.card__icon .icon{ width:24px; height:24px; }

/* mode cards (bento — distinct weights, set in concept/page) */
.mode{ position:relative; display:flex; flex-direction:column; gap:var(--sp-3); }
.mode__cta{ margin-top:auto; padding-top:var(--sp-4); }

/* ---------- Video card + watermark (the stock-library vibe) ---------- */
.vcard{ position:relative; border-radius:var(--r-media); overflow:hidden; background:var(--deep);
  box-shadow:var(--shadow-card); transition:transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.vcard__thumb{ position:relative; aspect-ratio:16/9; width:100%; overflow:hidden; }
.vcard__thumb img{ width:100%; height:100%; object-fit:cover; transition:transform var(--dur-slow) var(--ease-out); }
@media (hover:hover) and (pointer:fine){
  .vcard.lift:hover{ transform:translateY(-2px); box-shadow:var(--shadow-hover); }
  .vcard.lift:hover .vcard__thumb img{ transform:scale(1.04); }
}
/* burned-in style watermark (concept stub; server-side fl_tiled in prod).
   True diagonal TILE: an SVG wordmark pattern repeated across the WHOLE usable
   area at ~22% opacity, so a crop can't lift the mark (D4).
   The corner carries medspamedia.ai. */
.watermark{ position:absolute; inset:0; pointer-events:none; overflow:hidden;
  background-repeat:repeat; background-size:300px 150px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='150' viewBox='0 0 300 150'%3E%3Cg transform='rotate(-30 150 75)' fill='%23ffffff' fill-opacity='0.22' font-family='Arial,Helvetica,sans-serif' font-size='15' font-weight='600' letter-spacing='3'%3E%3Ctext x='-40' y='35'%3EMEDSPAMEDIA%3C/text%3E%3Ctext x='110' y='35'%3EMEDSPAMEDIA%3C/text%3E%3Ctext x='35' y='110'%3EMEDSPAMEDIA%3C/text%3E%3Ctext x='185' y='110'%3EMEDSPAMEDIA%3C/text%3E%3C/g%3E%3C/svg%3E"); }
.watermark__corner{ position:absolute; right:10px; bottom:9px; display:flex; align-items:center; gap:6px;
  opacity:.85; color:#fff; font-size:11px; font-weight:var(--w-med); z-index:1; }
.watermark__corner img{ height:14px; width:auto; }
.vcard__meta{ position:absolute; left:10px; bottom:9px; display:flex; gap:6px; }
.vcard__play{ position:absolute; inset:0; display:grid; place-items:center; }
.vcard__play span{ width:54px; height:54px; border-radius:50%; background:rgba(255,255,255,.16);
  backdrop-filter:blur(4px); display:grid; place-items:center; color:#fff;
  transition:transform var(--dur-base) var(--ease-spring), background var(--dur-base) var(--ease-out-soft); }
@media (hover:hover) and (pointer:fine){ .vcard:hover .vcard__play span{ transform:scale(1.08); background:rgba(255,255,255,.26); } }
.vcard__dur{ position:absolute; right:10px; top:9px; background:rgba(26,38,30,.7); color:#fff; font-size:11px;
  font-weight:var(--w-med); padding:3px 7px; border-radius:6px; }
/* format chip — mirror of the duration chip, anchored bottom-left of the thumb;
   pointer-events off so the full-bleed play button stays clickable beneath it */
.vcard__fmt{ position:absolute; left:10px; bottom:9px; background:rgba(26,38,30,.72); color:#fff; font-size:11px;
  font-weight:var(--w-med); padding:3px 7px; border-radius:6px; z-index:1; pointer-events:none; }
.vcard__add{ position:absolute; right:10px; top:9px; }
/* Card body, redesigned: stacked column — category eyebrow, full-width 2-line
   title, then a hairline-separated bar with the price on the left and the Add
   button on the right. Nothing shares a row with the title, so no overlap and
   no clipped text, ever. The card is a flex column and the bar pins to the
   bottom so every card in a grid row shares the same baseline. */
.vcard{ display:flex; flex-direction:column; }
.vcard[hidden]{ display:none; }
.vcard__foot{ flex:1 1 auto; display:flex; flex-direction:column; gap:4px;
  padding:14px 16px 16px; background:var(--surface); }
.vcard__cat{ font-size:var(--t-eyebrow); text-transform:uppercase; letter-spacing:.06em;
  color:var(--muted); font-weight:var(--w-semi); }
.vcard__link{ color:inherit; }
.vcard__foot strong{ display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;
  overflow:hidden; font-weight:var(--w-semi); font-size:var(--t-body); line-height:1.35;
  min-height:2.7em; color:var(--heading); }
@media (hover:hover) and (pointer:fine){ .vcard__link:hover strong{ color:var(--primary-press); } }
.vcard__bar{ display:flex; align-items:center; justify-content:space-between; gap:var(--sp-3);
  margin-top:auto; padding-top:12px; border-top:1px solid var(--hairline); }
.vcard__price{ font-weight:var(--w-bold); color:var(--heading); font-size:var(--t-body); }
.vcard__bar .btn-add{ flex:none; min-width:96px; justify-content:center; }

/* in-cart state (persistent, visible — never disappears) */
.btn-add{ display:inline-flex; align-items:center; gap:6px; padding:8px 12px; border-radius:var(--r-button);
  background:#fff; border:1.5px solid var(--hairline); color:var(--heading); font-size:var(--t-body-sm); font-weight:var(--w-med);
  transition:transform var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out-soft),
    border-color var(--dur-fast) var(--ease-out-soft), color var(--dur-fast) var(--ease-out-soft); }
/* Added state: matcha #E5EBD5 fill, leaf #669B3F border, press-green #49702D text */
.btn-add[aria-pressed="true"]{ background:var(--matcha); border-color:var(--leaf); color:var(--primary-press); }
.btn-add[aria-pressed="true"] .i-plus{ display:none; }
.btn-add .i-check{ display:none; }
.btn-add[aria-pressed="true"] .i-check{ display:inline-flex; }

/* ---------- Plan cards (iStock-style) ---------- */
.plans{ display:grid; gap:var(--sp-6); grid-template-columns:repeat(4,1fr); align-items:start; }
@media (max-width:1080px){ .plans{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .plans{ grid-template-columns:1fr; } }
.plan{ position:relative; background:var(--surface); border:1px solid var(--hairline); border-radius:var(--r-card-lg);
  padding:var(--sp-8) var(--sp-6); box-shadow:var(--elev-hi), var(--shadow-card); display:flex; flex-direction:column; gap:var(--sp-3); }
.plan--featured{ background:#fff; border:1.5px solid var(--leaf); box-shadow:var(--elev-hi),0 18px 44px rgba(31,70,47,.14); }
@media (min-width:1081px){ .plan--featured{ transform:translateY(-10px); } }
.plan__badge{ position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--cta); color:#fff;
  font-size:var(--t-eyebrow); font-weight:var(--w-semi); text-transform:uppercase; letter-spacing:.08em;
  padding:6px 14px; border-radius:var(--r-pill); box-shadow:var(--shadow-card); white-space:nowrap;
  animation:badgePulse 2.4s var(--ease-spring) 3; }
@keyframes badgePulse{ 0%,100%{ transform:translateX(-50%) scale(1);} 50%{ transform:translateX(-50%) scale(1.05);} }
@media (prefers-reduced-motion:reduce){ .plan__badge{ animation:none; } }
.plan__name{ font-size:var(--t-h3); font-weight:var(--w-semi); color:var(--heading); }
.plan__who{ font-size:var(--t-body-sm); color:var(--muted); min-height:2.6em; }
.plan__price{ display:flex; align-items:baseline; gap:6px; margin-top:var(--sp-2); }
.plan__price b{ font-size:2.5rem; font-weight:var(--w-bold); color:var(--deep); line-height:1; }
.plan__price span{ color:var(--muted); font-size:var(--t-body-sm); }
.plan__unit{ font-weight:var(--w-semi); color:var(--leaf); font-size:var(--t-body); }
.plan__unit s{ color:var(--placeholder); font-weight:var(--w-reg); margin-left:6px; }
.plan__list{ display:flex; flex-direction:column; gap:10px; margin:var(--sp-4) 0; }
.plan__list li{ display:flex; gap:9px; align-items:flex-start; font-size:var(--t-body-sm); color:var(--ink); }
.plan__list .icon{ color:var(--leaf); margin-top:1px; }
.plan__cta{ margin-top:auto; }
.plan__micro{ font-size:var(--t-eyebrow); color:var(--muted); text-align:center; margin-top:var(--sp-2); }

/* discreet "example pricing" line — one per page that shows a price */
.pricing-note{ font-size:var(--t-eyebrow); color:var(--muted); letter-spacing:.02em; }

/* ---------- Steps (how it works) ---------- */
.steps{ display:grid; gap:var(--sp-6); grid-template-columns:repeat(4,1fr); counter-reset:step; }
@media (max-width:900px){ .steps{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .steps{ grid-template-columns:1fr; } }
.step{ position:relative; }
.step__n{ display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:50%;
  border:1.5px solid var(--leaf); color:var(--leaf); font-weight:var(--w-bold); margin-bottom:var(--sp-4); }
.section--deep .step__n{ border-color:var(--sage); color:var(--sage); }

/* ---------- Cart drawer ---------- */
.scrim{ position:fixed; inset:0; background:rgba(26,38,30,.4); opacity:0; visibility:hidden; z-index:140;
  transition:opacity var(--dur-base) var(--ease-out-soft), visibility 0s linear var(--dur-base); }
.scrim.open{ opacity:1; visibility:visible; transition:opacity var(--dur-base) var(--ease-out-soft); }
/* closed drawer is visibility:hidden so its links are never tab-reachable;
   visibility flips instantly on open and only after the slide-out on close */
.drawer{ position:fixed; top:0; right:0; bottom:0; width:min(420px,92vw); background:var(--bg); z-index:150;
  transform:translateX(100%); visibility:hidden; display:flex; flex-direction:column; box-shadow:-20px 0 50px rgba(31,70,47,.16);
  transition:transform var(--dur-slow) var(--ease-drawer), visibility 0s linear var(--dur-slow); }
.drawer.open{ transform:none; visibility:visible; transition:transform var(--dur-slow) var(--ease-drawer); }
.drawer__head{ display:flex; align-items:center; justify-content:space-between; padding:var(--sp-6); border-bottom:1px solid var(--hairline); }
.drawer__body{ flex:1; overflow:auto; padding:var(--sp-6); display:flex; flex-direction:column; gap:var(--sp-4); }
.drawer__foot{ padding:var(--sp-6); border-top:1px solid var(--hairline); background:var(--surface); }
.line-item{ display:flex; gap:var(--sp-3); align-items:center; }
.line-item img{ width:84px; aspect-ratio:16/9; object-fit:cover; border-radius:8px; }
.cart-count{ display:inline-grid; place-items:center; min-width:20px; height:20px; padding:0 5px; border-radius:999px;
  background:var(--leaf); color:#fff; font-size:11px; font-weight:var(--w-bold); }

/* ---------- Forms / stepper ---------- */
.stepper{ display:flex; gap:var(--sp-2); margin-bottom:var(--sp-8); flex-wrap:wrap; }
.stepper li{ display:flex; align-items:center; gap:8px; font-size:var(--t-body-sm); color:var(--muted); font-weight:var(--w-med); }
.stepper .dot{ width:26px; height:26px; border-radius:50%; display:grid; place-items:center; border:1.5px solid var(--hairline); font-size:12px; }
.stepper li[data-state="current"]{ color:var(--heading); }
.stepper li[data-state="current"] .dot{ border-color:var(--deep); color:var(--deep); font-weight:var(--w-bold); }
.stepper li[data-state="done"] .dot{ background:var(--leaf); border-color:var(--leaf); color:#fff; }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:var(--sp-4); min-width:0; }
.field label{ font-size:var(--t-body-sm); font-weight:var(--w-med); color:var(--heading); }
.field input,.field select,.field textarea{ width:100%; max-width:100%; padding:13px 14px; border:1.5px solid var(--hairline); border-radius:var(--r-input);
  background:#fff; transition:border-color var(--dur-fast) var(--ease-out-soft), box-shadow var(--dur-fast) var(--ease-out); }
.field input:focus-visible,.field textarea:focus-visible{ outline:none; border-color:var(--leaf); box-shadow:0 0 0 3px rgba(102,155,63,.18); }

/* ---------- Lightbox dialog ---------- */
dialog.lightbox{ border:none; padding:0; background:transparent; max-width:min(920px,94vw); width:100%; }
dialog.lightbox::backdrop{ background:rgba(26,38,30,.62); }
.lightbox__inner{ position:relative; border-radius:var(--r-card); overflow:hidden; background:var(--deep); box-shadow:var(--shadow-hover); }
.lightbox__media{ position:relative; aspect-ratio:16/9; background:#13251a; }
.lightbox__media img,.lightbox__media video{ width:100%; height:100%; object-fit:cover; }
.lightbox__bar{ display:flex; align-items:center; justify-content:space-between; gap:var(--sp-4); padding:var(--sp-4) var(--sp-6); background:var(--surface); }
.lightbox__close{ position:absolute; top:10px; right:10px; z-index:2; width:38px; height:38px; border-radius:50%;
  background:rgba(26,38,30,.55); color:#fff; display:grid; place-items:center; }
@supports (overflow:clip){
  dialog.lightbox[open]{ animation:lbIn var(--dur-slow) var(--ease-out); }
  @keyframes lbIn{ from{ opacity:0; transform:scale(.95);} to{ opacity:1; transform:none; } }
}
@media (prefers-reduced-motion:reduce){ dialog.lightbox[open]{ animation:none; } }

/* ---------- Footer ---------- */
.footer{ background:var(--deep); color:var(--on-dark); padding-block:var(--sp-20) var(--sp-8); }
.footer a{ color:var(--on-dark-muted); }
@media (hover:hover){ .footer a:hover{ color:var(--on-dark); } }
.footer__top{ display:flex; flex-wrap:wrap; gap:var(--sp-12); justify-content:space-between; }
.footer__brand img{ height:34px; margin-bottom:var(--sp-4); }
.footer__motif{ font-size:var(--t-body-sm); letter-spacing:.16em; color:var(--sage); text-transform:uppercase; }
.footer__cols{ display:flex; gap:var(--sp-16); flex-wrap:wrap; }
/* .footer__head = same look as the old h4 column titles (pages use <p class="footer__head">) */
.footer__cols h4,.footer__head{ color:var(--on-dark); font-size:var(--t-body-sm); font-weight:var(--w-semi); margin-bottom:var(--sp-3); }
.footer__cols a{ display:block; font-size:var(--t-body-sm); padding:5px 0; }
.footer__bottom{ display:flex; flex-wrap:wrap; gap:var(--sp-4); justify-content:space-between; align-items:center;
  margin-top:var(--sp-16); padding-top:var(--sp-6); border-top:1px solid rgba(255,255,255,.12);
  font-size:var(--t-eyebrow); letter-spacing:.06em; color:var(--on-dark-muted); }
/* small screens: stack the brand over the columns and tighten the column gap
   so 3 columns never clip (64px gaps don't fit in ~342px of content width) */
@media (max-width:720px){
  .footer{ padding-block:var(--sp-12) var(--sp-6); }
  .footer__top{ flex-direction:column; gap:var(--sp-6); }
  .footer__brand{ text-align:left; }
  .footer__cols{
    flex-direction:column; gap:0; width:100%;
    border-top:1px solid rgba(255,255,255,.10);
  }
  .footer__cols > div{
    border-bottom:1px solid rgba(255,255,255,.10);
  }
  .footer__cols .footer__head{
    display:flex; align-items:center; justify-content:space-between;
    margin:0; padding:var(--sp-4) 0; cursor:pointer; user-select:none;
    font-size:var(--t-body); letter-spacing:.02em;
  }
  .footer__cols .footer__head::after{
    content:""; width:10px; height:10px; margin-left:var(--sp-3);
    border-right:1.5px solid var(--on-dark);
    border-bottom:1.5px solid var(--on-dark);
    transform:rotate(45deg) translate(-2px,-2px);
    transition:transform var(--dur-base) var(--ease-out);
  }
  .footer__cols > div.is-open .footer__head::after{
    transform:rotate(-135deg) translate(-2px,-2px);
  }
  .footer__cols > div > a{
    display:none; padding:var(--sp-2) 0; font-size:var(--t-body-sm);
  }
  .footer__cols > div.is-open > a{ display:block; }
  .footer__cols > div.is-open{ padding-bottom:var(--sp-3); }
  .footer__bottom{
    flex-direction:column; align-items:flex-start; gap:var(--sp-3);
    margin-top:var(--sp-8); padding-top:var(--sp-5); text-align:left;
  }
}

/* ---------- FAQ (objection handling near CTA) ---------- */
.faq details{ border-bottom:1px solid var(--hairline); padding:var(--sp-4) 0; }
.faq summary{ display:flex; justify-content:space-between; gap:var(--sp-4); cursor:pointer; font-weight:var(--w-semi); color:var(--heading); list-style:none; }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary .icon{ transition:transform var(--dur-base) var(--ease-out); }
.faq details[open] summary .icon{ transform:rotate(45deg); }
.faq p{ margin-top:var(--sp-3); color:var(--muted); max-width:64ch; }

/* banded CTA */
.cta-band{ text-align:center; }
.cta-band .container{ max-width:760px; }
