/* ============================================================
   NutraHealth — Central Legal & Suporte
   Aesthetic: editorial cream + high-contrast serif (landing DNA)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root{
  /* surfaces */
  --cream:        #f1ecdf;
  --cream-2:      #ebe5d4;
  --paper:        #f7f4ec;
  --line:         #ddd6c4;
  --line-soft:    #e6e0d0;

  /* ink */
  --ink:          #20201b;
  --ink-2:        #3c3d34;
  --muted:        #6a6c5d;
  --muted-2:      #8a8c7c;

  /* brand greens */
  --forest:       #1c4a2b;
  --forest-deep:  #143620;
  --forest-soft:  #4f6b4a;
  --lime:         #a7ce3f;
  --lime-ink:     #2a3d10;

  /* signal */
  --amber:        #8a6d2f;
  --amber-bg:     #efe6cf;
  --amber-line:   #d9c694;
  --red:          #9b3b2e;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --maxw: 1280px;
  --rail-w: 280px;

  --shadow-sm: 0 1px 2px rgba(30,32,20,.05), 0 2px 8px rgba(30,32,20,.04);
  --shadow-md: 0 8px 30px rgba(30,32,20,.08);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Hanken Grotesk', system-ui, -apple-system, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

/* paper texture / vignette behind everything */
body::before{
  content:"";
  position: fixed; inset: 0;
  background:
    radial-gradient(120% 80% at 85% -10%, rgba(167,206,63,.07), transparent 55%),
    radial-gradient(90% 70% at 10% 110%, rgba(28,74,43,.06), transparent 55%);
  pointer-events: none; z-index: 0;
}

/* ---------- top bar ---------- */
.topbar{
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  border-bottom: 1px solid var(--line-soft);
}
.topbar__inner{
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand{ display: flex; align-items: center; gap: 11px; }
.brand__logo{
  width: 32px; height: 32px; border-radius: 9px; display: block;
  border: 1px solid var(--line); box-shadow: 0 1px 3px rgba(30,32,20,.12);
}
.brand__name{
  font-weight: 700; letter-spacing: .14em; font-size: 13.5px;
  color: var(--forest); text-transform: uppercase;
}
.topnav{ display: flex; align-items: center; gap: 26px; }
.topnav__links{ display: flex; align-items: center; gap: 26px; white-space: nowrap; }
.topnav a{
  font-size: 13px; letter-spacing: .04em; color: var(--muted);
  font-weight: 600; transition: color .18s;
}
.topnav a:hover{ color: var(--forest); }
.btn-pill{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--r-pill);
  background: var(--lime); color: var(--lime-ink);
  font-weight: 700; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid color-mix(in srgb, var(--lime) 70%, #000 6%);
  transition: transform .15s, box-shadow .2s;
}
.btn-pill:hover{ transform: translateY(-1px); box-shadow: 0 6px 18px rgba(167,206,63,.35); }
.btn-ghost{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--r-pill);
  border: 1px solid var(--line); color: var(--forest);
  font-weight: 600; font-size: 12.5px; letter-spacing: .04em;
  background: transparent; cursor: pointer; transition: background .18s, border-color .18s;
}
.btn-ghost:hover{ background: var(--paper); border-color: var(--forest-soft); }

/* ---------- hero ---------- */
.hero{
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  padding: 64px 28px 30px;
  display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 56px; align-items: start;
}
.hero__copy{ min-width: 0; }
.eyebrow{
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--forest-soft); font-weight: 700; margin: 0 0 18px;
}
.hero h1{
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(48px, 6.6vw, 96px); line-height: 1.03;
  letter-spacing: -.015em; margin: 0 0 30px; color: var(--ink);
  max-width: 13ch;
}

/* ---------- hero score ring (faithful port of ScoreRing) ---------- */
.hero__ring{
  position: relative; flex: none; align-self: center;
  width: clamp(300px, 36vw, 460px); aspect-ratio: 1;
  display: grid; place-items: center;
}
/* hero media: ring underneath, video on top that dissolves to reveal ring */
.hero__media{
  position: relative; flex: none; align-self: center; justify-self: center;
  width: clamp(260px, 30vw, 380px); aspect-ratio: 1;
  display: grid; place-items: center;
  transform: translate(-48px, -120px);
}
.hero__media .hero__ring{ position: absolute; inset: 0; width: 100%;
  opacity: 0; transition: opacity 2.4s ease; transform: scale(1.22) translateY(26px); }
.hero__media.ring-on .hero__ring{ opacity: 1; }
.hero__video{
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  opacity: 1; transition: opacity 1.6s ease;
  pointer-events: none;
  transform: translateY(-54px);
}
.hero__video.is-gone{ opacity: 0; }
.hero__video video{
  width: auto; height: 90%; max-width: 100%; object-fit: contain; display: block;
  border-radius: 28px;
}
.ring-svg{
  width: 100%; height: 100%; display: block; overflow: visible;
  transform-origin: 50% 50%;
  animation: nhBreath 4.6s cubic-bezier(.45,0,.55,1) infinite;
}
.ring-halo{
  animation: nhHalo 4.6s cubic-bezier(.45,0,.55,1) 2.3s infinite;
}
.ring-arc{
  --off: 168.9;
  stroke-dasharray: 1055.58; stroke-dashoffset: var(--off);
  animation: nhDraw 1.6s cubic-bezier(.42,0,.18,1) .25s both;
}
@keyframes nhBreath{ 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.028); } }
@keyframes nhHalo{ 0%,100%{ opacity: .55; } 50%{ opacity: 1; } }
@keyframes nhDraw{ from{ stroke-dashoffset: 1055.58; } to{ stroke-dashoffset: var(--off); } }

