/* ==========================================================================
   Vital Heroes — Website design system (shared across all pages)
   Built on colors_and_type.css tokens (var(--vh-*)).
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--vh-beige); color: var(--vh-green);
  font-family: var(--vh-font-primary); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--vh-orange); color: #fff; }
:focus-visible { outline: 3px solid var(--vh-orange); outline-offset: 3px; }
.skip { position: fixed; top: -60px; left: 16px; z-index: 200; background: var(--vh-orange); color: #fff;
  padding: 12px 20px; border-radius: var(--vh-r-pill); font-weight: 600; transition: top var(--vh-dur) var(--vh-ease); }
.skip:focus { top: 16px; }

/* ---- Layout primitives ---- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 760px; }
section { position: relative; }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
[id] { scroll-margin-top: 96px; }

/* ---- Section surfaces ---- */
.s-beige { background: var(--vh-beige); color: var(--vh-green); }
.s-white { background: #fff; color: var(--vh-green); }
.s-green { background: var(--vh-green); color: var(--vh-beige); }
.s-orange { background: var(--vh-orange); color: #fff; }

/* ---- Eyebrow tag ---- */
.tag { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px;
  border-radius: var(--vh-r-pill); box-shadow: inset 0 0 0 1.5px currentColor;
  font-family: var(--vh-font-secondary); font-weight: 700; font-size: 11.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--vh-green); }
.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--vh-orange); flex: none; }
.s-green .tag, .s-orange .tag { color: var(--vh-beige); }
.s-orange .tag { color: #fff; }

/* ---- Highlight word ---- */
.hl { color: var(--vh-orange); }
em.hl, .em { font-style: normal; color: var(--vh-orange); }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 32px; border-radius: var(--vh-r-pill); border: 0; cursor: pointer;
  font-family: var(--vh-font-primary); font-weight: 600; font-size: 14px;
  letter-spacing: .05em; text-transform: uppercase; line-height: 1; white-space: nowrap;
  transition: transform var(--vh-dur-fast) var(--vh-ease), background var(--vh-dur) var(--vh-ease),
    color var(--vh-dur) var(--vh-ease), box-shadow var(--vh-dur) var(--vh-ease); }
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(.99); }
.btn--primary { background: var(--vh-orange); color: #fff; }
.btn--primary:hover { background: var(--vh-orange-95); }
.btn--green { background: var(--vh-green); color: var(--vh-beige); }
.btn--green:hover { background: var(--vh-green-80); }
.btn--ghost { background: transparent; color: var(--vh-green); box-shadow: inset 0 0 0 2px var(--vh-green); }
.btn--ghost:hover { background: var(--vh-green); color: var(--vh-beige); }
.btn--light { background: var(--vh-beige); color: var(--vh-green); }
.btn--light:hover { background: #fff; }
.btn--ghost-light { background: transparent; color: var(--vh-beige); box-shadow: inset 0 0 0 2px rgba(227,221,209,.7); }
.btn--ghost-light:hover { background: var(--vh-beige); color: var(--vh-green); }
.btn--sm { padding: 12px 20px; font-size: 12px; }
.btn--lg { padding: 20px 38px; font-size: 15px; }
.btn__price { font-family: var(--vh-font-secondary); font-weight: 700; opacity: .85; }
.btn__price::before { content: "·"; margin-right: .3em; opacity: .7; }

/* ---- Section header ---- */
.sh { max-width: 820px; margin-bottom: clamp(30px, 4vw, 54px); }
.sh--center { margin-inline: auto; text-align: center; }
.sh h2 { font-size: var(--vh-fs-h2); font-weight: 800; line-height: 1.04;
  letter-spacing: -.01em; margin: 18px 0 16px; text-wrap: balance; }
.sh p { font-size: var(--vh-fs-lead); line-height: 1.5; max-width: 640px; margin: 0; opacity: .86; }
.sh--center p { margin-inline: auto; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 60; padding: 20px 0;
  transition: background var(--vh-dur) var(--vh-ease), padding var(--vh-dur) var(--vh-ease),
    box-shadow var(--vh-dur) var(--vh-ease); }
.nav::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,61,54,.55), rgba(0,61,54,0));
  opacity: 1; transition: opacity var(--vh-dur) var(--vh-ease); }
