:root{
  --bg: #F7F1EE;
  --bg2: #efe6e2;
  --card: rgba(255,255,255,.86);
  --card-strong: rgba(255,255,255,.94);
  --text: #3E3436;
  --muted: rgba(62, 52, 54, .68);
  --border: rgba(62, 52, 54, .10);
  --shadow: 0 18px 55px rgba(62, 52, 54, .10);
  --shadow2: 0 10px 28px rgba(62, 52, 54, .10);
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
  --accent: #7A4A58;
  --accent2: #D8B6B1;
  --ok: #2aa36b;
  --warn: #ff7a18;
  --focus: rgba(122, 74, 88, .25);
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(216, 182, 177, .35), transparent 55%),
    radial-gradient(900px 600px at 95% 10%, rgba(122, 74, 88, .14), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.45;
  letter-spacing: .01em;
  text-rendering: optimizeLegibility;
}

img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
button, input, select, textarea{ font: inherit; color: inherit; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link{
  position: absolute;
  left: -9999px;
  top: 8px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 1000;
}
.skip-link:focus{ left: 12px; outline: none; box-shadow: 0 0 0 6px var(--focus); }

.section{ padding: clamp(56px, 7vw, 96px) 0; }
.section-soft{
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(122, 74, 88, .10), transparent 60%),
    radial-gradient(800px 420px at 90% 15%, rgba(216, 182, 177, .28), transparent 55%);
  border-top: 1px solid rgba(62, 52, 54, .06);
  border-bottom: 1px solid rgba(62, 52, 54, .06);
}

.section-head{ margin-bottom: 26px; }
.h2{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.3vw, 42px);
  letter-spacing: -.02em;
  line-height: 1.08;
}
.h3{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -.01em;
}
.lead{
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
}
.muted{ color: var(--muted); }
.fineprint{
  color: rgba(62, 52, 54, .58);
  font-size: 12.5px;
  margin: 14px 0 0;
}
.mono{ font-family: var(--mono); letter-spacing: .02em; }
.accent{
  background: linear-gradient(90deg, var(--accent) 0%, #9a6270 40%, var(--accent2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(247, 241, 238, .72);
  border-bottom: 1px solid rgba(62, 52, 54, .08);
}
.site-header.is-scrolled{
  background: rgba(247, 241, 238, .88);
  box-shadow: 0 12px 40px rgba(62, 52, 54, .07);
}
.header-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand-sm{ min-width: 0; }
.brand-mark{
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}
.brand-sm .brand-mark{
  width: 36px;
  height: 36px;
}
.brand-mark img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-title{ font-weight: 800; letter-spacing: .02em; }
.brand-subtitle{ font-size: 12px; color: var(--muted); margin-top: 2px; }

.nav{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(62, 52, 54, .08);
  background: rgba(255,255,255,.55);
}
.nav-link{
  font-size: 13px;
  color: rgba(62, 52, 54,.75);
  padding: 8px 10px;
  border-radius: 999px;
}
.nav-link:hover{ background: rgba(122, 74, 88, .08); color: rgba(62, 52, 54,.92); }

.header-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(62, 52, 54, .10);
  background: rgba(255,255,255,.66);
  display: none;
  place-items: center;
  cursor: pointer;
}
.icon-btn span{
  width: 18px;
  height: 2px;
  background: rgba(62, 52, 54,.72);
  border-radius: 2px;
  position: relative;
}
.icon-btn span::before,
.icon-btn span::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(62, 52, 54,.72);
  border-radius: 2px;
}
.icon-btn span::before{ top: -6px; }
.icon-btn span::after{ top: 6px; }

.btn{
  border: 1px solid rgba(62, 52, 54, .12);
  background: rgba(255,255,255,.70);
  color: rgba(62, 52, 54,.92);
  padding: 10px 14px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  box-shadow: 0 10px 18px rgba(62, 52, 54, .06);
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 16px 30px rgba(62, 52, 54, .09); }
.btn:active{ transform: translateY(0); }
.btn:focus-visible{ outline: none; box-shadow: 0 0 0 6px var(--focus), 0 16px 30px rgba(62, 52, 54, .09); }
.btn-primary{
  background: linear-gradient(135deg, rgba(122, 74, 88, 1), rgba(216, 182, 177, .95));
  color: #fff;
  border-color: rgba(122, 74, 88, .35);
}
.btn-ghost{
  background: rgba(255,255,255,.55);
}
.btn-lg{ padding: 12px 16px; border-radius: 16px; }
.w-100{ width: 100%; }

.pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(62, 52, 54, .10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 16px 35px rgba(62, 52, 54, .08);
  font-size: 13px;
  color: rgba(62, 52, 54,.78);
}
.pill-soft{
  background: rgba(122, 74, 88, .08);
  border-color: rgba(122, 74, 88, .16);
}
.dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.2) 40%), linear-gradient(135deg, var(--ok), #5fe0a5);
  box-shadow: 0 0 0 5px rgba(42, 163, 107, .10);
}

.hero{ padding-top: clamp(26px, 3vw, 44px); }
.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
.hero-title{
  margin: 14px 0 10px;
  font-size: clamp(24px, 3.68vw, 45px);
  line-height: 1.03;
  letter-spacing: -.03em;
}
.hero-subtitle{
  margin: 0 0 10px;
  max-width: 65ch;
  color: var(--muted);
  font-size: clamp(15px, 1.45vw, 18px);
}
.hero-selftalk{
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  border: 1px dashed rgba(62, 52, 54, .16);
  color: rgba(62, 52, 54,.76);
}
.hero-cta{ display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 16px; }

.hero-metrics{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 18px;
}
.metric{
  border: 1px solid rgba(62, 52, 54, .08);
  background: rgba(255,255,255,.56);
  border-radius: 16px;
  padding: 12px 12px;
}
.metric dt{ font-size: 12px; color: rgba(62, 52, 54,.62); margin-bottom: 4px; }
.metric dd{ margin: 0; font-size: 13.5px; font-weight: 700; }

.scarcity-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(122, 74, 88, .20);
  background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.58));
  box-shadow: 0 22px 60px rgba(122, 74, 88, .12);
  padding: 16px;
}
.scarcity-title{ font-weight: 800; letter-spacing: -.01em; margin-bottom: 10px; }
.scarcity-row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 10px;
}
.scarcity-item{
  border-radius: 16px;
  border: 1px solid rgba(62, 52, 54, .10);
  background: rgba(255,255,255,.58);
  padding: 12px;
}
.label{ font-size: 12px; color: rgba(62, 52, 54,.62); }
.value{ font-size: 18px; font-weight: 900; letter-spacing: -.02em; margin-top: 2px; }
.scarcity-note{ color: rgba(62, 52, 54,.72); font-size: 13px; }

.hero-media{
  display: grid;
  gap: 14px;
  position: sticky;
  top: 92px;
}
.hero-card{
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(62, 52, 54, .10);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow);
}
.hero-photo img{ width: 100%; height: 360px; object-fit: cover; }
.hero-badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px;
}
.badge{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(62, 52, 54, .10);
  background: rgba(255,255,255,.66);
}
.hero-mini{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: var(--radius2);
  border: 1px solid rgba(62, 52, 54, .10);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow2);
  padding: 12px;
}
.hero-mini img{
  width: 120px;
  height: 90px;
  border-radius: 16px;
  object-fit: cover;
}
.hero-mini-title{ font-weight: 900; letter-spacing: -.01em; }
.hero-mini-sub{ color: rgba(62, 52, 54,.66); font-size: 13px; margin-top: 2px; }

.card{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 22px 60px rgba(62, 52, 54, .07);
  padding: 18px;
}
.card-strong{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.76));
  border-color: rgba(122, 74, 88, .20);
  box-shadow: 0 28px 70px rgba(122, 74, 88, .12);
}
.grid-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.list{ margin: 10px 0 0; padding-left: 18px; color: rgba(62, 52, 54,.74); }
.list li{ margin: 6px 0; }
.list.compact li{ margin: 4px 0; }
.callout{
  margin-top: 12px;
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 122, 24, .22);
  background: rgba(255, 122, 24, .08);
}

.split{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: center;
}
.feature-list{ display: grid; gap: 10px; margin-top: 14px; }
.feature{ display: flex; gap: 12px; align-items: flex-start; }
.icon{
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(42, 163, 107, .10);
  border: 1px solid rgba(42, 163, 107, .18);
  color: rgba(42, 163, 107, .95);
  font-weight: 900;
}
.feature-title{ font-weight: 900; letter-spacing: -.01em; }
.feature-sub{ color: rgba(62, 52, 54,.68); font-size: 13.5px; margin-top: 2px; }

.media-frame{
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius2);
  border: 1px solid rgba(62, 52, 54, .10);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow);
}
.media-frame img{ width: 100%; height: 360px; object-fit: cover; }
.media-frame figcaption{
  padding: 12px 14px;
  color: rgba(62, 52, 54,.66);
  font-size: 13px;
}

