* { margin: 0; padding: 0; }
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.7; color: #052e16; background: #ffffff; }
h1, h2, h3, h4 { line-height: 1.16; font-weight: 700; }
ol, ul { list-style: none; }
a { color: #15803d; text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
img { max-width: 100%; height: auto; }
table { border-collapse: collapse; }

:root {
  --surf-1: #ffffff;
  --surf-2: #f0fdf4;
  --surf-3: #dcfce7;
  --brand: #16a34a;
  --brand-dk: #15803d;
  --warm: #b45309;
  --ink: #052e16;
  --ink-2: #365314;
  --ink-mut: #4d7c0f;
  --line: rgba(5, 46, 22, 0.12);
  --shade: rgba(5, 46, 22, 0.08);
  --deep: #0b2116;
  --rad-s: 8px;
  --rad-l: 14px;
  --pace: 0.2s ease;
}

[data-theme="dark"] {
  --surf-1: #0b1410;
  --surf-2: #10201a;
  --surf-3: #163024;
  --brand: #4ade80;
  --brand-dk: #86efac;
  --warm: #fbbf24;
  --ink: #ecfdf5;
  --ink-2: #bbf7d0;
  --ink-mut: #86efac;
  --line: rgba(236, 253, 245, 0.16);
  --shade: rgba(0, 0, 0, 0.5);
  --deep: #061009;
}

[data-theme="dark"] body { background: var(--surf-1); color: var(--ink); }


[data-mm-header]{--mm-bg:#ffffff;--mm-text:#333333;--mm-primary:#2563eb;--mm-overlay-bg:rgba(0,0,0,0.5);--mm-transition:0.3s ease}[data-mm-header]{position:relative}[data-mm-toggle]{display:flex;flex-direction:column;justify-content:center;gap:5px;background:none;border:none;cursor:pointer;padding:8px;z-index:1001}[data-mm-toggle] span{display:block;width:24px;height:2px;background:var(--mm-text);transition:var(--mm-transition)}[data-mm-menu]{position:fixed;top:0;left:0;width:100%;height:100vh;height:100dvh;background:var(--mm-bg);opacity:0;visibility:hidden;transition:opacity var(--mm-transition),visibility var(--mm-transition);z-index:1100;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:24px}[data-mm-menu].mm-open{opacity:1;visibility:visible}[data-mm-menu] ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;align-items:center;gap:8px}[data-mm-menu] ul li a{display:block;padding:12px 24px;color:var(--mm-text);text-decoration:none;font-size:22px;font-weight:500;transition:color var(--mm-transition)}[data-mm-menu] ul li a:hover{color:var(--mm-primary)}[data-mm-close]{position:absolute;top:20px;right:20px;background:none;border:none;font-size:32px;line-height:1;cursor:pointer;color:var(--mm-text);padding:4px 8px;z-index:1101}@media(min-width:768px){[data-mm-toggle]{display:none!important}[data-mm-menu]{position:static!important;width:auto!important;height:auto!important;background:transparent!important;opacity:1!important;visibility:visible!important;padding:0!important;flex-direction:row!important;justify-content:flex-end!important}[data-mm-menu] ul{flex-direction:row;gap:0;align-items:center}[data-mm-menu] ul li a{padding:8px 16px;font-size:inherit;font-weight:inherit}[data-mm-close]{display:none!important}}@media(prefers-reduced-motion:reduce){[data-mm-menu],[data-mm-toggle] span{transition:none!important}}

[data-mm-header] {
  --mm-bg: var(--surf-1);
  --mm-text: var(--ink);
  --mm-primary: var(--brand);
  --mm-overlay-bg: rgba(5, 46, 22, 0.55);
}


body {
  display: grid;
  grid-template-areas: "header" "main" "footer";
  grid-template-rows: auto 1fr auto;
  grid-template-columns: minmax(0, 100%);
  min-height: 100vh;
}
.hd { grid-area: header; }
.mn { grid-area: main; }
.ftr { grid-area: footer; }


.wrap { width: min(92%, 1080px); margin-inline: auto; }
.wrap-n { width: min(92%, 900px); margin-inline: auto; }
.d-fx { display: flex; }
.d-gr { display: grid; }
.d-bk { display: block; }
.fd-c { flex-direction: column; }
.ai-c { align-items: center; }
.ai-s { align-items: flex-start; }
.jc-b { justify-content: space-between; }
.jc-c { justify-content: center; }
.fw-wr { flex-wrap: wrap; }
.g-1 { gap: 0.5rem; }
.g-2 { gap: 1rem; }
.g-3 { gap: 2rem; }
.g-4 { gap: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.pa-3 { padding: 1.5rem; }
.pa-4 { padding: 2rem; }
.t-c { text-align: center; }
.f-xs { font-size: 0.8125rem; }
.f-sm { font-size: 0.9375rem; }
.f-lg { font-size: 1.125rem; }
.f-xl { font-size: clamp(1.25rem, 3vw, 1.5rem); }
.fw-6 { font-weight: 600; }
.fw-7 { font-weight: 700; }
.fw-8 { font-weight: 800; }
.up { text-transform: uppercase; letter-spacing: 0.14em; }
.t-mut { color: var(--ink-mut); }
.t-acc { color: var(--brand-dk); }
.t-inv { color: #ffffff; }
.bg-wh { background: var(--surf-1); }
.bg-soft { background: var(--surf-2); }
.bg-mint { background: var(--surf-3); }
.rad-2 { border-radius: var(--rad-s); }
.rad-3 { border-radius: var(--rad-l); }
.sh-1 { box-shadow: 0 6px 20px var(--shade); }
.w-100 { width: 100%; }
.mx-a { margin-inline: auto; }
.bd-t { border-top: 1px solid var(--line); }

h1 { font-size: clamp(2rem, 6vw, 3.25rem); font-weight: 800; line-height: 1.12; }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.125rem); font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.7; }


.bar-top {
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--deep);
  color: var(--surf-3);
}


.hd { background: var(--surf-1); border-bottom: 1px solid var(--line); }
.hd-in { padding: 0.9rem 0; }
.hd-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.hd-brand:hover { text-decoration: none; }
.hd-mark { height: 2.25rem; width: auto; }
.hd-name { font-weight: 800; font-size: 1.0625rem; letter-spacing: 0.02em; color: var(--ink); }
.hd-nav { flex: 1; }
.hd-list { width: 100%; transform: translateX(-100%); transition: transform 0.3s; }
[data-mm-menu].mm-open .hd-list { transform: translateX(0); }
.hd-item { text-align: center; }
.hd-lnk { color: var(--ink-2); font-weight: 600; font-size: 0.9375rem; }
.hd-lnk:hover { color: var(--brand-dk); text-decoration: none; }
.hd-thm { padding: 0.5rem; border-radius: 50%; border: 1px solid var(--line); line-height: 0; transition: background var(--pace); }
.hd-thm:hover { background: var(--surf-2); }
.hd-thm svg { width: 18px; height: 18px; }
.hd-acts { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }
.hd-tgl { margin-left: auto; }
.hd-cls { width: 44px; height: 44px; }


.sec { padding: 3.25rem 1rem; }
.sec-opse { background: var(--surf-2); }
.sec-whtuin { background: var(--surf-1); }
.sec-stpr { background: var(--surf-3); }
.sec-seli { background: var(--surf-1); }
.sec-bethsc { background: var(--surf-2); }
.sec-gara { background: var(--surf-1); }
.sec-geintode { background: var(--deep); color: #ffffff; }
.sec-ligu { background: var(--surf-1); }
.sec-lead { max-width: 46rem; }
.sec-eyebrow { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--brand-dk); font-weight: 700; }


.div-wave { line-height: 0; }
.div-wave svg { display: block; width: 100%; height: 80px; fill: var(--surf-2); }
.div-wave-b svg { fill: var(--surf-3); }


.hero { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.hero-media { order: -1; position: relative; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 8% 4%;
  z-index: 0;
  border-radius: 40% 60% 55% 45%;
  background-image: radial-gradient(circle at 42% 44%, rgba(22, 163, 74, 0.22), rgba(22, 163, 74, 0) 68%);
}
.hero-shot { position: relative; z-index: 1; width: 100%; border-radius: var(--rad-l); box-shadow: 0 6px 20px var(--shade); }
.hero-body { max-width: 34rem; }
.hero-sub { font-size: 1.0625rem; color: var(--ink-2); }
.price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.75rem; }
.price-now { font-size: 2.75rem; font-weight: 800; color: var(--brand-dk); line-height: 1; }
.price-old { font-size: 1.25rem; color: var(--ink-mut); text-decoration: line-through; }
.badge-off { background: var(--warm); color: #ffffff; border-radius: 999px; padding: 0.3rem 0.8rem; font-weight: 800; font-size: 0.875rem; }
.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.badge-tag { border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.85rem; font-size: 0.8125rem; font-weight: 600; color: var(--ink-2); background: var(--surf-1); }


.stat-row { display: flex; justify-content: center; gap: 1.5rem; margin: 3rem 0; flex-wrap: wrap; }
.stat-cell { text-align: center; }
.stat-num { font-size: 4rem; font-weight: 800; color: var(--brand); line-height: 1; }
.stat-lab { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.15em; margin-top: 0.5rem; color: var(--ink-2); }


.btn { display: inline-block; text-align: center; border-radius: var(--rad-s); padding: 0.85rem 1.6rem; font-weight: 600; transition: 0.2s; }
.btn-pri { background: var(--brand); color: #ffffff; border: none; }
.btn-pri:hover { filter: brightness(0.92); text-decoration: none; }
.btn-pri:active { transform: scale(0.95); }
.btn-gho { border: 1px solid var(--brand); color: var(--brand-dk); background: transparent; }
.btn-gho:hover { background: var(--surf-3); text-decoration: none; }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.0625rem; }


.grid-uni { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.card { border-radius: 14px; padding: 1.75rem; background: var(--surf-1); box-shadow: 0 6px 20px var(--shade); transition: 0.25s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(5, 46, 22, 0.14); }
.card-h { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--ink); }
.card-t { color: var(--ink-2); font-size: 0.9375rem; }
.card-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--surf-3); display: grid; place-items: center; margin-bottom: 1rem; }
.card-ic svg { width: 22px; height: 22px; }