.ring-center{
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 0 24%;
}
.ring-num{
  font-family: var(--serif); font-weight: 400; color: oklch(0.18 0.02 150);
  font-size: clamp(64px, 9.5vw, 104px); line-height: .9; letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  animation: nhScore 4.6s cubic-bezier(.45,0,.55,1) infinite;
}
@keyframes nhScore{ 0%,100%{ opacity: 1; } 50%{ opacity: .72; } }
.ring-label{
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: oklch(0.38 0.06 150); font-weight: 700; margin-top: 10px;
}
.ring-cap{
  font-size: 11.5px; letter-spacing: .02em; color: oklch(0.38 0.06 150 / .7);
  margin-top: 16px; line-height: 1.45; max-width: 19ch; font-weight: 500;
}
.hero p.lede{
  margin: 28px 0 0; max-width: 56ch;
  font-size: clamp(16px, 1.6vw, 19px); color: var(--ink-2); line-height: 1.55;
}
.hero__meta{
  margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-size: 13px; color: var(--muted); letter-spacing: .02em;
}
.hero__meta b{ color: var(--forest); font-weight: 700; }

/* medical callout */
.medcallout{
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 28px auto 0; padding: 0 28px;
}
.medcallout__box{
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--amber-bg); border: 1px solid var(--amber-line);
  border-radius: var(--r-md); padding: 18px 22px;
  color: #5e4f24;
}
.medcallout__box .i{
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--amber); color: var(--amber);
  display: grid; place-items: center; font-weight: 700; font-style: italic;
  font-family: var(--serif); font-size: 16px; margin-top: 1px;
}
.medcallout__box p{ margin: 0; font-size: 14.5px; line-height: 1.5; }
.medcallout__box b{ color: #5e4f24; }

/* ---------- layout: rail + main ---------- */
.shell{
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto; padding: 46px 28px 90px;
  display: grid; grid-template-columns: var(--rail-w) 1fr; gap: 54px; align-items: start;
}

/* left rail */
.rail{ position: sticky; top: 92px; }
.rail__label{
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 700; margin: 0 0 14px; padding-left: 14px;
}
.docnav{ display: flex; flex-direction: column; gap: 2px; }
.docnav button{
  appearance: none; border: none; background: transparent; cursor: pointer;
  text-align: left; width: 100%;
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: var(--r-sm);
  font-family: var(--sans); font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  letter-spacing: .005em; position: relative; transition: background .16s, color .16s;
}
.docnav button .num{
  font-family: var(--serif); font-size: 15px; font-weight: 600;
  color: var(--muted-2); width: 18px; flex: none; font-feature-settings: "lnum";
}
.docnav button:hover{ background: var(--paper); color: var(--ink); }
.docnav button.active{ background: var(--forest); color: #f3efe4; }
.docnav button.active .num{ color: var(--lime); }

.rail__sub{
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft);
}
.subtoc{ display: flex; flex-direction: column; gap: 1px; }
.subtoc a{
  font-size: 13px; color: var(--muted); padding: 6px 14px; border-radius: 6px;
  border-left: 2px solid transparent; transition: color .15s, border-color .15s;
}
.subtoc a:hover{ color: var(--forest); }
.subtoc a.active{ color: var(--forest); border-left-color: var(--lime); font-weight: 600; }

/* mobile doc selector (hidden on desktop) */
.docselect{ display: none; }

/* ---------- main panel / documents ---------- */
.main{ min-width: 0; }
.doc{ display: none; animation: fade .4s ease; }
.doc.active{ display: block; }
@keyframes fade{ from{ opacity: 0; transform: translateY(8px);} to{ opacity:1; transform:none; } }

.doc__head{ margin-bottom: 8px; }
.doc__kicker{
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--forest-soft); font-weight: 700; margin: 0 0 12px;
}
.doc h2.doc__title{
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 4.6vw, 56px); line-height: 1.02; letter-spacing: -.01em;
  margin: 0; color: var(--ink); text-wrap: balance;
}
.doc__updated{ margin: 16px 0 0; font-size: 13px; color: var(--muted); }
.doc__rule{ height: 1px; background: var(--line); border: 0; margin: 30px 0 34px; }

/* section blocks */
.sec{ scroll-margin-top: 100px; margin-bottom: 40px; }
.sec__h{
  display: flex; align-items: baseline; gap: 16px; margin: 0 0 14px;
}
.sec__n{
  font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--lime);
  flex: none; width: 1.6em;
}
.sec__t{
  font-family: var(--serif); font-weight: 600; font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.12; color: var(--ink); margin: 0; letter-spacing: -.005em;
}
.sec p{ margin: 0 0 14px; font-size: 15.5px; color: var(--ink-2); max-width: 70ch; }
.sec p:last-child{ margin-bottom: 0; }
.sec h4{
  font-family: var(--sans); font-weight: 700; font-size: 14px; color: var(--forest);
  letter-spacing: .02em; margin: 22px 0 8px;
}
.sec ul, .sec ol{ margin: 6px 0 16px; padding-left: 0; max-width: 70ch; list-style: none; }
.sec ul li, .sec ol li{
  position: relative; padding-left: 26px; margin-bottom: 9px;
  font-size: 15px; color: var(--ink-2); line-height: 1.55;
}
.sec ul li::before{
  content:""; position: absolute; left: 6px; top: 11px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--lime);
}
.sec ol{ counter-reset: li; }
.sec ol li::before{
  counter-increment: li; content: counter(li);
  position: absolute; left: 0; top: 0;
  font-family: var(--serif); font-weight: 600; color: var(--forest-soft); font-size: 15px;
}
.sec a.inline{ color: var(--forest); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line); }
.sec a.inline:hover{ text-decoration-color: var(--forest); }
.sec strong{ color: var(--ink); font-weight: 700; }