.ladder{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ladder-top{ display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.step-badge{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(122, 74, 88, .18);
  background: rgba(122, 74, 88, .08);
  color: rgba(62, 52, 54,.78);
}

.offer-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: start;
}
.offer-main .checklist{ margin-top: 12px; }
.checklist{ list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checklist li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(62, 52, 54,.76);
}
.checklist li::before{
  content: "✓";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(42, 163, 107, .10);
  border: 1px solid rgba(42, 163, 107, .18);
  color: rgba(42, 163, 107, .95);
  font-weight: 900;
  margin-top: 1px;
}
.checklist.compact{ gap: 8px; }
.offer-cta{ display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

.guarantee-card .guarantee-head{ display: flex; gap: 12px; align-items: flex-start; }
.seal{
  width: 46px; height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, rgba(42, 163, 107, 1), rgba(95, 224, 165, .92));
  box-shadow: 0 18px 40px rgba(42, 163, 107, .18);
}
.guarantee-points{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.mini{
  border-radius: 16px;
  border: 1px solid rgba(62, 52, 54, .08);
  background: rgba(255,255,255,.58);
  padding: 12px;
}
.mini-title{ font-weight: 900; }
.mini-sub{ color: rgba(62, 52, 54,.66); font-size: 13px; margin-top: 2px; }

.divider{ height: 1px; background: rgba(62, 52, 54, .08); margin: 12px 0; }

.timeline{
  display: grid;
  gap: 12px;
}
.step{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(62, 52, 54, .10);
  background: rgba(255,255,255,.58);
  box-shadow: 0 18px 50px rgba(62, 52, 54, .06);
}
.step-num{
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(122, 74, 88, .10);
  border: 1px solid rgba(122, 74, 88, .18);
}
.step-title{ font-weight: 900; margin-bottom: 4px; }
.step-text{ color: rgba(62, 52, 54,.70); }

.accordion{
  display: grid;
  gap: 10px;
}
.acc-item{
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(62, 52, 54, .10);
  background: rgba(255,255,255,.60);
  box-shadow: 0 18px 50px rgba(62, 52, 54, .05);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.acc-item:hover{ background: rgba(255,255,255,.72); transform: translateY(-1px); }
.acc-left{ display: inline-flex; align-items: center; gap: 12px; }
.acc-num{
  font-family: var(--mono);
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(122, 74, 88, .08);
  border: 1px solid rgba(122, 74, 88, .16);
}
.acc-title{ font-weight: 900; letter-spacing: -.01em; }
.acc-icon{
  width: 34px; height: 34px;
  border-radius: 14px;
  border: 1px solid rgba(62, 52, 54, .10);
  background: rgba(255,255,255,.56);
  position: relative;
}
.acc-icon::before,
.acc-icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(62, 52, 54,.70);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}
.acc-icon::after{ transform: translate(-50%, -50%) rotate(90deg); transition: transform .15s ease; }
.acc-item[aria-expanded="true"] .acc-icon::after{ transform: translate(-50%, -50%) rotate(0deg); }
.acc-panel{
  padding: 0 16px 14px;
  color: rgba(62, 52, 54,.72);
}
.acc-panel p{ margin: 10px 0 0; }

.tag{
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid rgba(122, 74, 88, .16);
  background: rgba(122, 74, 88, .07);
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(62, 52, 54,.76);
}
.nogo{ margin-top: 14px; }

.reviews{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 14px;
  align-items: start;
}
.review-media{
  margin: 0;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(62, 52, 54, .10);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow);
}
.review-media img{ width: 100%; height: 420px; object-fit: cover; }
.review-media figcaption{ padding: 12px 14px; font-size: 13px; color: rgba(62, 52, 54,.66); }
.review-cards{ display: grid; gap: 12px; }
.stars{ color: rgba(255, 122, 24, .96); letter-spacing: .12em; font-size: 12px; }
.review-author{ display: flex; gap: 12px; align-items: center; margin-top: 14px; }
.avatar{
  width: 40px; height: 40px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(122, 74, 88, .10);
  border: 1px solid rgba(122, 74, 88, .18);
  font-weight: 900;
}
.name{ font-weight: 900; }
.meta{ font-size: 12.5px; color: rgba(62, 52, 54,.64); margin-top: 2px; }

.cta-banner{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(122, 74, 88, .18);
  background: linear-gradient(135deg, rgba(255,255,255,.84), rgba(255,255,255,.62));
  box-shadow: 0 28px 80px rgba(122, 74, 88, .10);
}
.cta-actions{ display: grid; gap: 10px; }
.cta-timer{
  border-radius: 18px;
  border: 1px solid rgba(62, 52, 54, .10);
  background: rgba(255,255,255,.62);
  padding: 12px;
}
.cta-timer .value{ margin-top: 6px; }

.final-grid{
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 14px;
  align-items: start;
}
.contacts{
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.contact{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(62, 52, 54, .10);
  background: rgba(255,255,255,.60);
}
.contact .k{ color: rgba(62, 52, 54,.62); font-size: 12px; }
.contact .v a{ text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.form{ display: grid; gap: 12px; margin-top: 12px; }
.field{ display: grid; gap: 7px; }
.field-label{ font-size: 12px; color: rgba(62, 52, 54,.66); }
input, select, textarea{
  border-radius: 16px;
  border: 1px solid rgba(62, 52, 54, .12);
  background: rgba(255,255,255,.70);
  padding: 12px 12px;
  outline: none;
}
textarea{ resize: vertical; }
input:focus, select:focus, textarea:focus{ box-shadow: 0 0 0 6px var(--focus); border-color: rgba(122, 74, 88, .35); }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"]{
  border-color: rgba(255, 122, 24, .48);
  box-shadow: 0 0 0 6px rgba(255, 122, 24, .14);
}
.form-message{
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(42, 163, 107, .10);
  border: 1px solid rgba(42, 163, 107, .18);
  color: rgba(62, 52, 54,.84);
}
.form-message.is-error{
  background: rgba(255, 122, 24, .10);
  border-color: rgba(255, 122, 24, .22);
}

.footer{
  padding: 28px 0 40px;
  border-top: 1px solid rgba(62, 52, 54, .08);
}
.footer-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-note{ margin-top: 10px; color: rgba(62, 52, 54,.62); font-size: 12px; }
.footer-right{ display: flex; gap: 10px; flex-wrap: wrap; }
.footer-link{
  font-size: 13px;
  color: rgba(62, 52, 54,.70);
  padding: 8px 10px;
  border-radius: 999px;
}
.footer-link:hover{ background: rgba(122, 74, 88, .08); }

.modal[aria-hidden="true"]{ pointer-events: none; opacity: 0; }
.modal{
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  transition: opacity .18s ease;
}
.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(14, 16, 20, .42);
  backdrop-filter: blur(6px);
}
.modal-dialog{
  position: relative;
  width: min(560px, 100%);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.88);
  box-shadow: 0 40px 120px rgba(0,0,0,.22);
  padding: 18px;
}
.modal-close{
  position: absolute;
  right: 12px;
  top: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
}
.modal-head{ padding-right: 44px; }

