:root {
  --ink: #173d32;
  --ink-2: #254f43;
  --sage: #a9b49b;
  --sage-soft: #dfe5d7;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --stone: #e8dfd0;
  --gold: #b8955d;
  --gold-light: #d8bd88;
  --charcoal: #26312d;
  --muted: #68726c;
  --white: #fff;
  --danger: #7f3931;
  --shadow: 0 26px 80px rgba(23, 61, 50, .12);
  --radius: 28px;
  --container: min(1240px, calc(100% - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Aptos, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 124px; }
body { margin: 0; color: var(--charcoal); background: var(--paper); font-family: var(--sans); font-size: 17px; line-height: 1.7; }
body.modal-open, body.menu-open { overflow: hidden; overscroll-behavior: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { border: 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); color: var(--ink); letter-spacing: -.045em; font-weight: 500; line-height: 1.04; }
h2 { font-size: clamp(2.45rem, 4.5vw, 4.8rem); }
h3 { color: var(--ink); }
.container { width: var(--container); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-150%); background: white; color: var(--ink); padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { transform: none; }
.section { padding: 120px 0; }

.demo-bar { position: relative; z-index: 70; background: var(--ink); color: rgba(255,255,255,.86); font-size: .82rem; letter-spacing: .02em; }
.demo-bar__inner { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.demo-bar p { margin: 0; }
.demo-bar a { display: inline-flex; align-items: center; min-height: 44px; color: white; font-weight: 700; text-underline-offset: 3px; }
.demo-bar__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 4px rgba(216,189,136,.15); }
.demo-bar__badge { padding: 2px 7px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; font-size: .75rem; font-weight: 800; letter-spacing: .12em; }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,253,248,.88); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(23,61,50,.08); transition: box-shadow .3s, background .3s; }
.site-header.is-scrolled { box-shadow: 0 8px 34px rgba(23,61,50,.08); background: rgba(255,253,248,.96); }
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { min-height: 44px; display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); flex-shrink: 0; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--gold); font-family: var(--serif); font-size: 1.28rem; }
.brand strong { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 500; letter-spacing: .17em; line-height: 1; }
.brand small { display: block; margin-top: 5px; font-size: .78rem; letter-spacing: .14em; font-weight: 700; color: var(--muted); }
.nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(16px, 2vw, 28px); }
.nav > a { position: relative; min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding-inline: 9px; text-decoration: none; font-size: .85rem; font-weight: 650; color: #405049; }
.nav > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold); transition: right .25s; }
.nav > a:hover::after, .nav > a:focus-visible::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .25s, opacity .25s; }
.nav-overlay { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; background: var(--ink); color: white; font-weight: 750; font-size: .9rem; text-decoration: none; cursor: pointer; box-shadow: 0 12px 28px rgba(23,61,50,.18); transition: transform .25s, background .25s, box-shadow .25s; }
.button span { opacity: .68; font-weight: 500; margin-left: 4px; }
.button:hover { transform: translateY(-2px); background: var(--ink-2); box-shadow: 0 16px 32px rgba(23,61,50,.24); }
.button:active { transform: translateY(0) scale(.985); }
.button:disabled, .button[aria-busy="true"] { cursor: wait; opacity: .68; transform: none; box-shadow: none; }
.button:focus-visible, .text-link:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(184,149,93,.55); outline-offset: 3px; }
.button--small { min-height: 44px; padding-inline: 20px; font-size: .82rem; }
.button--large { min-height: 58px; padding-inline: 30px; }
.button--outline { color: var(--ink); background: transparent; border: 1px solid rgba(23,61,50,.28); box-shadow: none; }
.button--outline:hover { color: white; border-color: var(--ink); }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; min-height: 44px; gap: 10px; font-weight: 700; font-size: .9rem; color: var(--ink); text-decoration: none; text-underline-offset: 5px; }
.text-link:hover { text-decoration: underline; }
.text-link--button { background: none; padding: 10px 0; cursor: pointer; }