/* definition / data table */
.dtable{
  border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  background: var(--paper); margin: 8px 0 18px;
}
.dtable .row{ display: grid; grid-template-columns: 220px 1fr; gap: 0; border-top: 1px solid var(--line-soft); }
.dtable .row:first-child{ border-top: 0; }
.dtable .k{ padding: 14px 18px; font-weight: 700; font-size: 14px; color: var(--forest); background: color-mix(in srgb, var(--forest) 5%, transparent); }
.dtable .v{ padding: 14px 18px; font-size: 14.5px; color: var(--ink-2); }

/* note card inside docs */
.notecard{
  border: 1px solid var(--line); background: var(--paper);
  border-radius: var(--r-md); padding: 18px 22px; margin: 4px 0 18px;
  border-left: 3px solid var(--lime);
}
.notecard.warn{ border-left-color: var(--amber); background: var(--amber-bg); border-color: var(--amber-line); }
.notecard p{ margin: 0; font-size: 14.5px; }
.notecard .tag{
  display: inline-block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--forest); margin-bottom: 6px;
}
.notecard.warn .tag{ color: var(--amber); }

/* ---------- support / FAQ ---------- */
.support-intro{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 6px 0 36px;
}
.chan{
  border: 1px solid var(--line); background: var(--paper); border-radius: var(--r-md);
  padding: 22px; transition: transform .18s, box-shadow .2s, border-color .18s; cursor: pointer;
  display: flex; flex-direction: column; gap: 8px;
}
.chan:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--forest-soft); }
.chan__ic{
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--forest) 9%, transparent); color: var(--forest); margin-bottom: 4px;
}
.chan h4{ margin: 0; font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--ink); }
.chan p{ margin: 0; font-size: 13.5px; color: var(--muted); }
.chan .val{ margin-top: 4px; font-size: 14px; font-weight: 700; color: var(--forest); }

.faqsearch{
  display: flex; align-items: center; gap: 12px; margin: 0 0 22px;
  border: 1px solid var(--line); background: var(--paper); border-radius: var(--r-pill);
  padding: 13px 20px;
}
.faqsearch input{
  flex: 1; border: 0; background: transparent; outline: none;
  font-family: var(--sans); font-size: 15px; color: var(--ink);
}
.faqsearch input::placeholder{ color: var(--muted-2); }
.faqsearch svg{ color: var(--muted-2); flex: none; }

.faqgroup__label{
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  color: var(--forest-soft); margin: 26px 0 10px;
}
.faq{ border-top: 1px solid var(--line-soft); }
.faq__item{ border-bottom: 1px solid var(--line-soft); }
.faq__q{
  width: 100%; appearance: none; border: 0; background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 18px 4px; text-align: left;
  font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--ink);
}
.faq__q .plus{
  flex: none; width: 22px; height: 22px; position: relative; transition: transform .25s;
  color: var(--forest);
}
.faq__q .plus::before, .faq__q .plus::after{
  content:""; position: absolute; background: currentColor; border-radius: 2px;
}
.faq__q .plus::before{ left: 0; right: 0; top: 10px; height: 2px; }
.faq__q .plus::after{ top: 0; bottom: 0; left: 10px; width: 2px; transition: opacity .2s; }
.faq__item.open .faq__q .plus{ transform: rotate(90deg); }
.faq__item.open .faq__q .plus::after{ opacity: 0; }
.faq__a{ overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq__a-inner{ padding: 0 4px 20px; font-size: 14.5px; color: var(--ink-2); max-width: 72ch; }
.faq__a-inner p{ margin: 0 0 10px; }
.faq__a-inner p:last-child{ margin: 0; }
.faq__none{ display: none; padding: 26px 4px; color: var(--muted); font-style: italic; }

/* contact form */
.contactgrid{ display: grid; grid-template-columns: 1.1fr 1fr; gap: 42px; align-items: start; }
.field{ margin-bottom: 16px; }
.field label{ display: block; font-size: 13px; font-weight: 700; color: var(--forest); margin-bottom: 7px; letter-spacing: .02em; }
.field input, .field select, .field textarea{
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 12px 14px; outline: none; transition: border-color .16s, box-shadow .16s;
}
.field textarea{ resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--forest-soft); box-shadow: 0 0 0 3px rgba(28,74,43,.08);
}
.field--row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.submit{
  display: inline-flex; align-items: center; gap: 10px; margin-top: 6px;
  background: var(--forest); color: #f3efe4; border: 0; cursor: pointer;
  padding: 14px 28px; border-radius: var(--r-pill); font-family: var(--sans);
  font-weight: 700; font-size: 14.5px; letter-spacing: .04em; transition: background .18s, transform .15s;
}
.submit:hover{ background: var(--forest-deep); transform: translateY(-1px); }
.formnote{ font-size: 12.5px; color: var(--muted); margin: 14px 0 0; }
.contact-aside .chan{ cursor: default; margin-bottom: 14px; }
.contact-aside .chan:hover{ transform: none; box-shadow: var(--shadow-sm); }
.sent{
  display: none; background: color-mix(in srgb, var(--lime) 22%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--lime) 60%, #000 4%);
  border-radius: var(--r-md); padding: 22px; color: var(--lime-ink);
}
.sent.show{ display: block; }
.sent b{ font-family: var(--serif); font-size: 20px; font-weight: 600; display: block; margin-bottom: 4px; }

/* ---------- footer ---------- */
.footer{
  position: relative; z-index: 1; border-top: 1px solid var(--line-soft);
  background: var(--cream-2);
}
.footer__inner{
  max-width: var(--maxw); margin: 0 auto; padding: 54px 28px 46px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer h5{ font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--forest-soft); font-weight: 700; margin: 0 0 16px; }