.mobile-menu{
  border-top: 1px solid rgba(62, 52, 54, .08);
  background: rgba(247, 241, 238, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.mobile-menu-inner{
  padding: 14px 0 18px;
  display: grid;
  gap: 8px;
}
.mobile-actions{ display: grid; gap: 10px; margin-top: 10px; }

.reveal{ opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn{ transition: none !important; }
}

@media (max-width: 980px){
  .nav{ display: none; }
  .icon-btn{ display: grid; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media{ position: relative; top: 0; }
  .grid-3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .ladder{ grid-template-columns: 1fr; }
  .offer-grid{ grid-template-columns: 1fr; }
  .reviews{ grid-template-columns: 1fr; }
  .cta-banner{ grid-template-columns: 1fr; }
  .final-grid{ grid-template-columns: 1fr; }
  .hero-metrics{ grid-template-columns: 1fr; }
}

.field-check{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.field-check input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--accent);
}
.field-check-text{
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(62, 52, 54,.62);
}
.field-check input[aria-invalid="true"]{
  outline: 2px solid rgba(255, 122, 24, .48);
  outline-offset: 1px;
}
.link-btn{
  display: inline;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.link-btn:hover{ color: #5c3844; }
.footer-link-btn{
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

.privacy-modal{ z-index: 110; }
.privacy-dialog{
  width: min(720px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}
.privacy-body{
  overflow-y: auto;
  max-height: calc(90vh - 100px);
  padding-right: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(62, 52, 54,.84);
}
.policy-doc h2{
  font-size: 1.2rem;
  margin: 0 0 8px;
}
.policy-doc h3{
  font-size: 1rem;
  margin: 20px 0 8px;
}
.policy-doc h4{
  font-size: 0.92rem;
  margin: 14px 0 6px;
}
.policy-doc p{ margin: 0 0 10px; }
.policy-doc ul{
  margin: 0 0 12px;
  padding-left: 1.2em;
}
.policy-doc li{ margin-bottom: 4px; }
.policy-doc a{ color: var(--accent); text-decoration: underline; }
.policy-meta{
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px !important;
}
.policy-doc code{
  font-size: 0.88em;
  background: rgba(62, 52, 54, .06);
  padding: 1px 5px;
  border-radius: 4px;
}

.cookie-bar{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(62, 52, 54, .10);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  backdrop-filter: blur(12px);
}
.cookie-bar[hidden]{ display: none !important; }
.cookie-bar-text{
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(62, 52, 54,.78);
  flex: 1;
  min-width: 200px;
}
.cookie-bar .btn-sm{
  padding: 8px 16px;
  font-size: 13px;
  white-space: nowrap;
}