.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--rad-l); background: var(--surf-1); }
.tbl { width: 100%; min-width: 34rem; font-size: 0.9375rem; }
.tbl caption { text-align: left; padding: 1.1rem 1.25rem 0; font-weight: 700; color: var(--ink); }
.tbl th, .tbl td { padding: 0.85rem 1.25rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.tbl thead th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-mut); }
.tbl tbody tr:last-child td { border-bottom: none; }
.tbl-n { font-weight: 700; color: var(--ink); white-space: nowrap; }
.tbl-v { white-space: nowrap; color: var(--ink-2); }
.tbl-c { color: var(--ink-2); }
.note-box { border-left: 3px solid var(--brand); padding: 1rem 1.25rem; background: var(--surf-2); border-radius: 0 var(--rad-s) var(--rad-s) 0; }
.note-list li { padding-left: 1.1rem; position: relative; margin-bottom: 0.45rem; color: var(--ink-2); font-size: 0.9375rem; }
.note-list li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }


.step { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.step-n { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--brand); color: #ffffff; display: grid; place-items: center; font-weight: 800; }
.step-h { font-weight: 700; margin-bottom: 0.25rem; color: var(--ink); }
.step-t { color: var(--ink-2); font-size: 0.9375rem; }


.gar { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.gar:last-child { border-bottom: none; }
.gar-ic { width: 34px; height: 34px; border-radius: 10px; background: var(--surf-3); display: grid; place-items: center; }
.gar-ic svg { width: 18px; height: 18px; }
.gar-h { font-weight: 700; color: var(--ink); }
.gar-t { color: var(--ink-2); font-size: 0.9375rem; }


.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-shown { opacity: 1; transform: translateY(0); }
.ord-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.ord-card { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--rad-l); padding: 1.75rem; }
.ord-price { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.ord-step { color: #d9f5e3; font-size: 0.9375rem; }
.ord-step strong { color: #ffffff; }
.ord-lnk { color: #bbf7d0; font-weight: 700; }
.ord-card .price-old { color: #9db3a4; }


.faq-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.faq-ic { width: 34px; height: 34px; border-radius: 50%; background: var(--surf-3); color: var(--brand-dk); display: grid; place-items: center; font-weight: 700; }
.faq-q { font-weight: 700; margin-bottom: 0.35rem; color: var(--ink); }
.faq-a { color: var(--ink-2); font-size: 0.9375rem; }


.doc { padding: 3.25rem 1rem; background: var(--surf-1); }
.doc h1 { overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
.doc h2 { font-size: 1.375rem; margin-top: 2rem; margin-bottom: 1rem; }
.doc p { margin-bottom: 1rem; color: var(--ink-2); }
.doc-list li { padding-left: 1.1rem; position: relative; margin-bottom: 0.5rem; color: var(--ink-2); }
.doc-list li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.doc-meta { font-size: 0.8125rem; color: var(--ink-mut); }


.ftr { background: var(--deep); color: #cbd5c4; padding: 2.5rem 1rem; }
.ftr-cols { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.ftr-h { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.16em; color: #ffffff; margin-bottom: 0.9rem; width: 100%; text-align: left; }
.ftr-body { display: block; }
.ftr-lnk { display: block; color: #cbd5c4; padding: 0.3rem 0; font-size: 0.9375rem; }
.ftr-lnk:hover { color: #ffffff; }
.ftr-txt { font-size: 0.9375rem; color: #cbd5c4; }
.ftr-note { font-size: 0.8125rem; color: #9db3a4; }
.ftr-legal { border-top: 1px solid rgba(255, 255, 255, 0.14); margin-top: 2rem; padding-top: 1.5rem; }
.ftr-mark { height: 2rem; width: auto; }


.modal { position: fixed; inset: 0; z-index: 1400; display: none; align-items: center; justify-content: center; padding: 1rem; background: rgba(5, 46, 22, 0.62); }
.modal.is-open { display: flex; }
.modal-box { background: var(--surf-1); border-radius: var(--rad-l); padding: 1.75rem; width: min(100%, 27rem); max-height: 92vh; overflow-y: auto; position: relative; box-shadow: 0 24px 60px rgba(5, 46, 22, 0.35); }
.modal-x { position: absolute; top: 0.6rem; right: 0.8rem; font-size: 1.75rem; line-height: 1; color: var(--ink-mut); width: 44px; height: 44px; }
.fld { margin-bottom: 1rem; }
.fld-l { display: block; font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.35rem; color: var(--ink); }
.fld-i { width: 100%; padding: 0.75rem 0.9rem; border: 1px solid var(--line); border-radius: var(--rad-s); background: var(--surf-1); color: var(--ink); font: inherit; transition: box-shadow 0.2s ease, border-color 0.2s ease; }
.fld-i:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.28); }
.chk { display: grid; grid-template-columns: auto 1fr; gap: 0.6rem; font-size: 0.8125rem; color: var(--ink-2); margin-bottom: 1.25rem; }
.chk input { width: 18px; height: 18px; margin-top: 0.2rem; accent-color: var(--brand); }
.form-note { font-size: 0.8125rem; color: var(--ink-mut); margin-top: 0.9rem; }
.form-err { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; border-radius: var(--rad-s); padding: 0.75rem 0.9rem; font-size: 0.875rem; margin-bottom: 1rem; }
.done-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--surf-3); display: grid; place-items: center; margin: 0 auto 1.5rem; }
.done-ic svg { width: 30px; height: 30px; }


.cc-bar { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 1300; background: var(--surf-1); color: var(--ink); border: 1px solid var(--line); border-radius: var(--rad-l); box-shadow: 0 16px 40px rgba(5, 46, 22, 0.22); padding: 1.25rem; display: none; }
.cc-bar.is-live { display: block; }
.cc-t { font-weight: 800; margin-bottom: 0.4rem; }
.cc-d { font-size: 0.875rem; color: var(--ink-2); margin-bottom: 1rem; }
.cc-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cc-btn { border-radius: var(--rad-s); padding: 0.75rem 1.5rem; font-weight: 600; font-size: 0.875rem; flex: 1 1 auto; transition: 0.2s; }
.cc-acc { background: var(--brand); color: #ffffff; }
.cc-rej { background: var(--surf-3); color: var(--ink); }
.cc-cfg { border: 1px solid var(--line); color: var(--ink-2); }
.cc-btn:active { transform: scale(0.95); }
.cc-panel { display: none; margin-top: 1rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.cc-panel.is-live { display: block; }
.cc-row { display: grid; grid-template-columns: auto 1fr; gap: 0.6rem; margin-bottom: 0.85rem; }
.cc-row input { width: 18px; height: 18px; margin-top: 0.25rem; accent-color: var(--brand); }
.cc-rt { font-weight: 700; font-size: 0.875rem; }
.cc-rd { font-size: 0.8125rem; color: var(--ink-mut); }
.cc-link { color: var(--brand-dk); text-decoration: underline; }

@media (max-width: 767px) {
  .col-head { cursor: pointer; position: relative; padding-right: 1.5rem; }
  .col-head::after { content: "+"; position: absolute; right: 0; top: -0.1rem; font-size: 1.25rem; font-weight: 700; }
  .is-open > .col-head::after { content: "–"; }
  .col-body { display: none; }
  .is-open > .col-body { display: block; }
  .stat-num { font-size: 3rem; }

  
  .tbl-wrap { overflow-x: visible; min-width: 0; }
  .tbl { min-width: 0; display: block; }
  .tbl caption { display: block; padding: 1.1rem 1.25rem 0.35rem; }
  .tbl thead { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
  .tbl tbody, .tbl tr, .tbl td { display: block; }
  .tbl tbody tr { padding: 0.95rem 1.25rem; border-bottom: 1px solid var(--line); }
  .tbl tbody tr:last-child { border-bottom: none; }
  .tbl td { padding: 0; border-bottom: none; }
  .tbl-n { margin-bottom: 0.15rem; }
  .tbl td.tbl-v { display: inline-block; margin-right: 0.85rem; }
  .tbl td:nth-child(3)::after { content: " NRV"; }
  .tbl-c { margin-top: 0.35rem; }
}

@media (min-width: 768px) {
  .hd-list { transform: none; transition: none; }
  .sec { padding: 6rem 2rem; }
  .doc { padding: 6rem 2rem; }
  h2 { margin-bottom: 2.5rem; }
  .hero { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .stat-row { gap: 4rem; }
  .ord-grid { grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: center; }
  .ftr-cols { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .cc-bar { left: auto; right: 2rem; bottom: 2rem; width: 26rem; padding: 1.5rem; }
}

@media (min-width: 1024px) {
  .wrap { width: min(90%, 1080px); }
  .hero { gap: max(3rem, 4vw); }
  .sec-lead { max-width: 52rem; }
}