.hero { position: relative; min-height: max(760px, calc(100vh - 120px)); display: flex; align-items: center; padding: 58px 0 52px; background: linear-gradient(115deg, #faf6ee 0%, #f2eddf 54%, #e2e2d5 100%); overflow: hidden; }
.hero::before { content: "SAVÉRUNA"; position: absolute; left: -2vw; bottom: -6vw; font-family: var(--serif); font-size: clamp(8rem, 20vw, 24rem); letter-spacing: .05em; color: rgba(23,61,50,.028); white-space: nowrap; }
.hero-glow { position: absolute; width: 700px; height: 700px; left: -280px; top: -300px; border-radius: 50%; background: rgba(255,255,255,.72); filter: blur(10px); }
.hero-grid { position: relative; display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: clamp(38px, 5vw, 76px); }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .18em; }
.eyebrow span { width: 28px; height: 1px; background: var(--gold); }
.hero h1 { max-width: 670px; margin: 20px 0 20px; font-size: clamp(3.55rem, 5vw, 5.3rem); line-height: .99; }
.hero h1 em { color: var(--gold); font-weight: inherit; }
.hero-lead { max-width: 610px; color: #58655f; font-size: 1rem; line-height: 1.65; }
.hero-offer { display: flex; align-items: flex-end; gap: 22px; margin: 24px 0 20px; }
.price-label { display: block; margin-bottom: 2px; color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.price { color: var(--ink); font-family: var(--serif); font-size: 2.3rem; line-height: 1; }
.price span { margin-right: 4px; font-family: var(--sans); font-size: .82rem; font-weight: 800; vertical-align: 18px; }
.offer-chip { margin-bottom: 2px; padding: 7px 11px; border-radius: 999px; background: rgba(184,149,93,.15); color: #816433; font-size: .78rem; font-weight: 800; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.social-proof { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 38px; height: 38px; display: grid; place-items: center; margin-left: -8px; border: 2px solid var(--cream); border-radius: 50%; background: var(--sage); color: var(--ink); font-size: .75rem; font-weight: 800; }
.avatar-stack span:first-child { margin-left: 0; background: #d8bda3; }
.avatar-stack span:last-child { background: #b9b29b; }
.social-proof strong, .social-proof small { display: block; }
.social-proof strong { color: var(--ink); font-size: .83rem; letter-spacing: .03em; }
.social-proof strong span { color: var(--gold); letter-spacing: .11em; }
.social-proof small { color: var(--muted); font-size: .78rem; }
.demo-note { max-width: 580px; margin-top: 12px; color: #6c7470; font-size: .78rem; line-height: 1.55; }
.hero-media { position: relative; }
.hero-image-wrap { position: relative; border-radius: 180px 18px 18px 18px; overflow: hidden; box-shadow: var(--shadow); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.5); border-radius: inherit; pointer-events: none; }
.hero-image-wrap > img { width: 100%; height: clamp(500px, calc(100vh - 240px), 660px); min-height: 0; object-fit: cover; object-position: center; }
.hero-float { position: absolute; z-index: 2; padding: 13px 18px; border: 1px solid rgba(255,255,255,.6); border-radius: 14px; background: rgba(255,253,248,.86); backdrop-filter: blur(12px); box-shadow: 0 14px 34px rgba(23,61,50,.1); }
.hero-float strong, .hero-float small { display: block; }
.hero-float strong { color: var(--ink); font-size: .78rem; }
.hero-float small { color: var(--muted); font-size: .76rem; }
.hero-float--top { top: 34px; right: 32px; padding-left: 46px; }
.float-icon { position: absolute; left: 17px; top: 14px; color: var(--gold); }
.hero-float--bottom { left: 26px; bottom: 28px; }
.hero-caption { display: flex; align-items: flex-start; justify-content: flex-end; gap: 14px; margin-top: 18px; color: var(--ink); font-size: .76rem; line-height: 1.4; }
.hero-caption > span { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.hero-caption p { margin: 0; }
.hero-caption small { color: var(--muted); }

.proof-strip { background: var(--ink); color: white; padding: 24px 0 15px; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { display: flex; align-items: baseline; gap: 9px; justify-content: center; padding: 8px 20px; border-right: 1px solid rgba(255,255,255,.14); }
.proof-grid > div:last-child { border-right: 0; }
.proof-grid strong { color: var(--gold-light); font-family: var(--serif); font-size: 1.28rem; font-weight: 500; }
.proof-grid span { color: rgba(255,255,255,.78); font-size: .78rem; letter-spacing: .03em; }
.section-microcopy { margin: 9px auto 0; padding-inline: 16px; text-align: center; color: rgba(255,255,255,.68); font-size: .76rem; line-height: 1.5; }

.problem { background: var(--paper); }
.problem-grid { display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.section-heading h2 { margin: 18px 0 24px; }
.section-heading p { max-width: 610px; color: var(--muted); }
.section-heading--center { max-width: 820px; margin: 0 auto 58px; text-align: center; }
.section-heading--center p { margin-inline: auto; }
.solution-card { position: relative; padding: clamp(38px, 5vw, 68px); border-radius: var(--radius); background: #edf0e8; overflow: hidden; }
.solution-card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -50px; bottom: -70px; border: 1px solid rgba(23,61,50,.12); border-radius: 50%; box-shadow: 0 0 0 26px rgba(23,61,50,.025), 0 0 0 55px rgba(23,61,50,.02); }
.solution-card__index { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.solution-quote { margin: 20px 0; color: var(--ink); font-family: var(--serif); font-size: clamp(1.5rem, 2.8vw, 2.3rem); line-height: 1.3; }
.solution-card > p:not(.solution-quote) { color: var(--muted); }
.solution-card small { color: #6e7772; font-size: .78rem; }
.check-list { display: grid; gap: 12px; margin: 24px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 27px; font-size: .88rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }

.benefits { background: var(--cream); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { position: relative; min-height: 390px; display: flex; flex-direction: column; align-items: flex-start; padding: 38px; border: 1px solid rgba(23,61,50,.12); border-radius: 20px; background: rgba(255,255,255,.55); overflow: hidden; }
.benefit-card--dark { color: rgba(255,255,255,.72); background: var(--ink); }
.benefit-card--dark h3 { color: white; }
.benefit-number { position: absolute; top: 28px; right: 30px; color: var(--gold); font-family: var(--serif); }
.line-icon { width: 70px; height: 70px; display: grid; place-items: center; margin-bottom: 62px; border: 1px solid rgba(184,149,93,.45); border-radius: 50%; }
.line-icon span { width: 24px; height: 32px; border: 1.5px solid var(--gold); border-radius: 60% 40% 60% 40%; transform: rotate(38deg); }
.line-icon--shield span { border-radius: 14px 14px 50% 50%; transform: none; }
.line-icon--spark span { width: 26px; height: 26px; border: 0; background: linear-gradient(45deg, transparent 46%, var(--gold) 47% 53%, transparent 54%), linear-gradient(-45deg, transparent 46%, var(--gold) 47% 53%, transparent 54%); transform: rotate(45deg); }
.benefit-card h3 { margin-bottom: 14px; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.benefit-card p { color: inherit; opacity: .8; font-size: .9rem; }
.benefit-tag { margin-top: auto; color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .13em; }

.gallery-section { background: var(--paper); }
.gallery-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 48px; }
.gallery-heading .section-heading h2 { max-width: 690px; margin-bottom: 0; }
.gallery-heading > p { max-width: 370px; margin-bottom: 8px; color: var(--muted); font-size: .9rem; }
.gallery-layout { display: grid; grid-template-columns: minmax(0, 1fr) 220px; gap: 18px; }
.gallery-main { position: relative; aspect-ratio: 4 / 3; min-height: 0; padding: 0; border-radius: var(--radius); background: #e9e5d9; overflow: hidden; cursor: zoom-in; touch-action: pan-y; }
.gallery-main img { width: 100%; height: 100%; min-height: 0; object-fit: cover; transition: opacity .25s, transform .5s; }
.gallery-main:hover img { transform: scale(1.015); }
.gallery-expand { position: absolute; top: 22px; right: 22px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: rgba(255,255,255,.88); box-shadow: 0 8px 20px rgba(23,61,50,.1); }
.gallery-label { position: absolute; left: 24px; bottom: 22px; padding: 9px 14px; border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.92); font-size: .78rem; font-weight: 750; }
.gallery-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: start; }
.gallery-thumb { position: relative; aspect-ratio: 1/1.18; padding: 0; border: 1px solid transparent; border-radius: 16px; background: #e8e2d5; overflow: hidden; cursor: pointer; opacity: .68; transition: opacity .2s, border-color .2s, transform .2s; }
.gallery-thumb:hover, .gallery-thumb.is-active { opacity: 1; transform: translateY(-2px); border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:nth-child(2) img { object-position: 50% 25%; }
.gallery-thumb span { position: absolute; bottom: 6px; right: 7px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--ink); font-family: var(--serif); font-size: .78rem; }

.formula { background: #ebeee5; }
.formula-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(55px, 8vw, 112px); }
.formula-media { position: relative; }
.formula-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 180px 18px 18px; box-shadow: var(--shadow); }
.formula-seal { position: absolute; right: -28px; bottom: 42px; width: 108px; height: 108px; display: grid; place-items: center; text-align: center; border-radius: 50%; color: var(--cream); background: var(--ink); font-family: var(--serif); font-size: .78rem; line-height: 1.35; letter-spacing: .13em; box-shadow: 0 12px 28px rgba(23,61,50,.2); }
.formula-copy h2 { margin: 18px 0 22px; }
.formula-intro { color: var(--muted); }
.ingredient-list { margin-top: 34px; border-top: 1px solid rgba(23,61,50,.14); }
.ingredient-list article { display: grid; grid-template-columns: .92fr 1.08fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid rgba(23,61,50,.14); }
.ingredient-list article > div { display: flex; gap: 12px; align-items: baseline; }
.ingredient-list span { color: var(--gold); font-family: var(--serif); font-size: .82rem; }
.ingredient-list h3 { margin: 0; font-family: var(--serif); font-size: 1.03rem; font-weight: 500; }
.ingredient-list p { margin: 0; color: var(--muted); font-size: .78rem; }

.steps { background: var(--paper); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin: 0; padding: 0; list-style: none; counter-reset: step; }
.step-grid li { padding: 34px 26px; text-align: center; }
.step-grid li > span { color: var(--gold); font-family: var(--serif); font-size: 2.5rem; }
.step-line { position: relative; width: 100%; height: 1px; margin: 24px 0 30px; background: rgba(23,61,50,.14); }
.step-line::before { content: ""; position: absolute; width: 9px; height: 9px; left: calc(50% - 5px); top: -4px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 7px rgba(184,149,93,.1); }
.step-grid h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 1.45rem; font-weight: 500; }
.step-grid p { max-width: 310px; margin: 0 auto; color: var(--muted); font-size: .88rem; }

.pricing { background: var(--cream); }
.pricing-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 50px; }
.pricing-header .section-heading h2 { max-width: 770px; margin-bottom: 0; }
.pricing-header > p { max-width: 320px; margin-bottom: 8px; color: var(--muted); font-size: .82rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 38px 34px; border: 1px solid rgba(23,61,50,.12); border-radius: 22px; background: rgba(255,255,255,.68); }
.price-card--featured { border-color: var(--gold); background: var(--ink); color: rgba(255,255,255,.75); box-shadow: var(--shadow); transform: translateY(-10px); }
.price-card--featured h3, .price-card--featured .package-price { color: white; }
.price-card--featured .check-list li::before { color: var(--gold-light); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap; padding: 6px 14px; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: .75rem; font-weight: 900; letter-spacing: .06em; }
.package-name { color: var(--gold); font-size: .76rem; font-weight: 850; letter-spacing: .15em; }
.price-card h3 { margin: 18px 0 6px; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.package-desc { min-height: 56px; color: inherit; opacity: .74; font-size: .82rem; }
.package-price { display: flex; align-items: flex-start; gap: 4px; margin-top: 20px; color: var(--ink); }
.package-price span { padding-top: 6px; font-size: .72rem; font-weight: 800; }
.package-price strong { font-family: var(--serif); font-size: 2.3rem; font-weight: 500; line-height: 1; }
.price-old { color: inherit; opacity: .68; font-size: .78rem; }
.price-card .check-list { min-height: 118px; margin-bottom: 28px; }
.price-card .button { margin-top: auto; }
.price-card--featured .button { color: var(--ink); background: var(--cream); }
.pricing-disclaimer, .testimonial-note { max-width: 760px; margin: 30px auto 0; text-align: center; color: #53605a; font-size: .82rem; line-height: 1.6; }

.reasons { background: var(--paper); }
.reasons-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 130px); }
.reasons-copy { position: sticky; top: 150px; align-self: start; }
.reasons-copy h2 { margin: 18px 0 24px; }
.reasons-copy > p { color: var(--muted); }
.reason-list { border-top: 1px solid rgba(23,61,50,.14); }
.reason-list article { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid rgba(23,61,50,.14); }
.reason-list article > span { color: var(--gold); font-family: var(--serif); font-size: 1.15rem; }
.reason-list h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.reason-list p { margin: 0; color: var(--muted); font-size: .86rem; }

.testimonials { background: #e7eadd; overflow: hidden; }
.testimonial-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 44px; }
.testimonial-header h2 { margin-bottom: 0; }
.carousel-controls { display: flex; gap: 10px; }
.carousel-controls button { width: 48px; height: 48px; border: 1px solid rgba(23,61,50,.2); border-radius: 50%; color: var(--ink); background: transparent; cursor: pointer; transition: background .2s, color .2s; }
.carousel-controls button:hover { color: white; background: var(--ink); }
.testimonial-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 36px)/3); gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card { display: flex; flex-direction: column; min-height: 355px; padding: 34px; border-radius: 20px; background: rgba(255,255,255,.7); scroll-snap-align: start; }
.stars { color: var(--gold); letter-spacing: .16em; font-size: .8rem; }
.testimonial-card blockquote { margin: 35px 0; color: var(--ink); font-family: var(--serif); font-size: 1.24rem; line-height: 1.55; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.reviewer > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-size: .78rem; }
.reviewer strong, .reviewer small { display: block; }
.reviewer strong { color: var(--ink); font-size: .8rem; }
.reviewer small { color: var(--muted); font-size: .78rem; }

.guarantee { padding: 0 0 120px; background: #e7eadd; }
.guarantee-card { display: grid; grid-template-columns: 150px 1fr .62fr; align-items: center; gap: 40px; padding: 54px 64px; border-radius: var(--radius); color: rgba(255,255,255,.72); background: var(--ink); }
.guarantee-seal { width: 112px; height: 112px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-light); font-size: .78rem; letter-spacing: .14em; }
.guarantee-seal span { font-family: var(--serif); font-size: 2.7rem; line-height: 1; }
.kicker--light { color: var(--gold-light); }
.guarantee h2 { margin: 12px 0; color: white; font-size: clamp(2.2rem, 3.5vw, 3.6rem); }
.guarantee-card p { margin-bottom: 0; }
.guarantee-note { padding-left: 32px; border-left: 1px solid rgba(255,255,255,.16); font-size: .8rem; line-height: 1.6; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 8vw, 120px); }
.faq-list { border-top: 1px solid rgba(23,61,50,.15); }
.faq details { border-bottom: 1px solid rgba(23,61,50,.15); }
.faq summary { position: relative; padding: 24px 54px 24px 0; color: var(--ink); font-family: var(--serif); font-size: 1.16rem; list-style: none; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span, .faq summary span::after { position: absolute; right: 8px; top: 50%; width: 17px; height: 1px; background: var(--gold); transition: transform .25s; }
.faq summary span::after { content: ""; right: 0; top: 0; transform: rotate(90deg); }
.faq details[open] summary span::after { transform: rotate(0); }
.faq details div { overflow: hidden; }
.faq details p { max-width: 690px; margin: -4px 54px 24px 0; color: var(--muted); font-size: .86rem; }

.order-section { padding: 120px 0; background: linear-gradient(135deg, #173d32, #284e42); color: rgba(255,255,255,.78); }
.order-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(55px, 8vw, 110px); }
.order-copy h2 { margin: 18px 0 24px; color: white; }
.order-copy > p { max-width: 560px; }
.order-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.order-points span { padding: 7px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: .78rem; }
.demo-form { padding: 38px; border-radius: 24px; background: var(--paper); color: var(--charcoal); box-shadow: 0 35px 80px rgba(0,0,0,.18); }
.form-heading { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 26px; }
.form-heading span { color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .13em; }
.form-heading h3 { margin: 6px 0 0; font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
.secure-label { color: var(--muted) !important; letter-spacing: 0 !important; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; margin-bottom: 15px; color: var(--ink); font-size: .82rem; font-weight: 750; }
input, select, textarea { width: 100%; border: 1px solid rgba(23,61,50,.18); border-radius: 11px; background: #fcfaf4; color: var(--charcoal); padding: 13px 14px; outline: 0; font-size: 1rem; line-height: 1.45; transition: border-color .2s, box-shadow .2s; }
input, select { height: 50px; }
textarea { min-height: 92px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(184,149,93,.12); }
.is-invalid { border-color: var(--danger) !important; box-shadow: 0 0 0 4px rgba(127,57,49,.1) !important; }
.field-error { margin-top: -2px; color: var(--danger); font-size: .78rem; font-weight: 650; line-height: 1.4; }
.consent { min-height: 44px; display: grid; grid-template-columns: 22px 1fr; align-items: start; gap: 10px; color: var(--muted); font-weight: 500; line-height: 1.5; cursor: pointer; }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--ink); }
.form-note { margin: 13px auto 0; text-align: center; color: #6d7571; font-size: .78rem; line-height: 1.55; }

.footer { padding: 76px 0 28px; color: rgba(255,255,255,.65); background: #102b24; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .7fr .7fr 1fr; gap: 60px; }
.brand--footer { color: white; }
.brand--footer small { color: rgba(255,255,255,.7); }
.footer-brand p { max-width: 330px; margin-top: 22px; font-size: .78rem; }
.footer h3 { margin: 0 0 14px; color: var(--gold-light); font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand):not(.footer-demo) a { display: flex; align-items: center; min-height: 44px; margin: 0; text-decoration: none; font-size: .82rem; }
.footer-grid a:hover { color: white; }
.footer-demo { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.12); }
.footer-demo span { display: block; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-demo > a { min-height: 44px; display: inline-flex; align-items: center; margin: 8px 0 14px; color: white; font-family: var(--serif); font-size: 1.3rem; text-decoration: none; }
.footer-demo p { font-size: .8rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }
.footer-bottom p { margin: 0; }

.mobile-cta { display: none; }
.modal, .lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .25s; }
.modal.is-open, .lightbox.is-open { opacity: 1; pointer-events: auto; }
.modal-backdrop, .lightbox-backdrop { position: absolute; inset: 0; background: rgba(11,28,23,.76); backdrop-filter: blur(7px); }
.modal-dialog { position: relative; z-index: 1; width: min(540px, 100%); max-height: calc(100vh - 40px); max-height: calc(100dvh - 40px); overflow-y: auto; overscroll-behavior: contain; padding: clamp(28px, 5vw, 46px); border-radius: 24px; background: var(--paper); box-shadow: 0 32px 90px rgba(0,0,0,.3); transform: translateY(20px) scale(.98); transition: transform .25s; }
.modal.is-open .modal-dialog { transform: none; }
.modal-dialog > h2 { margin: 12px 0; font-size: clamp(2.1rem, 5vw, 3rem); }
.modal-dialog > p { color: var(--muted); font-size: .9rem; }
.modal-close, .lightbox-close { position: absolute; top: 15px; right: 16px; z-index: 3; width: 46px; height: 46px; border-radius: 50%; color: var(--ink); background: #eee9de; font-size: 1.6rem; cursor: pointer; }
.modal-form { margin-top: 25px; }
.modal-dialog--success { text-align: center; }
.success-check { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 50%; color: white; background: var(--ink); font-size: 1.65rem; box-shadow: 0 0 0 10px rgba(23,61,50,.08); }
.success-note { display: grid; gap: 2px; margin: 24px 0; padding: 16px; border-radius: 12px; background: #edf0e8; color: var(--ink); font-size: .76rem; }
.success-note span { color: var(--muted); }
.lightbox-dialog { position: relative; z-index: 1; max-width: min(1100px, 92vw); max-height: 90vh; max-height: 90dvh; display: grid; place-items: center; }
.lightbox-dialog img { max-width: 100%; max-height: 78vh; max-height: 78dvh; width: auto; height: auto; object-fit: contain; border-radius: 16px; box-shadow: 0 25px 80px rgba(0,0,0,.35); touch-action: pan-y; }
.lightbox-dialog p { margin: 12px 0 0; color: white; }
.lightbox-close { top: -18px; right: -18px; }
.lightbox-nav { position: absolute; z-index: 3; top: 50%; width: 48px; height: 48px; border-radius: 50%; color: var(--ink); background: rgba(255,255,255,.9); cursor: pointer; }
.lightbox-nav--prev { left: -64px; }
.lightbox-nav--next { right: -64px; }
.toast { position: fixed; z-index: 110; left: 50%; bottom: 28px; max-width: calc(100% - 32px); padding: 12px 18px; border-radius: 999px; color: white; background: var(--ink); font-size: .75rem; transform: translate(-50%, 30px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 821px) and (max-width: 1500px) {
  .hero { min-height: max(650px, calc(100vh - 120px)); padding: 30px 0 28px; }
  .hero-grid { gap: 40px; }
  .hero h1 { margin: 14px 0; font-size: clamp(3.2rem, 4vw, 3.65rem); }
  .hero-lead { font-size: .92rem; line-height: 1.5; }
  .hero-offer { margin: 18px 0 16px; }
  .price { font-size: 2.15rem; }
  .social-proof { margin-top: 15px; }
  .demo-note { margin-top: 7px; }
  .hero-image-wrap > img { height: clamp(480px, calc(100vh - 220px), 600px); min-height: 0; }
  .hero-caption { margin-top: 10px; }
}

@media (max-width: 1100px) {
  :root { --container: min(100% - 40px, 980px); }
  .nav { gap: 14px; }
  .nav > a:nth-child(4), .nav > a:nth-child(5) { display: none; }
  .hero { min-height: 720px; }
  .hero-grid { grid-template-columns: .95fr 1.05fr; gap: 38px; }
  .hero h1 { font-size: clamp(3.35rem, 5vw, 4.5rem); }
  .hero-image-wrap > img { height: 510px; min-height: 0; }
  .gallery-main { aspect-ratio: 4 / 3; }
  .gallery-layout { grid-template-columns: 1fr 180px; }
  .pricing-grid { gap: 12px; }
  .price-card { padding-inline: 26px; }
  .guarantee-card { grid-template-columns: 120px 1fr .7fr; padding-inline: 42px; }
  .footer-grid { gap: 36px; }
}

@media (max-width: 1023px) {
  :root { --container: calc(100% - 36px); }
  html { scroll-padding-top: 100px; }
  body { font-size: 16px; }
  .section { padding: 88px 0; }
  .demo-bar__inner { padding: 8px 0; text-align: center; line-height: 1.35; }
  .demo-bar__dot { display: none; }
  .header-inner { height: 70px; }
  .menu-toggle { display: block; position: relative; z-index: 83; flex: 0 0 44px; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .nav-overlay { position: fixed; inset: 0; z-index: 78; display: block; background: rgba(11,28,23,.56); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s, visibility .25s; }
  .nav-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav { position: fixed; inset: 0 0 0 auto; z-index: 82; width: min(88vw, 390px); max-height: none; min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: calc(94px + env(safe-area-inset-top)) 24px calc(28px + env(safe-area-inset-bottom)); background: var(--paper); border-left: 1px solid rgba(23,61,50,.12); box-shadow: -24px 0 48px rgba(23,61,50,.18); overflow-y: auto; overscroll-behavior: contain; clip-path: inset(0 0 0 100%); opacity: 1; visibility: hidden; transition: clip-path .3s ease, visibility .3s; }
  .nav.is-open { clip-path: inset(0); visibility: visible; }
  .nav > a, .nav > a:nth-child(4), .nav > a:nth-child(5) { display: flex; align-items: center; min-height: 54px; padding: 12px 4px; border-bottom: 1px solid rgba(23,61,50,.1); font-size: 1rem; }
  .nav > a::after { display: none; }
  .nav .button { width: 100%; margin-top: 22px; border: 0; }
  .hero { min-height: auto; padding: 64px 0 50px; }
  .hero-grid, .problem-grid, .formula-grid, .reasons-grid, .faq-grid, .order-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 50px; }
  .hero-copy { max-width: 650px; }
  .hero h1 { font-size: clamp(3rem, 9vw, 4.4rem); }
  .hero-media { max-width: 680px; width: 100%; margin: 0 auto; }
  .hero-image-wrap { border-radius: 130px 18px 18px 18px; }
  .hero-image-wrap > img { height: 520px; min-height: 0; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 310px; }
  .line-icon { margin-bottom: 40px; }
  .gallery-heading, .pricing-header { align-items: flex-start; flex-direction: column; gap: 10px; }
  .gallery-layout { grid-template-columns: 1fr; }
  .gallery-main { aspect-ratio: 4 / 3; }
  .gallery-thumbs { display: grid; grid-auto-flow: column; grid-auto-columns: 105px; grid-template-columns: none; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x proximity; scrollbar-width: thin; padding: 3px 3px 10px; }
  .gallery-thumb { min-width: 0; scroll-snap-align: start; }
  .formula-media { max-width: 600px; }
  .step-grid { gap: 8px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 22px; }
  .price-card--featured { transform: none; order: -1; }
  .package-desc, .price-card .check-list { min-height: 0; }
  .reasons-copy { position: static; }
  .testimonial-track { grid-auto-columns: calc((100% - 18px)/2); }
  .guarantee { padding-bottom: 88px; }
  .guarantee-card { grid-template-columns: 100px 1fr; }
  .guarantee-note { grid-column: 1 / -1; padding: 20px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-demo { grid-column: 1 / -1; padding: 24px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 28px); --radius: 20px; }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  .section { padding: 72px 0; }
  .demo-bar { font-size: .82rem; }
  .demo-bar__badge { display: none; }
  .brand strong { font-size: 1rem; }
  .brand small { font-size: .78rem; letter-spacing: .11em; }
  .brand-mark { width: 34px; height: 34px; }
  h2 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
  .hero { padding-top: 52px; }
  .hero h1 { margin-top: 18px; font-size: clamp(2.72rem, 13vw, 3.75rem); }
  .hero-lead { font-size: 1rem; }
  .hero-offer { margin-top: 27px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: center; }
  .social-proof { margin-top: 24px; }
  .hero-image-wrap { border-radius: 90px 16px 16px 16px; }
  .hero-image-wrap > img { height: 410px; min-height: 0; object-position: 57% center; }
  .hero-float--top { top: 18px; right: 16px; }
  .hero-float--bottom { left: 14px; bottom: 14px; }
  .proof-strip { padding-top: 18px; }
  .proof-grid > div { align-items: center; flex-direction: column; gap: 0; padding: 13px 8px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.1); }
  .proof-grid strong { font-size: 1.15rem; }
  .proof-grid span { font-size: .82rem; line-height: 1.4; }
  .solution-card { padding: 32px 25px; }
  .section-heading--center { margin-bottom: 38px; }
  .benefit-card { min-height: 320px; padding: 30px 26px; }
  .gallery-heading { margin-bottom: 30px; }
  .gallery-main { aspect-ratio: 4 / 5; }
  .gallery-main img { object-position: 58% center; }
  .gallery-thumbs { margin-right: 0; max-width: 100%; }
  .formula-media img { border-radius: 90px 15px 15px; }
  .formula-seal { right: 8px; bottom: 20px; width: 90px; height: 90px; }
  .ingredient-list article { grid-template-columns: 1fr; gap: 8px; }
  .step-grid { grid-template-columns: 1fr; gap: 0; }
  .step-grid li { padding: 24px 16px; }
  .step-line { max-width: 260px; margin-inline: auto; }
  .price-card { padding: 34px 26px; }
  .package-price strong { font-size: 2rem; }
  .reason-list article { grid-template-columns: 42px 1fr; }
  .testimonial-header { align-items: flex-start; }
  .carousel-controls { display: none; }
  .testimonial-track { margin-right: 0; grid-auto-columns: 88%; }
  .testimonial-card { min-height: 340px; padding: 28px; }
  .guarantee-card { grid-template-columns: 1fr; padding: 36px 26px; text-align: center; }
  .guarantee-seal { margin: 0 auto; }
  .faq summary { font-size: 1.05rem; }
  .order-section { padding: 72px 0; }
  .demo-form { padding: 28px 20px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .form-heading { gap: 18px; }
  .secure-label { white-space: nowrap; }
  .footer { padding-top: 58px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand, .footer-demo { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .mobile-cta { position: fixed; z-index: 55; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: calc(70px + env(safe-area-inset-bottom)); padding: 9px max(14px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left)); border-top: 1px solid rgba(23,61,50,.12); background: rgba(255,253,248,.96); backdrop-filter: blur(15px); box-shadow: 0 -8px 25px rgba(23,61,50,.08); transform: translateY(110%); transition: transform .3s; }
  .mobile-cta.is-visible { transform: none; }
  .mobile-cta small, .mobile-cta strong { display: block; }
  .mobile-cta small { color: var(--muted); font-size: .82rem; line-height: 1.25; }
  .mobile-cta strong { color: var(--ink); font-family: var(--serif); font-size: 1.05rem; }
  .mobile-cta .button { min-height: 48px; padding-inline: 18px; font-size: .82rem; white-space: nowrap; }
  .modal { place-items: end center; padding: max(8px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) 0 max(8px, env(safe-area-inset-left)); }
  .modal-dialog { width: 100%; max-height: calc(100vh - env(safe-area-inset-top) - 8px); max-height: calc(100dvh - env(safe-area-inset-top) - 8px); padding: 52px 21px calc(24px + env(safe-area-inset-bottom)); border-radius: 22px 22px 0 0; }
  .modal-close { position: sticky; float: right; top: 0; right: 0; margin: -42px -10px 0 0; }
  .lightbox { padding: calc(58px + env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) calc(14px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left)); }
  .lightbox-dialog { max-width: 100%; max-height: calc(100dvh - 72px - env(safe-area-inset-top) - env(safe-area-inset-bottom)); }
  .lightbox-dialog img { max-height: calc(100dvh - 148px - env(safe-area-inset-top) - env(safe-area-inset-bottom)); }
  .lightbox-nav { top: auto; bottom: 6px; }
  .lightbox-nav--prev { left: calc(50% - 58px); }
  .lightbox-nav--next { right: calc(50% - 58px); }
  .lightbox-dialog p { margin-bottom: 60px; }
  .lightbox-close { top: -52px; right: 0; }
}

@media (max-width: 375px) {
  :root { --container: calc(100% - 24px); }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 2.85rem); }
  .price { font-size: 2.2rem; }
  .hero-float { padding: 10px 12px; }
  .hero-float--top { padding-left: 34px; }
  .float-icon { left: 12px; top: 10px; }
  .gallery-main { aspect-ratio: 4 / 5; }
  .form-heading { display: block; }
  .secure-label { display: block; margin-top: 8px; }
}

@media (max-width: 340px) {
  :root { --container: calc(100% - 20px); }
  .brand { gap: 8px; }
  .brand strong { font-size: .92rem; letter-spacing: .13em; }
  .brand small { font-size: .72rem; letter-spacing: .08em; }
  .header-inner { gap: 8px; }
  .hero h1 { font-size: 2.42rem; }
  .hero-offer { align-items: flex-start; flex-direction: column; gap: 12px; }
  .mobile-cta { gap: 8px; padding-inline: 10px; }
  .mobile-cta .button { padding-inline: 13px; }
  .mobile-cta small { max-width: 100px; }
}

@media (max-width: 932px) and (max-height: 500px) and (orientation: landscape) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .section { padding-block: 64px; }
  .demo-bar__inner { min-height: 32px; padding-block: 5px; }
  .header-inner { height: 62px; }
  .hero { padding-block: 38px; }
  .hero-grid { grid-template-columns: minmax(0, .98fr) minmax(280px, 1.02fr); gap: 28px; }
  .hero h1 { font-size: clamp(2.45rem, 6vw, 3.25rem); }
  .hero-lead { font-size: .92rem; line-height: 1.5; }
  .hero-offer { margin-block: 16px; }
  .hero-image-wrap { border-radius: 80px 16px 16px 16px; }
  .hero-image-wrap > img { height: min(78dvh, 420px); }
  .social-proof, .demo-note, .hero-caption { display: none; }
  .mobile-cta { position: fixed; z-index: 55; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: calc(68px + env(safe-area-inset-bottom)); padding: 8px max(16px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left)); border-top: 1px solid rgba(23,61,50,.12); background: rgba(255,253,248,.97); box-shadow: 0 -8px 25px rgba(23,61,50,.08); transform: translateY(110%); transition: transform .3s; }
  .mobile-cta.is-visible { transform: none; }
  .mobile-cta small, .mobile-cta strong { display: block; }
  .mobile-cta small { color: var(--muted); font-size: .82rem; line-height: 1.2; }
  .mobile-cta strong { color: var(--ink); font-family: var(--serif); }
  .mobile-cta .button { min-height: 48px; white-space: nowrap; }
  .modal { place-items: center; padding: max(8px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left)); }
  .modal-dialog { max-height: calc(100dvh - 16px); padding: 48px 24px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