.footer ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a{ font-size: 14px; color: var(--ink-2); transition: color .15s; cursor: pointer; }
.footer ul a:hover{ color: var(--forest); }
.footer__brand .brand{ margin-bottom: 16px; }
.footer__brand p{ font-size: 13.5px; color: var(--muted); max-width: 34ch; margin: 0; }
.footer__bar{
  border-top: 1px solid var(--line-soft); max-width: var(--maxw); margin: 0 auto;
  padding: 22px 28px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--muted);
}

/* back to top */
.totop{
  position: fixed; right: 26px; bottom: 26px; z-index: 70;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--forest); color: var(--lime); cursor: pointer;
  display: grid; place-items: center; opacity: 0; transform: translateY(12px) scale(.9);
  transition: opacity .25s, transform .25s; box-shadow: var(--shadow-md);
}
.totop.show{ opacity: 1; transform: none; }
.totop:hover{ background: var(--forest-deep); }

/* ---------- responsive ---------- */
@media (max-width: 900px){
  .shell{ grid-template-columns: 1fr; gap: 26px; padding-top: 30px; }
  .rail{ position: static; }
  .docnav, .rail__label, .rail__sub{ display: none; }
  .docselect{
    display: block; width: 100%;
    font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--forest);
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill);
    padding: 14px 18px; outline: none; -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231c4a2b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 20px center;
  }
  .support-intro{ grid-template-columns: 1fr; }
  .contactgrid{ grid-template-columns: 1fr; gap: 28px; }
  .footer__inner{ grid-template-columns: 1fr 1fr; gap: 30px; }
  .topnav .topnav__links{ display: none; }
  .hero{ padding-top: 46px; grid-template-columns: 1fr; gap: 36px; }
  .hero h1{ max-width: 18ch; }
  .hero__ring{ width: min(84vw, 400px); margin: 0 auto; order: 2; }
  .hero__media{ width: min(72vw, 320px); margin: 0 auto; order: 2; transform: none; }
  .dtable .row{ grid-template-columns: 1fr; }
  .dtable .k{ border-bottom: 1px solid var(--line-soft); }
}
@media (max-width: 600px){
  .topbar__inner, .hero, .medcallout, .shell, .footer__inner, .footer__bar{ padding-left: 18px; padding-right: 18px; }
  .field--row{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr; gap: 28px; }
  .totop{ right: 16px; bottom: 16px; }
  /* hero scales down */
  .hero{ padding-top: 20px; gap: 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero__copy{ display: contents; }
  .hero h1{ order: 1; font-size: clamp(28px, 8.2vw, 38px); line-height: 1.08; margin: 0; max-width: 14ch; }
  .hero__media{ order: 2; width: 100%; max-width: 300px; height: 300px; aspect-ratio: auto; margin: 4px auto 0; transform: none; position: relative; }
  .hero__media .hero__ring{ inset: 0; transform: none; }
  .hero__video{ inset: 0; transform: none; }
  .hero__video video{ height: 100%; max-height: none; width: auto; }
  .hero p.lede{ order: 3; margin: 4px auto 0; font-size: 15.5px; max-width: 42ch; }
  .hero .btnrow{ order: 4; gap: 10px; margin-top: 22px; justify-content: center; }
  .hero .poslabel{ order: 5; margin-top: 18px; font-size: 13.5px; }
  .hero .credbadge{ order: 6; margin-top: 18px; }
  .btn{ padding: 13px 22px; font-size: 14px; }
  /* section rhythm */
  .section{ padding: 56px 0; }
  .section--tight{ padding: 44px 0; }
  .sec-head{ margin-bottom: 36px; }
  .h2{ font-size: clamp(28px, 7.6vw, 40px); }
  .lead{ font-size: 16px; margin-top: 18px; }
  /* legal hero meta + title */
  .doc h2.doc__title{ font-size: clamp(28px, 8vw, 40px); }
  .hero__meta{ gap: 8px 16px; font-size: 12.5px; }
  /* footer tidy */
  .footer__inner{ padding-top: 44px; padding-bottom: 36px; }
}
@media (max-width: 430px){
  .hero h1{ font-size: clamp(32px, 12vw, 44px); }
  .credbadge{ font-size: 12.5px; padding: 8px 14px; }
  .statband{ grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .chip{ font-size: 12.5px; padding: 8px 14px; }
  .lifestyle__title{ font-size: clamp(26px, 8vw, 36px); }
}

@media (max-width: 540px){
  .credbadge{ white-space: normal; }
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation: none !important; transition: none !important; }
}

/* ============================================================
   SITE PAGES — shared sections, nav menu, reveals
   ============================================================ */

/* mobile menu button (hidden on desktop) */
.navtoggle{ display: none; }
.mobilemenu{ display: none; }

/* scroll reveal */
[data-reveal]{ opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
[data-reveal].in{ opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"]{ transition-delay: .08s; }
[data-reveal][data-reveal-delay="2"]{ transition-delay: .16s; }
[data-reveal][data-reveal-delay="3"]{ transition-delay: .24s; }
[data-reveal][data-reveal-delay="4"]{ transition-delay: .32s; }

/* layout primitives */
.container{ max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.container--narrow{ max-width: 920px; }
.section{ padding: 104px 0; position: relative; z-index: 1; }
.section--tight{ padding: 72px 0; }
.section--alt{ background: var(--cream-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section--forest{ background: var(--forest-deep); color: #e9ecdf; }

.kicker{
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--forest-soft); font-weight: 700; margin: 0 0 20px;
  display: flex; align-items: center; gap: 12px;
}
.kicker::before{ content:""; width: 26px; height: 1px; background: var(--forest-soft); opacity: .5; }
.section--forest .kicker{ color: var(--lime); }
.section--forest .kicker::before{ background: var(--lime); opacity: .6; }

.h2{
  font-family: var(--serif); font-weight: 500; color: var(--ink);
  font-size: clamp(34px, 4.4vw, 58px); line-height: 1.04; letter-spacing: -.015em;
  margin: 0; max-width: 20ch;
}
.section--forest .h2{ color: #f2efe4; }
.h2--center{ margin-left: auto; margin-right: auto; text-align: center; }
.lead{
  font-size: clamp(17px, 1.7vw, 20px); line-height: 1.55; color: var(--ink-2);
  margin: 24px 0 0; max-width: 60ch;
}
.lead--center{ margin-left: auto; margin-right: auto; text-align: center; }
.section--forest .lead{ color: #cdd4c0; }
.sec-head{ margin-bottom: 56px; }
.sec-head--center{ text-align: center; display: flex; flex-direction: column; align-items: center; }
.sec-head--center .kicker{ justify-content: center; }

/* generic grids */
.grid{ display: grid; gap: 24px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.split{ display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.split--wide-right{ grid-template-columns: .9fr 1.1fr; }

/* buttons */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--r-pill); font-weight: 700; font-size: 14.5px;
  letter-spacing: .03em; cursor: pointer; border: 1px solid transparent;
  transition: transform .15s, box-shadow .2s, background .18s, border-color .18s;
}
.btn--primary{ background: var(--forest); color: #f3efe4; }
.btn--primary:hover{ background: var(--forest-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lime{ background: var(--lime); color: var(--lime-ink); border-color: color-mix(in srgb, var(--lime) 70%, #000 6%); }
.btn--lime:hover{ transform: translateY(-2px); box-shadow: 0 8px 22px rgba(167,206,63,.4); }
.btn--ghost{ border-color: var(--line); color: var(--forest); background: transparent; }
.btn--ghost:hover{ background: var(--paper); border-color: var(--forest-soft); }
.section--forest .btn--ghost{ border-color: rgba(255,255,255,.25); color: #eef0e6; }
.section--forest .btn--ghost:hover{ background: rgba(255,255,255,.08); }
.btnrow{ display: flex; flex-wrap: wrap; gap: 14px; }

/* cards */
.card{
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; transition: transform .22s, box-shadow .24s, border-color .2s;
}
.card--hover:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--forest-soft); }
.card__ic{
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 22px; font-size: 22px;
}
.card__t{ font-family: var(--serif); font-weight: 600; font-size: 25px; color: var(--ink); margin: 0 0 10px; line-height: 1.1; }
.card__d{ font-size: 15px; color: var(--ink-2); margin: 0; line-height: 1.55; }
.card__n{ font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--forest-soft); }

/* pillar accent colors (match app) */
.acc-ex{ background: oklch(0.76 0.17 125 / .16); color: oklch(0.45 0.12 125); }
.acc-sl{ background: oklch(0.70 0.14 75 / .18); color: oklch(0.50 0.12 72); }
.acc-nu{ background: oklch(0.62 0.08 150 / .18); color: oklch(0.40 0.08 150); }
.acc-ex2{ background: oklch(0.30 0.12 148 / .14); color: oklch(0.30 0.12 148); }
.pillar-bar{ height: 3px; border-radius: 3px; margin-top: 24px; }
.bar-ex{ background: oklch(0.66 0.16 125); }
.bar-sl{ background: oklch(0.70 0.14 75); }
.bar-nu{ background: oklch(0.55 0.09 150); }
.bar-ex2{ background: oklch(0.30 0.12 148); }

/* stat */
.stat__n{ font-family: var(--serif); font-weight: 500; font-size: clamp(46px, 6vw, 74px); line-height: .92; color: var(--forest); letter-spacing: -.02em; }
.section--forest .stat__n{ color: var(--lime); }
.stat__l{ font-size: 14.5px; color: var(--muted); margin-top: 10px; max-width: 24ch; }
.section--forest .stat__l{ color: #b9c1ab; }

/* hero variant for inner pages */
.pagehero{ padding: 76px 0 40px; }
.pagehero .h1{
  font-family: var(--serif); font-weight: 500; color: var(--ink);
  font-size: clamp(44px, 6.4vw, 92px); line-height: 1.02; letter-spacing: -.018em;
  margin: 0; max-width: 16ch;
}
.pagehero .lead{ margin-top: 28px; }

/* logo strip / trust */
.trust{ display: flex; flex-wrap: wrap; gap: 14px 18px; align-items: center; }
.chip{
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px;
  border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--paper);
  font-size: 13.5px; font-weight: 600; color: var(--ink-2); letter-spacing: .01em;
}
.chip .dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }

/* numbered steps */
.steps{ display: grid; gap: 2px; }
.step{ display: grid; grid-template-columns: 84px 1fr; gap: 28px; padding: 34px 0; border-top: 1px solid var(--line); align-items: start; }
.step:last-child{ border-bottom: 1px solid var(--line); }
.step__n{ font-family: var(--serif); font-size: 46px; font-weight: 500; color: var(--lime); line-height: 1; }
.step__t{ font-family: var(--serif); font-size: 27px; font-weight: 600; color: var(--ink); margin: 0 0 8px; }
.step__d{ font-size: 15.5px; color: var(--ink-2); margin: 0; max-width: 60ch; line-height: 1.55; }

/* quote */
.quote{ max-width: 26ch; }
.quote__mark{ font-family: var(--serif); font-size: 58px; line-height: .42; color: var(--lime); display: block; height: auto; margin: 0 0 2px; }
.quote__close{ font-family: var(--serif); color: var(--lime); font-weight: 500; }
.quote__t{ font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 3vw, 38px); line-height: 1.25; color: var(--ink); letter-spacing: -.01em; }
.quote__by{ margin-top: 40px; font-size: 14px; color: var(--muted); }
.quote__by b{ color: var(--forest); font-weight: 700; }
.quote--manifesto{ padding-left: clamp(8px, 4vw, 72px); max-width: none; }
.split--manifesto{ grid-template-columns: 1.25fr .75fr; }
.split--manifesto .quote__t{ max-width: 16ch; font-size: clamp(30px, 3.8vw, 50px); line-height: 1.2; }

/* editorial hero figure (replaces ring on Suporte & Legal) */
.herofig{
  margin: 0; align-self: center; justify-self: center;
  width: clamp(280px, 34vw, 420px); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  position: relative;
}
.herofig img{ width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/5; }
.herofig::after{
  content:""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(20,32,16,.28));
}
@media (max-width: 900px){
  .herofig{ width: min(80vw, 360px); margin: 0 auto; order: 2; }
}
@media (max-width: 900px){
  .quote--manifesto{ padding-left: 0; }
  .split--manifesto{ grid-template-columns: 1fr; }
}
.section--forest .quote__t{ color: #f2efe4; }
.section--forest .quote__by{ color: #b9c1ab; }
.section--forest .quote__by b{ color: var(--lime); }

/* reference list */
.reflist{ list-style: none; margin: 0; padding: 0; }
.reflist li{ display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line-soft); font-size: 14.5px; color: var(--ink-2); }
.reflist li:first-child{ border-top: 0; }
.reflist .org{ font-weight: 700; color: var(--forest); white-space: nowrap; }

/* mini score panel (image placeholder substitute for app screens) */
.appshot{
  border-radius: 26px; border: 1px solid var(--line); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(28,74,43,.04) 14px 15px),
    var(--paper);
  aspect-ratio: 9/16; display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.appshot__ph{ text-align: center; color: var(--muted-2); font-family: var(--mono, ui-monospace, monospace); font-size: 12px; letter-spacing: .04em; padding: 24px; }
.appshot--wide{ aspect-ratio: 4/3; }

/* CTA band */
.ctaband{ text-align: center; }
.ctaband .h2{ margin: 0 auto; }

/* divider dot row */
.metarow{ display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 14px; color: var(--muted); }
.metarow b{ color: var(--forest); font-weight: 700; }

/* responsive for site sections */
@media (max-width: 980px){
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .split, .split--wide-right{ grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px){
  .navtoggle{
    display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px;
    align-items: center; justify-content: center; border: 1px solid var(--line);
    border-radius: 11px; background: var(--paper); cursor: pointer; margin-left: 4px;
  }
  .navtoggle span{ width: 18px; height: 2px; background: var(--forest); border-radius: 2px; transition: transform .25s, opacity .2s; }
  .navtoggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .navtoggle.is-open span:nth-child(2){ opacity: 0; }
  .navtoggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .topnav .btn-pill{ display: none; }
  .mobilemenu:not([hidden]){
    display: flex; flex-direction: column; gap: 2px; padding: 10px 18px 20px;
    border-top: 1px solid var(--line-soft); background: var(--cream);
  }
  .mobilemenu a{ padding: 13px 6px; font-size: 16px; font-weight: 600; color: var(--ink-2); border-bottom: 1px solid var(--line-soft); }
  .mobilemenu a.active{ color: var(--forest); }
  .mobilemenu__cta{ margin-top: 12px; border: 0 !important; background: var(--lime); color: var(--lime-ink) !important; border-radius: var(--r-pill); text-align: center; font-weight: 700 !important; }
  .section{ padding: 76px 0; }
  .step{ grid-template-columns: 60px 1fr; gap: 18px; }
  .step__n{ font-size: 36px; }
}
@media (max-width: 640px){
  .grid-3, .grid-4, .grid-2{ grid-template-columns: 1fr; }
  .container{ padding: 0 18px; }
}

/* phone frame for real app screenshots */
.phone{
  width: 100%; max-width: 290px; margin: 0 auto;
  border-radius: 42px; padding: 7px; background: #16180f;
  box-shadow: 0 30px 60px -20px rgba(20,32,16,.45), 0 8px 20px rgba(20,32,16,.18);
}
.phone img{ width: 100%; display: block; border-radius: 35px; }
.phonewrap{ display: grid; place-items: center; }
.phonewrap--tilt .phone{ transform: rotate(-2deg); transition: transform .4s; }
.phonewrap--tilt:hover .phone{ transform: rotate(0); }
/* nudge hero phone away from the right edge */
.hero__phone-nudge{ margin-right: 60px; }
@media (max-width: 900px){ .hero__phone-nudge{ margin-right: 0; } }

/* two-phone fanned pair */
.phonepair{ position: relative; display: flex; justify-content: center; align-items: center; padding: 18px 0; }
.phonepair .phone{ width: 208px; max-width: 46%; box-shadow: 0 24px 50px -22px rgba(20,32,16,.5), 0 6px 16px rgba(20,32,16,.16); }
.phonepair__back{ transform: rotate(-5deg); z-index: 1; }
.phonepair__front{ margin-left: -52px; margin-top: 46px; transform: rotate(4deg); z-index: 2; transition: transform .35s; }
.phonepair:hover .phonepair__front{ transform: rotate(4deg) translateY(-8px); }
@media (max-width: 480px){
  .phonepair .phone{ width: 160px; }
  .phonepair__front{ margin-left: -40px; margin-top: 34px; }
}

/* ---------- language switcher ---------- */
.langswitch{
  display: inline-flex; align-items: center; gap: 2px;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 3px; background: var(--paper);
}
.langswitch button{
  appearance: none; border: 0; background: transparent; cursor: pointer;
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .06em;
  color: var(--muted); padding: 6px 11px; border-radius: var(--r-pill);
  transition: background .16s, color .16s;
}
.langswitch button:hover{ color: var(--forest); }
.langswitch button.active{ background: var(--forest); color: #f3efe4; }
.langswitch--mobile{ margin-top: 14px; align-self: flex-start; }

/* ---------- hero positioning label ---------- */
.credbadge{
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 24px;
  padding: 8px 16px 8px 9px; border-radius: var(--r-pill);
  background: var(--paper); border: 1px solid var(--line);
  font-size: 13.5px; font-weight: 700; color: var(--forest); letter-spacing: .01em;
  white-space: nowrap; max-width: 100%;
}
.credbadge__ic{
  width: 24px; height: 24px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: var(--forest); color: var(--lime);
}
.credbadge em{ font-style: normal; font-weight: 500; color: var(--muted); }
.poslabel{
  margin: 30px 0 0; font-size: 15px; color: var(--muted); letter-spacing: .01em;
  max-width: 46ch; line-height: 1.5;
}
.poslabel b{ color: var(--forest); font-weight: 700; }

/* ---------- footer social ---------- */
.social{ display: flex; gap: 10px; margin-top: 22px; }
.social a{
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--forest-soft); background: var(--paper);
  transition: transform .16s, background .18s, color .18s, border-color .18s;
}
.social a:hover{ transform: translateY(-2px); background: var(--forest); color: var(--lime); border-color: var(--forest); }

/* ---------- social proof / testimonials ---------- */
.statband{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.statband .stat{ text-align: center; }
.statband .stat__l{ margin-left: auto; margin-right: auto; }
.proof-note{ font-size: 12px; color: var(--muted-2); letter-spacing: .04em; margin-top: 36px; text-align: center; }

.tcard{
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; display: flex; flex-direction: column; gap: 20px; height: 100%;
  transition: transform .22s, box-shadow .24s;
}
.tcard--hover:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard__stars{ display: flex; gap: 3px; color: var(--lime); }
.tcard__q{ font-family: var(--serif); font-size: 21px; line-height: 1.32; color: var(--ink); margin: 0; font-weight: 500; letter-spacing: -.005em; }
.tcard__by{ display: flex; align-items: center; gap: 13px; margin-top: auto; }
.tavatar{
  width: 48px; height: 48px; border-radius: 50%; flex: none; object-fit: cover;
  border: 1px solid var(--line); background: var(--cream-2);
  display: grid; place-items: center; font-family: var(--serif); font-weight: 600;
  font-size: 19px; color: var(--forest); overflow: hidden;
}
.tavatar img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.tname{ font-weight: 700; font-size: 15px; color: var(--ink); }
.tmeta{ font-size: 13px; color: var(--muted); margin-top: 2px; }
.illus-tag{
  display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; font-weight: 700; color: var(--muted-2);
  border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px 10px; align-self: flex-start;
}
.illus-tag::before{ content:""; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); }

@media (max-width: 980px){
  .statband{ grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}
@media (max-width: 900px){
  .langswitch:not(.langswitch--mobile){ display: none; }
}
@media (max-width: 640px){
  .statband{ grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   LIFESTYLE — cinematic full-bleed rotating band
   ============================================================ */
.lifestyle{
  position: relative; z-index: 1; overflow: hidden;
  min-height: 88vh; display: flex; align-items: flex-end;
  background: var(--forest-deep);
}
.lifestyle__slides{ position: absolute; inset: 0; }
.lifestyle__slide{
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.3s ease;
}
.lifestyle__slide.is-active{ opacity: 1; animation: lsKen 7s ease-out both; }
@keyframes lsKen{ from{ transform: scale(1.08); } to{ transform: scale(1); } }
.lifestyle__overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,22,12,.30) 0%, rgba(16,22,12,0) 28%, rgba(16,22,12,0) 42%, rgba(16,22,12,.82) 100%),
    linear-gradient(75deg, rgba(16,22,12,.55) 0%, rgba(16,22,12,.12) 48%, rgba(16,22,12,0) 70%);
}
.lifestyle__content{
  position: relative; z-index: 2; padding-top: 120px; padding-bottom: 64px; color: #f4f1e6;
}
.lifestyle__eyebrow{
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase; font-weight: 700;
  color: var(--lime); margin: 0 0 18px; display: flex; align-items: center; gap: 12px;
}
.lifestyle__eyebrow::before{ content:""; width: 26px; height: 1px; background: var(--lime); opacity: .7; }
.lifestyle__title{
  font-family: var(--serif); font-weight: 500; letter-spacing: -.015em; line-height: 1.0;
  font-size: clamp(40px, 6vw, 86px); margin: 0; max-width: 16ch; text-shadow: 0 2px 30px rgba(10,16,8,.4);
}
.lifestyle__capwrap{ position: relative; height: 3.4em; margin-top: 26px; max-width: 46ch; }
.lifestyle__cap{
  position: absolute; inset: 0; margin: 0; font-size: clamp(16px, 1.7vw, 20px); line-height: 1.45;
  color: #e7e6d6; opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease;
}
.lifestyle__cap.is-active{ opacity: 1; transform: none; }
.lifestyle__cap b{ color: #fff; font-weight: 700; }
.lifestyle__dots{ display: flex; gap: 10px; margin-top: 30px; }
.lifestyle__dot{
  width: 36px; height: 4px; border-radius: 4px; border: 0; padding: 0; cursor: pointer;
  background: rgba(244,241,230,.3); transition: background .25s; appearance: none;
}
.lifestyle__dot.is-active{ background: var(--lime); }
.lifestyle__dot:hover{ background: rgba(244,241,230,.55); }
@media (max-width: 700px){
  .lifestyle{ min-height: 78vh; }
  .lifestyle__content{ padding-top: 90px; padding-bottom: 48px; }
  .lifestyle__capwrap{ height: 4.4em; }
}

/* ============================================================
   VIDEO SHOWCASE — phone mockups carousel (only active plays)
   ============================================================ */
.vshow__rail{
  display: flex; gap: 22px; justify-content: center; align-items: flex-end;
  flex-wrap: wrap; margin-top: 8px;
}
.vphone{
  position: relative; width: 178px; aspect-ratio: 9 / 19.3; flex: none;
  border-radius: 28px; padding: 6px; background: #14160f; cursor: pointer;
  box-shadow: 0 14px 34px -16px rgba(20,32,16,.4); opacity: .58;
  transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .3s, box-shadow .3s;
}
.vphone__screen{ width: 100%; height: 100%; border-radius: 23px; overflow: hidden; background: #0d0f0a; position: relative; }
.vphone video{ width: 100%; height: 100%; object-fit: cover; display: block; }
.vphone__play{
  position: absolute; inset: 0; display: grid; place-items: center; color: #fff;
  background: rgba(13,15,10,.28); transition: opacity .25s; opacity: 1;
}
.vphone__play svg{ width: 38px; height: 38px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.vphone.is-active{ opacity: 1; transform: translateY(-10px) scale(1.06); box-shadow: 0 28px 56px -20px rgba(20,32,16,.5); }
.vphone.is-active .vphone__play{ opacity: 0; pointer-events: none; }
.vphone:not(.is-active):hover{ opacity: .85; transform: translateY(-4px); }
@media (max-width: 760px){
  .vshow__rail{ gap: 14px; }
  .vphone{ width: 132px; }
}
@media (max-width: 460px){
  .vphone{ width: 44%; }
}

/* ============================================================
   HELP WIDGET — floating trilingual FAQ
   ============================================================ */
.nhhelp{ position: fixed; right: 22px; bottom: 22px; z-index: 200; font-family: var(--sans); }
.nhhelp__fab{
  display: inline-flex; align-items: center; gap: 9px;
  height: 52px; padding: 0 20px 0 17px; border: none; cursor: pointer;
  background: var(--forest); color: #f3efe4; border-radius: 999px;
  font-family: var(--sans); font-weight: 700; font-size: 14.5px; letter-spacing: .01em;
  box-shadow: 0 12px 30px -8px rgba(20,40,22,.5); transition: transform .18s, background .2s;
}
.nhhelp__fab:hover{ transform: translateY(-2px); background: var(--forest-deep); }
.nhhelp__fab-close{ display: none; }
.nhhelp.is-open .nhhelp__fab-open{ display: none; }
.nhhelp.is-open .nhhelp__fab-close{ display: block; }
.nhhelp.is-open .nhhelp__fab-label{ display: none; }
.nhhelp.is-open .nhhelp__fab{ padding: 0; width: 52px; justify-content: center; }

.nhhelp__panel{
  position: absolute; right: 0; bottom: 64px; width: min(380px, calc(100vw - 36px));
  background: var(--cream); border: 1px solid var(--line); border-radius: 22px;
  box-shadow: 0 30px 70px -20px rgba(20,32,16,.45); overflow: hidden;
  display: flex; flex-direction: column; max-height: min(620px, calc(100vh - 110px));
  opacity: 0; transform: translateY(12px) scale(.98); transform-origin: bottom right;
  transition: opacity .24s ease, transform .24s cubic-bezier(.22,1,.36,1);
}
.nhhelp.is-open .nhhelp__panel{ opacity: 1; transform: none; }

.nhhelp__head{ padding: 22px 22px 16px; background: var(--forest-deep); color: #eef1e6; }
.nhhelp__brand{ display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); }
.nhhelp__dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.nhhelp__title{ font-family: var(--serif); font-weight: 500; font-size: 25px; line-height: 1.1; margin: 12px 0 4px; color: #f5f2e8; }
.nhhelp__sub{ font-size: 13px; color: #b9c3ad; margin: 0 0 16px; }
.nhhelp__search{ display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 10px 15px; color: #cdd5c2; }
.nhhelp__search input{ flex: 1; border: none; background: transparent; outline: none; color: #f3f2e8; font-family: var(--sans); font-size: 14px; }
.nhhelp__search input::placeholder{ color: #9fab94; }

.nhhelp__body{ overflow-y: auto; padding: 8px 14px 6px; flex: 1; }
.nhhelp__group{ font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--forest-soft); margin: 16px 8px 6px; }
.nhhelp__item{ border-bottom: 1px solid var(--line-soft); }
.nhhelp__item:last-child{ border-bottom: none; }
.nhhelp__q{
  width: 100%; appearance: none; border: none; background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 8px; text-align: left; font-family: var(--sans); font-size: 14.5px; font-weight: 600; color: var(--ink);
}
.nhhelp__chev{ flex: none; width: 16px; height: 16px; position: relative; }
.nhhelp__chev::before, .nhhelp__chev::after{ content: ""; position: absolute; background: var(--forest-soft); border-radius: 2px; transition: transform .22s; }
.nhhelp__chev::before{ left: 1px; right: 1px; top: 7px; height: 2px; }
.nhhelp__chev::after{ top: 1px; bottom: 1px; left: 7px; width: 2px; }
.nhhelp__item.is-open .nhhelp__chev::after{ transform: scaleY(0); }
.nhhelp__a{ max-height: 0; overflow: hidden; transition: max-height .26s ease; }
.nhhelp__a-in{ padding: 0 8px 14px; font-size: 13.5px; line-height: 1.55; color: var(--ink-2); }
.nhhelp__none{ text-align: center; color: var(--muted); font-style: italic; padding: 28px 10px; }

.nhhelp__cta{
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px; background: var(--lime); color: var(--lime-ink);
  font-weight: 700; font-size: 14px; letter-spacing: .02em; text-decoration: none;
  border-top: 1px solid color-mix(in srgb, var(--lime) 60%, #000 8%); transition: filter .18s;
}
.nhhelp__cta:hover{ filter: brightness(.96); }
@media (max-width: 460px){
  .nhhelp{ right: 14px; bottom: 14px; }
  .nhhelp__fab-label{ display: none; }
  .nhhelp__fab{ width: 52px; padding: 0; justify-content: center; }
}