.nav.scrolled { background: var(--vh-green); padding: 12px 0; box-shadow: 0 10px 30px -14px rgba(0,0,0,.45); }
.nav.scrolled::before { opacity: 0; }
.nav--solid { background: var(--vh-green); box-shadow: 0 10px 30px -14px rgba(0,0,0,.45); }
.nav--solid::before { opacity: 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 36px; display: block; transition: height var(--vh-dur) var(--vh-ease); }
.nav.scrolled .nav__logo img { height: 31px; }
.nav__word { font-weight: 800; font-size: 18px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--vh-beige); line-height: 1; }
@media (max-width: 400px) { .nav__word { display: none; } }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--vh-beige); font-size: 14.5px; font-weight: 500; letter-spacing: .01em;
  transition: color var(--vh-dur) var(--vh-ease); }
.nav__links a:hover { color: var(--vh-orange); }
.nav__links a.is-active { color: #fff; }
.nav__links a.is-active::after { content: ""; display: block; height: 2px; margin-top: 3px;
  background: var(--vh-orange); border-radius: 2px; }
.nav__cta { color: #fff !important; }
.nav__burger { display: none; }
.nav__checkbox { position: absolute; opacity: 0; pointer-events: none; }
.nav__scrim { display: none; }

/* mobile nav */
@media (max-width: 900px) {
  .nav__burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 46px; padding: 11px; cursor: pointer; border-radius: var(--vh-r-pill);
    background: rgba(227,221,209,.12); position: relative; z-index: 3; }
  .nav__burger span { display: block; height: 2px; width: 100%; background: var(--vh-beige);
    border-radius: 2px; transition: transform var(--vh-dur) var(--vh-ease), opacity var(--vh-dur) var(--vh-ease); }
  .nav__links { position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px); z-index: 2;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px;
    padding: 90px 34px 40px; background: var(--vh-green);
    box-shadow: -30px 0 60px -30px rgba(0,0,0,.5);
    transform: translateX(100%); transition: transform var(--vh-dur-slow) var(--vh-ease);
    overflow-y: auto; }
  /* Tap-Backdrop: schliesst das Menue beim Tippen ausserhalb (Label = Checkbox aus) */
  .nav__scrim { display: block; position: fixed; inset: 0; z-index: 1; cursor: pointer;
    background: rgba(0, 31, 28, .5); opacity: 0; visibility: hidden;
    transition: opacity var(--vh-dur) var(--vh-ease), visibility 0s linear var(--vh-dur); }
  .nav__checkbox:checked ~ .nav__scrim { opacity: 1; visibility: visible;
    transition: opacity var(--vh-dur) var(--vh-ease); }
  .nav__links a { font-size: 22px; font-weight: 600; padding: 10px 0; width: 100%; }
  .nav__links a.is-active::after { width: 40px; }
  .nav__links .btn { margin-top: 14px; font-size: 14px; }
  .nav__checkbox:checked ~ .nav__links { transform: translateX(0); }
  .nav__checkbox:checked ~ .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__checkbox:checked ~ .nav__burger span:nth-child(2) { opacity: 0; }
  .nav__checkbox:checked ~ .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ==========================================================================
   HERO (shared base)
   ========================================================================== */
.hero { position: relative; background: var(--vh-green); color: var(--vh-beige);
  overflow: hidden; isolation: isolate; }
.hero__photo { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero .container { position: relative; z-index: 2; }

/* ==========================================================================
   CARDS & GRIDS
   ========================================================================== */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* signature one-square-corner */
.card { background: #fff; padding: 32px; border-radius: 30px 30px 30px 0;
  box-shadow: 0 18px 40px -26px rgba(0,61,54,.32); }
.card--bl0 { border-radius: 30px 30px 0 30px; }
.card--green { background: var(--vh-green); color: var(--vh-beige); }
.card--orange { background: var(--vh-orange); color: #fff; }
.card--beige { background: var(--vh-beige); color: var(--vh-green); box-shadow: none; }

/* pain / feature cell */
.cell { background: #fff; border-radius: 26px 26px 26px 0; padding: 30px;
  display: flex; flex-direction: column; gap: 12px; height: 100%; }
.cell__num { font-family: var(--vh-font-secondary); font-weight: 900; font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--vh-orange); }
.cell h3 { font-size: 21px; font-weight: 700; line-height: 1.15; margin: 0; }
.cell p { font-size: 15.5px; line-height: 1.55; margin: 0; color: var(--vh-fg-muted); }
.s-green .cell { background: rgba(227,221,209,.07); }
.s-green .cell p { color: rgba(227,221,209,.82); }
.s-green .cell h3 { color: #fff; }

/* ---- Split (image + copy) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--portrait { grid-template-columns: .85fr 1.15fr; }
.frame { position: relative; overflow: hidden; background: var(--vh-green);
  border-radius: 90px 90px 26px 26px; }
.frame--capsule { border-radius: 200px 200px 30px 30px; }
.frame--soft { border-radius: 40px 40px 40px 0; }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--ratio { aspect-ratio: 3/4; }

.prose h2 { font-size: var(--vh-fs-h2); font-weight: 800; line-height: 1.05; margin: 16px 0 18px; }
.prose p { font-size: 17px; line-height: 1.65; margin: 0 0 14px; max-width: 560px; }
.prose .btn { margin-top: 12px; }

/* ---- Credential chips ---- */
.chips { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.chips li { padding: 9px 15px; border-radius: var(--vh-r-pill); background: #fff; font-size: 13.5px;
  font-weight: 500; box-shadow: inset 0 0 0 1px var(--vh-divider); }
.s-green .chips li { background: rgba(227,221,209,.1); box-shadow: none; color: var(--vh-beige); }

/* ---- Check list ---- */
.checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.checks li { position: relative; padding-left: 34px; font-size: 16px; line-height: 1.5; }
.checks li::before { content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--vh-orange);
  -webkit-mask: no-repeat center / 13px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") ;
          mask: no-repeat center / 13px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-clip: padding-box; }
.checks--x li::before { background: var(--vh-fg-muted);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E"); }

/* ==========================================================================
   PILLARS
   ========================================================================== */
.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.pillar { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.pillar__ring { width: 116px; height: 116px; border-radius: 50%; background: var(--vh-beige);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px -14px rgba(0,0,0,.5); transition: transform var(--vh-dur) var(--vh-ease); }
.pillar:hover .pillar__ring { transform: translateY(-4px); }
.pillar__ring img { width: 78px; height: 78px; object-fit: contain; }
.pillar__num { font-family: var(--vh-font-secondary); font-weight: 700; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--vh-orange); }
.pillar h4 { font-size: 16.5px; font-weight: 700; line-height: 1.2; margin: 0; }
.pillar p { font-size: 13.5px; line-height: 1.4; margin: 0; opacity: .82; }

/* ==========================================================================
   METRICS STRIP (four core measures)
   ========================================================================== */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric { padding: 26px 28px; border-left: 1px solid var(--vh-divider); }
.metric:first-child { border-left: 0; }
.metric__k { font-family: var(--vh-font-secondary); font-weight: 700; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--vh-orange); }
.metric__v { font-size: 20px; font-weight: 700; margin-top: 8px; letter-spacing: -.01em; }
.metric__h { font-size: 13.5px; color: var(--vh-fg-muted); margin-top: 4px; line-height: 1.4; }
.s-green .metric { border-color: rgba(227,221,209,.18); }
.s-green .metric__h { color: rgba(227,221,209,.7); }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.proc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.proc__step { padding: 26px 24px; border-radius: 24px 24px 24px 0; background: rgba(227,221,209,.08); }
.s-white .proc__step, .s-beige .proc__step { background: #fff; box-shadow: 0 16px 36px -26px rgba(0,61,54,.3); }
.proc__num { font-family: var(--vh-font-secondary); font-weight: 900; font-size: 40px; line-height: 1;
  color: var(--vh-orange); margin-bottom: 14px; }
.proc__step h4 { font-size: 18px; font-weight: 700; line-height: 1.15; margin: 0 0 8px; }
.proc__step p { font-size: 14.5px; line-height: 1.55; margin: 0; opacity: .85; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.tst { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tst__card { background: #fff; border-radius: 26px 26px 26px 0; padding: 28px;
  display: flex; flex-direction: column; gap: 18px; }
.tst__q { font-size: 16px; line-height: 1.6; margin: 0; font-weight: 500; text-wrap: pretty; }
.tst__q::before { content: "\201E"; color: var(--vh-orange); font-size: 40px; font-weight: 800;
  line-height: 0; margin-right: 2px; vertical-align: -.35em; }
.tst__by { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--vh-divider); }
.tst__ini { font-family: var(--vh-font-secondary); font-weight: 900; font-size: 18px; color: var(--vh-orange); }
.tst__role { font-size: 12.5px; color: var(--vh-fg-muted); }

/* ==========================================================================
   OFFER CARDS
   ========================================================================== */
.offers { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.offer { position: relative; background: #fff; border-radius: 34px 34px 34px 0; padding: 40px;
  display: flex; flex-direction: column; gap: 14px; box-shadow: 0 18px 44px -28px rgba(0,61,54,.34); }
.offer--feature { background: var(--vh-green); color: var(--vh-beige); border-radius: 34px 34px 0 34px;
  box-shadow: 0 30px 60px -30px rgba(0,61,54,.6); }
.offer__flag { position: absolute; top: 26px; right: 26px; padding: 7px 14px; border-radius: var(--vh-r-pill);
  background: var(--vh-orange); color: #fff; font-family: var(--vh-font-secondary); font-weight: 700;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.offer__label { font-family: var(--vh-font-secondary); font-weight: 700; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--vh-orange); }
.offer__title { font-size: 27px; font-weight: 800; line-height: 1.05; margin: 0; }
.offer__price { font-size: 46px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.offer__price span { font-size: 17px; font-weight: 600; opacity: .7; letter-spacing: 0; }
.offer__lead { font-size: 17px; font-weight: 600; line-height: 1.4; margin: 0; }
.offer__text { font-size: 15.5px; line-height: 1.6; margin: 0; opacity: .9; }
.offer--feature .offer__text { color: rgba(227,221,209,.86); }
.offer__sub { font-family: var(--vh-font-secondary); font-weight: 700; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--vh-orange); margin: 6px 0 0; }
.offer__note { font-size: 14px; line-height: 1.55; margin: 0; opacity: .78; }
.offer__fine { font-size: 13px; font-style: italic; opacity: .62; margin: 0; }
.offer .btn { margin-top: auto; }
.offer__spacer { flex: 1; }
.offer--feature .checks li::before { background: var(--vh-orange); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.faq__item { background: #fff; border-radius: 20px 20px 20px 0; overflow: hidden;
  transition: box-shadow var(--vh-dur) var(--vh-ease); }
.faq__item[open] { box-shadow: 0 18px 40px -28px rgba(0,61,54,.34); }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex;
  align-items: center; justify-content: space-between; gap: 18px; font-size: 17.5px; font-weight: 600; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: ""; width: 22px; height: 22px; flex: none;
  background: var(--vh-orange);
  -webkit-mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
          mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  transition: transform var(--vh-dur) var(--vh-ease); }
.faq__item[open] summary::after { transform: rotate(135deg); }
.faq__answer { padding: 0 26px 24px; font-size: 15.5px; line-height: 1.65; color: var(--vh-fg-muted); max-width: 68ch; }

/* ==========================================================================
   BIG CTA
   ========================================================================== */
.bigcta { text-align: center; }
.bigcta__ill { width: 220px; margin: 0 auto 16px; }
.bigcta h2 { font-size: clamp(40px, 5vw, 72px); font-weight: 800; line-height: 1.02;
  letter-spacing: -.01em; max-width: 16ch; margin: 14px auto 20px; text-wrap: balance; }
.bigcta p { font-size: var(--vh-fs-lead); max-width: 52ch; margin: 0 auto 30px; opacity: .92; }
.bigcta__row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.s-orange .bigcta h2 .em { color: var(--vh-green); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--vh-green); color: var(--vh-beige); padding: 72px 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand img { height: 66px; margin-bottom: 20px; }
.footer__brand p { font-size: 14px; line-height: 1.6; opacity: .8; max-width: 300px; margin: 0; }
.footer__col h5 { font-family: var(--vh-font-secondary); font-weight: 700; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--vh-orange); margin: 0 0 14px; }
.footer__col a { display: block; font-size: 14.5px; padding: 6px 0; opacity: .85;
  transition: color var(--vh-dur) var(--vh-ease), opacity var(--vh-dur) var(--vh-ease); }
.footer__col a:hover { opacity: 1; color: var(--vh-orange); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px;
  margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(227,221,209,.18);
  font-size: 12.5px; opacity: .72; }
.footer__legal { display: flex; gap: 18px; }

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal { background: var(--vh-beige); padding-top: calc(84px + clamp(40px, 6vw, 72px)); padding-bottom: clamp(56px, 7vw, 96px); }
.legal h1 { font-size: clamp(36px, 4.5vw, 60px); font-weight: 800; line-height: 1.02; letter-spacing: -.01em; margin: 0 0 10px; }
.legal .updated { font-family: var(--vh-font-secondary); font-weight: 700; font-size: 12px; letter-spacing: .09em;
  text-transform: uppercase; color: var(--vh-orange); margin: 0 0 40px; }
.legal h2 { font-size: 22px; font-weight: 800; margin: 42px 0 12px; letter-spacing: -.005em; }
.legal p { font-size: 16.5px; line-height: 1.7; margin: 0 0 14px; color: var(--vh-fg); }
.legal ul { margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; }
.legal li { font-size: 16.5px; line-height: 1.6; }
.legal a { color: var(--vh-orange); text-decoration: underline; text-underline-offset: .15em; }

/* ==========================================================================
   REVEAL (progressive enhancement — visible by default)
   ========================================================================== */
body.reveal-on .reveal { opacity: 0; transform: translateY(22px);
  transition: opacity var(--vh-dur-slow) var(--vh-ease), transform var(--vh-dur-slow) var(--vh-ease); }
body.reveal-on .reveal.is-visible { opacity: 1; transform: none; }
body.reveal-on .stagger.is-visible > * { animation: reveal-in var(--vh-dur-slow) var(--vh-ease) both; }
body.reveal-on .stagger.is-visible > *:nth-child(2) { animation-delay: .07s; }
body.reveal-on .stagger.is-visible > *:nth-child(3) { animation-delay: .14s; }
body.reveal-on .stagger.is-visible > *:nth-child(4) { animation-delay: .21s; }
body.reveal-on .stagger.is-visible > *:nth-child(5) { animation-delay: .28s; }
@keyframes reveal-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4, .offers, .split, .split--portrait, .tst, .proc { grid-template-columns: 1fr; }
  .proc, .metrics { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .metric:nth-child(3) { border-left: 0; }
  .split--reverse .frame { order: -1; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .metrics, .proc { grid-template-columns: 1fr; }
  .metric { border-left: 0; border-top: 1px solid var(--vh-divider); }
  .metric:first-child { border-top: 0; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .offer { padding: 30px 26px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body.reveal-on .reveal { opacity: 1; transform: none; transition: none; }
  body.reveal-on .stagger.is-visible > * { animation: none; }
}

/* mobile button wrap safety */
@media (max-width: 900px){ .btn{white-space:normal;text-align:center} }

/* mobile bigcta button stack */
@media (max-width: 900px){
  .bigcta__row{flex-direction:column;align-items:stretch}
  .bigcta__row .btn{width:100%;flex-direction:column;gap:3px;white-space:normal;font-size:15px;padding:16px 18px;line-height:1.25}
  .bigcta__row .btn .btn__price{opacity:.9}
  .bigcta__row .btn .btn__price::before{content:none}
}
