:root {
--black: #00140F; --ink: #1A1A18; --white: #FFFFFF;
--deep-forest: #003D2B; --deep-forest-dark: #002E22; --deep-forest-light: #E6F1EC;
--pale-spring: #F2FFC9; --pale-spring-light: #FAFFE4; --pale-spring-dark: #879E11;
--grey-50: #FBFAF9; --grey-100: #F9F7F6; --grey-150: #F4F1EF; --grey-200: #F0ECEA;
--grey-300: #DDD8D5; --grey-400: #BDB8B4; --grey-500: #9A9795; --grey-700: #4F4C4A;
--success: #30AD36; --success-dark: #0A3F0D; --success-light: #D7F0D9;
--error: #D32F2F; --error-dark: #4A0B0B; --error-light: #FADADA;
--r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px; --r-2xl: 32px; --r-full: 9999px;
--ease: cubic-bezier(0.76, 0, 0.24, 1); --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
--dur: 250ms; --hair: 1px solid var(--grey-200); --hair-strong: 1px solid var(--grey-300);
--shadow-float: 0 2px 6px rgba(0,20,15,.04), 0 18px 40px -12px rgba(0,20,15,.12), 0 40px 80px -24px rgba(0,20,15,.10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--white); color: var(--black); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-size: 17px; line-height: 1.5; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { padding: 120px 0; }
h1 { font-weight: 600; letter-spacing: -1.6px; }
h2 { font-size: clamp(28px, 3.8vw, 48px); line-height: 1.07; font-weight: 600; letter-spacing: -1.1px; }
h3 { font-size: 21px; line-height: 1.3; font-weight: 600; letter-spacing: -0.3px; }
h4 { font-size: 15px; line-height: 1.4; font-weight: 600; }
.lead { color: var(--grey-700); font-size: 19px; line-height: 1.6; max-width: 600px; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--deep-forest); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow .num { color: var(--grey-400); font-variant-numeric: tabular-nums; }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-left: auto; margin-right: auto; }
.muted { color: var(--grey-500); font-size: 13px; line-height: 1.5; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 80ms; } .reveal.d2 { transition-delay: 160ms; } .reveal.d3 { transition-delay: 240ms; }
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.72); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid transparent; transition: border-color var(--dur) var(--ease); }
.nav.scrolled { border-bottom: var(--hair); }
.nav .row { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.nav .brand { display: inline-flex; align-items: center; color: var(--black); text-decoration: none; }
.nav .brand svg { height: 16px; width: auto; display: block; }
.nav .right { display: flex; align-items: center; gap: 14px; }
.nav .soon { font-size: 13px; color: var(--grey-500); font-weight: 500; white-space: nowrap; }
.nav .cta { background: var(--black); color: var(--white); text-decoration: none; font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: var(--r-full); transition: background var(--dur) var(--ease); }
.nav .cta:hover { background: var(--deep-forest); }
.hero { position: relative; overflow: hidden; background: var(--white); }
.hero::before { content: ""; position: absolute; z-index: 0; top: -16%; left: -22%; width: 820px; height: 820px; border-radius: 50%;
background: radial-gradient(circle at 50% 50%, rgba(242,255,201,.40), rgba(230,241,236,.22) 44%, rgba(255,255,255,0) 70%); filter: blur(10px); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-top: 88px; padding-bottom: 96px; }
.hero .badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--deep-forest); border: 1px solid var(--grey-300); border-radius: var(--r-full); padding: 7px 14px; font-size: 13px; font-weight: 500; margin-bottom: 26px; }
.hero .badge i { font-size: 15px; }
.hero h1 { font-size: clamp(38px, 5.6vw, 68px); line-height: 1.0; max-width: 13ch; color: var(--black); }
.hero .lead { margin-top: 24px; color: var(--ink); }
.hero .scrollcue { display: inline-flex; align-items: center; gap: 9px; margin-top: 36px; color: var(--grey-700); font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; border-radius: var(--r-sm); transition: color var(--dur) var(--ease); }
.hero .scrollcue:hover { color: var(--deep-forest); }
.hero .scrollcue:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--deep-forest-light); }
.hero .scrollcue i { font-size: 18px; animation: bob 1.8s var(--ease) infinite; }
.hero .scrollcue:hover i { animation-duration: 1.1s; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual img { width: 100%; height: auto; display: block; margin: 0 auto; will-change: transform; }
.hero-visual img.phone { max-width: 340px; }
.hero-visual img.graphic { max-width: 480px; }
.calc { position: relative; overflow: hidden; background: var(--grey-100); }
.calc::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
background:
radial-gradient(1100px circle at 6% 10%, rgba(242,255,201,.32), transparent 62%),
radial-gradient(1000px circle at 94% 90%, rgba(0,61,43,.08), transparent 64%),
radial-gradient(820px circle at 78% 4%, rgba(230,241,236,.38), transparent 64%); }
.calc > .wrap { position: relative; z-index: 1; }
.calc-grid { margin-top: 44px; }
.guidecue { display: inline-flex; align-items: center; gap: 14px; margin: 18px 0 40px; font-size: 14px; color: var(--grey-700); }
.guidecue .step { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.guidecue .step b { width: 22px; height: 22px; border-radius: var(--r-full); background: var(--deep-forest-light); color: var(--deep-forest); font-size: 12px; display: inline-flex; align-items: center; justify-content: center; }
.guidecue i { color: var(--grey-400); }
.calc-grid { display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: stretch; }
.results { display: flex; flex-direction: column; justify-content: center; }
.inputs { position: sticky; top: 84px; }
.panel { background: rgba(255,255,255,.55); -webkit-backdrop-filter: blur(24px) saturate(160%); backdrop-filter: blur(24px) saturate(160%); border: 1px solid rgba(255,255,255,.7); border-radius: var(--r-2xl); padding: 32px; box-shadow: inset 0 1px 1px rgba(255,255,255,.6), 0 20px 50px -24px rgba(0,20,15,.18); }
.panel h3 { margin-bottom: 4px; }
.panel .sub { color: var(--grey-500); font-size: 13px; margin-bottom: 28px; }
.field { margin-bottom: 26px; }
.field:last-child { margin-bottom: 0; }
.field label { display: block; font-weight: 500; font-size: 14px; line-height: 1.5; margin-bottom: 12px; color: var(--grey-700); }
.field .val { float: right; font-weight: 600; font-size: 17px; color: var(--black); letter-spacing: -0.3px; font-variant-numeric: tabular-nums; margin-top: -2px; }
.divider { height: 1px; background: var(--grey-200); margin: 30px 0; }
input[type="range"] { width: 100%; height: 6px; border-radius: var(--r-full); background: var(--grey-300); outline: none; -webkit-appearance: none; appearance: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: var(--r-full); background: var(--deep-forest); cursor: pointer; transition: transform var(--dur) var(--ease); border: 4px solid var(--white); box-shadow: 0 1px 4px rgba(0,20,15,.18), 0 0 0 1px var(--grey-300); }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.1); }
input[type="range"]::-moz-range-thumb { width: 26px; height: 26px; border-radius: var(--r-full); background: var(--deep-forest); cursor: pointer; border: 4px solid var(--white); }
input[type="number"], select, input[type="text"], input[type="email"] { width: 100%; padding: 12px; border: var(--hair-strong); border-radius: var(--r-sm); font-size: 15px; font-family: inherit; background: var(--white); color: var(--black); }
input:focus, select:focus { outline: none; border-color: var(--deep-forest); box-shadow: 0 0 0 3px var(--deep-forest-light); }
.hint { font-size: 12px; line-height: 1.5; color: var(--grey-500); margin-top: 8px; }
.verdict { border-radius: var(--r-2xl); padding: 40px 4px; margin-bottom: 24px; border: none; background: transparent; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.verdict.wechseln, .verdict.behalten { padding: 40px; border-radius: var(--r-2xl); }
.verdict.wechseln { background: rgba(242,255,201,.5); -webkit-backdrop-filter: blur(26px) saturate(170%); backdrop-filter: blur(26px) saturate(170%); border: 1px solid rgba(255,255,255,.55); box-shadow: inset 0 1px 1px rgba(255,255,255,.6), 0 24px 60px -28px rgba(0,61,43,.22); }
.verdict.behalten { background: rgba(255,255,255,.5); -webkit-backdrop-filter: blur(24px) saturate(150%); backdrop-filter: blur(24px) saturate(150%); border: 1px solid rgba(255,255,255,.6); box-shadow: inset 0 1px 1px rgba(255,255,255,.6), 0 20px 50px -26px rgba(0,20,15,.16); }
.verdict.behalten { background: var(--grey-100); border-color: var(--grey-300); }
.verdict .tag { font-size: 12px; line-height: 1.5; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; display: inline-flex; align-items: center; gap: 8px; color: var(--deep-forest); }
.verdict.behalten .tag, .verdict.grenzfall .tag { color: var(--grey-700); }
.verdict .headline { font-size: clamp(32px, 4.6vw, 42px); line-height: 1.06; font-weight: 600; letter-spacing: -1.2px; margin: 14px 0 10px; color: var(--black); font-variant-numeric: tabular-nums; }
.verdict .sub { font-size: 16px; line-height: 1.55; max-width: 48ch; color: var(--grey-700); }
.verdict .verdict-cta { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; background: var(--black); color: var(--white); border-radius: var(--r-full); padding: 14px 26px; font-size: 15px; line-height: 1.4; font-weight: 600; text-decoration: none; transition: background var(--dur) var(--ease); }
.verdict .verdict-cta:hover { background: var(--deep-forest); }
.verdict .verdict-cta:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--deep-forest-light); }
.verdict .verdict-cta i { font-size: 17px; transition: transform var(--dur) var(--ease); }
.verdict .verdict-cta:hover i { transform: translateX(3px); }
.verdict.grenzfall .verdict-cta { display: none; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.ccard { border-radius: var(--r-xl); padding: 24px; border: 1px solid rgba(255,255,255,.6); background: rgba(255,255,255,.55); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.ccard.avd { background: rgba(230,241,236,.45); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.ccard h4 { margin-bottom: 12px; color: var(--grey-700); }
.ccard.avd h4 { color: var(--deep-forest); }
.ccard .big { font-size: 27px; line-height: 1.1; font-weight: 600; letter-spacing: -0.8px; font-variant-numeric: tabular-nums; }
.ccard .row { display: flex; justify-content: space-between; font-size: 13px; line-height: 1.5; padding: 9px 0; border-top: var(--hair); }
.ccard .row span:first-child { color: var(--grey-500); }
.ccard .row span:last-child { font-weight: 500; }
.chart-box { margin-bottom: 24px; background: rgba(255,255,255,.5); -webkit-backdrop-filter: blur(22px) saturate(160%); backdrop-filter: blur(22px) saturate(160%); border: 1px solid rgba(255,255,255,.65); border-radius: var(--r-xl); padding: 24px; box-shadow: inset 0 1px 1px rgba(255,255,255,.6), 0 16px 40px -22px rgba(0,20,15,.14); }
.chart-canvas { position: relative; height: 320px; }
.breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bcol { background: rgba(255,255,255,.5); border-radius: var(--r-xl); padding: 22px; border: 1px solid rgba(255,255,255,.55); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.bcol h4 { font-size: 13px; line-height: 1.5; margin-bottom: 12px; color: var(--grey-700); }
.bcol .li { display: flex; justify-content: space-between; font-size: 13px; line-height: 1.6; padding: 4px 0; }
.bcol .total { border-top: var(--hair-strong); margin-top: 8px; padding-top: 8px; font-weight: 600; }
.advanced, .details { border-top: var(--hair); margin-top: 14px; padding-top: 6px; }
.advanced > summary, .details > summary { cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--deep-forest); padding: 10px 0; }
.advanced > summary::-webkit-details-marker, .details > summary::-webkit-details-marker { display: none; }
.advanced > summary i, .details > summary i { font-size: 13px; transition: transform var(--dur) var(--ease); }
.advanced[open] > summary i, .details[open] > summary i { transform: rotate(180deg); }
.adv-body { padding-top: 10px; }
.adv-body .field:last-child { margin-bottom: 4px; }
.details { margin-top: 24px; }
.details-body { padding-top: 18px; }
.calc-note { font-size: 12px; line-height: 1.55; color: var(--grey-500); margin-top: 18px; }
.calc-note strong { color: var(--grey-700); }
.micro-note, .table-note { font-size: 12px; line-height: 1.55; color: var(--grey-500); margin-top: 14px; }
.consent-link { color: var(--deep-forest); text-decoration: underline; }
.ccompare { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; margin: 0; padding: 24px 4px 0; border-top: var(--hair-strong); }
.cc-side { display: flex; flex-direction: column; gap: 4px; }
.cc-side.avd { text-align: right; align-items: flex-end; }
.cc-label { font-size: 13px; color: var(--grey-700); font-weight: 500; }
.cc-num { font-size: clamp(22px, 3vw, 30px); font-weight: 600; letter-spacing: -0.8px; font-variant-numeric: tabular-nums; color: var(--black); }
.cc-side.avd .cc-num { color: var(--deep-forest); }
.cc-arrow { color: var(--grey-400); font-size: 20px; }
.segmented { display: flex; flex-direction: column; gap: 8px; }
.seg { text-align: left; font-family: inherit; font-size: 14px; font-weight: 500; color: var(--black); background: var(--white); border: var(--hair-strong); border-radius: var(--r-md); padding: 13px 16px; cursor: pointer; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.seg:hover { border-color: var(--grey-400); }
.seg.active { border-color: var(--deep-forest); background: var(--deep-forest-light); color: var(--deep-forest); font-weight: 600; }
.field--stepper .val { display: none; }
.stepper { display: inline-flex; align-items: center; gap: 10px; }
.st-btn { flex: none; width: 42px; height: 42px; border-radius: var(--r-full); border: 1px solid var(--grey-300); background: var(--white); font-size: 19px; line-height: 1; color: var(--deep-forest); cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; justify-content: center; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.st-btn:hover { background: var(--deep-forest-light); border-color: var(--deep-forest-light); }
.st-btn:active { transform: scale(.92); }
.stepper .st-input { width: 48px; flex: none; height: auto; text-align: center; border: none; background: transparent; font-size: 18px; font-weight: 600; font-variant-numeric: tabular-nums; padding: 0; color: var(--black); -moz-appearance: textfield; appearance: textfield; box-shadow: none; }
.stepper .st-input:focus { outline: none; box-shadow: none; }
.st-input::-webkit-outer-spin-button, .st-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.chart-legend { display: flex; gap: 24px; justify-content: center; margin-top: 16px; }
.chart-legend .lg { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--grey-700); }
.chart-legend .sw { width: 18px; height: 3px; border-radius: 2px; }
.chart-legend .sw.avd { background: var(--deep-forest); }
.chart-legend .sw.riester { background: var(--grey-400); }
.hint { color: var(--grey-700); }
.panel .sub { color: var(--grey-700); }
@media (max-width: 560px) { .ccompare { padding: 20px 0 0; gap: 12px; } .cc-num { font-size: 22px; } }
.why { background: var(--white); }
.why-head { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: center; }
.why-asset { width: 280px; height: auto; display: block; justify-self: end; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 64px; }
.stat { padding: 8px 36px; border-left: var(--hair-strong); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat .from { font-size: 14px; color: var(--grey-500); text-decoration: line-through; }
.stat .to { font-size: clamp(44px, 5.2vw, 64px); line-height: 1; font-weight: 600; letter-spacing: -2px; color: var(--deep-forest); margin: 8px 0 14px; font-variant-numeric: tabular-nums; }
.stat p { font-size: 15px; line-height: 1.55; color: var(--grey-700); }
details.disclose { margin-top: 64px; border-top: var(--hair-strong); }
details.disclose summary { cursor: pointer; list-style: none; padding: 24px 0 0; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; color: var(--deep-forest); }
details.disclose summary::-webkit-details-marker { display: none; }
details.disclose summary i { transition: transform var(--dur) var(--ease); }
details.disclose[open] summary i { transform: rotate(180deg); }
table { width: 100%; border-collapse: collapse; margin-top: 24px; background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: var(--hair); }
th, td { padding: 15px 16px; text-align: left; font-size: 14px; line-height: 1.5; border-bottom: var(--hair); }
th { color: var(--grey-500); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
th:nth-child(2) { color: var(--deep-forest); }
tr:last-child td { border-bottom: none; }
td.yes { color: var(--deep-forest); font-weight: 600; }
td.no { color: var(--grey-500); }
.statement { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 0; }
.statement img { position: absolute; inset: -14% 0 0 0; width: 100%; height: 128%; object-fit: cover; object-position: center 55%; will-change: transform; }
.statement .scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,20,15,.5), rgba(0,20,15,.22) 55%, rgba(0,20,15,.32)); }
.statement p { position: relative; z-index: 2; color: #fff; text-align: center; font-size: clamp(26px, 3.6vw, 44px); font-weight: 600; letter-spacing: -0.9px; line-height: 1.15; max-width: 20ch; margin: 0 auto; padding: 0 24px; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.honesty { background: var(--white); }
.hlist { margin-top: 48px; display: grid; gap: 0; max-width: 880px; }
.hitem { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 26px 0; border-top: var(--hair-strong); align-items: start; }
.hitem .n { font-size: 14px; font-weight: 700; color: var(--deep-forest); padding-top: 3px; font-variant-numeric: tabular-nums; }
.hitem h3 { font-size: 19px; color: var(--black); margin-bottom: 6px; letter-spacing: -0.2px; }
.hitem p { font-size: 15px; line-height: 1.55; color: var(--grey-700); }
#honestyDynamic { margin-top: 32px; max-width: 880px; font-size: 15px; line-height: 1.6; color: var(--deep-forest); background: var(--deep-forest-light); border-radius: var(--r-md); padding: 18px 20px; }
#honestyDynamic:empty { display: none; }
.closing { position: relative; background: var(--grey-100); overflow: hidden; }
.closing::before { content: ""; position: absolute; z-index: 0; top: -260px; left: 66%; width: 1160px; height: 680px; border-radius: 50%;
background: radial-gradient(50% 50% at 50% 45%, rgba(242,255,201,.17), rgba(230,241,236,.085) 46%, rgba(249,247,246,0) 82%); pointer-events: none; will-change: transform; transform: translateX(-50%) translateY(var(--py, 0)); }
.closing .wrap { position: relative; z-index: 1; }
.close-col { max-width: 600px; margin: 0 auto; text-align: center; }
.close-col .eyebrow { justify-content: center; margin-bottom: 16px; }
.close-col h2 { font-size: clamp(28px, 3.4vw, 40px); }
.close-col .lead { font-size: 17px; margin: 14px auto 0; }
.leadcard { background: var(--white); border: var(--hair-strong); border-radius: var(--r-2xl); padding: 36px; margin-top: 36px; text-align: left; box-shadow: var(--shadow-float); }
.leadcard .field { margin-bottom: 16px; }
.leadcard .field label { font-size: 13px; font-weight: 600; color: var(--grey-700); }
.leadcard .bonus { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--deep-forest); font-weight: 600; margin-bottom: 22px; }
.leadcard .bonus i { font-size: 18px; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: 12px; line-height: 1.5; color: var(--grey-500); margin: 4px 0 20px; }
.field label.checkbox--field {
display: flex; align-items: center; gap: 12px;
font-size: 14px; font-weight: 500; line-height: 1.5; color: var(--grey-700);
margin: 14px 0 0; cursor: pointer;
}
.field label.checkbox--field input[type="checkbox"] { margin-top: 0 !important; }
.checkbox input[type="checkbox"] {
appearance: none !important; -webkit-appearance: none !important;
flex: none !important; width: 18px !important; height: 18px !important;
min-width: 18px; margin: 2px 0 0 !important; padding: 0 !important;
border-width: 1px !important; border-style: solid !important;
border-color: var(--grey-400) !important; border-radius: 5px !important;
background-color: var(--white) !important; background-image: none !important;
background-repeat: no-repeat !important;
background-position: center !important; background-size: 12px 12px !important;
cursor: pointer; box-shadow: none;
transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.checkbox input[type="checkbox"]:hover { border-color: var(--deep-forest) !important; }
.checkbox input[type="checkbox"]:checked {
background-color: var(--deep-forest) !important;
border-color: var(--deep-forest) !important;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5l3.5 3.5L13 4.5'/%3E%3C/svg%3E") !important;
}
.checkbox input[type="checkbox"]:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--deep-forest-light); }
.btn-primary { width: 100%; background: var(--black); color: var(--white); border: none; padding: 16px; border-radius: var(--r-sm); font-size: 15px; line-height: 1.4; font-weight: 600; cursor: pointer; font-family: inherit; transition: background var(--dur) var(--ease); }
.btn-primary:hover { background: var(--deep-forest); }
.btn-primary:disabled { background: var(--grey-300); color: var(--grey-500); cursor: not-allowed; }
.form-msg { margin-top: 16px; padding: 12px 16px; border-radius: var(--r-sm); font-size: 14px; line-height: 1.5; display: none; }
.form-msg.ok { display: block; background: var(--success-light); color: var(--success-dark); }
.form-msg.err { display: block; background: var(--error-light); color: var(--error-dark); }
.alt-cta { margin: 40px auto 0; max-width: 520px; }
.alt-cta .alt-or { display: flex; align-items: center; gap: 16px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-400); margin-bottom: 22px; }
.alt-cta .alt-or::before, .alt-cta .alt-or::after { content: ""; flex: 1; height: 1px; background: var(--grey-300); }
.alt-cta .alt-text { font-size: 15px; line-height: 1.55; color: var(--grey-700); margin-bottom: 18px; }
.btn-secondary { display: inline-flex; align-items: center; gap: 9px; background: var(--white); color: var(--black); border: 1px solid var(--grey-300); border-radius: var(--r-full); padding: 13px 24px; font-size: 14px; font-weight: 600; text-decoration: none; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.btn-secondary:hover { border-color: var(--deep-forest); background: var(--grey-100); }
.btn-secondary i { font-size: 16px; }
.faq { max-width: 600px; margin: 64px auto 0; text-align: left; }
.faq details { border-top: var(--hair-strong); }
.faq details:last-child { border-bottom: var(--hair-strong); }
.faq summary { position: relative; cursor: pointer; font-weight: 600; font-size: 16px; padding: 22px 40px 22px 0; list-style: none; color: var(--black); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after { content: ""; position: absolute; right: 2px; top: 50%; width: 15px; height: 2px; border-radius: 2px; background: var(--deep-forest); transition: transform 350ms var(--ease); }
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary::before { transform: rotate(180deg); }
.faq details[open] summary::after { transform: rotate(180deg); }
.faq .ans { overflow: hidden; max-height: 0; transition: max-height 400ms var(--ease); }
.faq details[open] .ans { max-height: 320px; }
.faq .ans p { padding: 0 40px 22px 0; color: var(--grey-700); font-size: 15px; line-height: 1.6; }
footer { background: var(--grey-150); color: var(--grey-500); padding: 56px 0; font-size: 12px; line-height: 1.6; border-top: var(--hair); }
footer .disc { max-width: 900px; margin-bottom: 20px; }
.debug { position: fixed; right: 18px; bottom: 18px; z-index: 100; font-size: 12px; }
.debug-toggle { display: inline-flex; align-items: center; gap: 7px; background: var(--black); color: #fff; border: none; border-radius: var(--r-full); padding: 9px 15px; font-weight: 600; cursor: pointer; box-shadow: var(--shadow-float); font-family: inherit; font-size: 12px; }
.debug-panel { position: absolute; right: 0; bottom: 48px; width: 232px; background: var(--white); border: var(--hair-strong); border-radius: var(--r-md); box-shadow: var(--shadow-float); padding: 8px; }
.debug-panel[hidden] { display: none; }
.debug-panel .dh { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-400); padding: 6px 6px 8px; font-weight: 700; }
.debug-row { display: flex; align-items: center; justify-content: space-between; padding: 5px 6px; }
.debug-row > span { color: var(--grey-700); font-weight: 600; }
.debug-row .ctrl { display: inline-flex; align-items: center; gap: 6px; }
.debug-row button { width: 24px; height: 24px; border: var(--hair-strong); background: var(--grey-50); border-radius: 6px; cursor: pointer; font-size: 14px; line-height: 1; color: var(--black); padding: 0; }
.debug-row button:hover { background: var(--grey-200); }
.debug-row b { min-width: 30px; text-align: center; font-variant-numeric: tabular-nums; font-weight: 600; }
@media (prefers-reduced-motion: reduce) { .debug { } }
@media (max-width: 920px) {
section { padding: 80px 0; }
.hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 72px; }
.hero-visual { order: 2; }
.float-card { max-width: 360px; }
.calc-grid { grid-template-columns: 1fr; gap: 24px; }
.inputs { position: static; }
.compare, .breakdown { grid-template-columns: 1fr; }
.stats { grid-template-columns: 1fr; gap: 0; }
.stat { border-left: none; border-top: var(--hair-strong); padding: 30px 0; }
.stat:first-child { border-top: none; padding-top: 0; }
.verdict { padding: 30px; }
.guidecue { flex-wrap: wrap; gap: 8px 12px; }
.why-head { grid-template-columns: 1fr; gap: 24px; }
.why-asset { width: 200px; justify-self: start; }
}
@media (max-width: 560px) {
body { font-size: 16px; }
.wrap { padding: 0 18px; }
section { padding: 64px 0; }
.nav .soon { display: none; }
.hero-grid { padding-top: 40px; padding-bottom: 56px; }
.hero .lead, .lead { font-size: 16px; }
.float-card { padding: 20px; }
.fc-result .num { font-size: 32px; }
.verdict { padding: 24px; border-radius: var(--r-xl); }
.verdict .headline { font-size: 30px; }
.panel, .leadcard { padding: 22px; }
.chart-box { padding: 16px; }
.chart-canvas { height: 260px; }
table { table-layout: fixed; }
th, td { padding: 11px 10px; font-size: 12.5px; overflow-wrap: break-word; hyphens: auto; }
.hitem { grid-template-columns: 32px 1fr; gap: 14px; }
.closing .leadcard { text-align: left; }
.why-asset { display: none; }
}
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
* { transition: none !important; animation: none !important; }
.reveal { opacity: 1; transform: none; }
.float-card, .closing::before { transform: none !important; }
}
