/* Pixsto – Stylesheet */
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("../fonts/SchibstedGrotesk.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #F3F5F4;
  --surface: #FFFFFF;
  --ink: #18222E;
  --text: #4A5561;
  --muted: #5B6672;
  --line: #D9DEDC;
  --own: #0E6B5E;
  --own-dark: #0A5248;
  --own-soft: #DCEEEA;
  --own-light: #4FC2AE;
  --rent: #B07A12;
  --rent-text: #8A5E0C;
  --rent-soft: #F4EAD4;
  --cta-bg: #E4E9E7;
  --dark-text: #B9C3C9;
  --dark-line: #33424D;
  --radius: 16px;
  --pad: clamp(20px, 5.5vw, 80px);
  --section: clamp(64px, 8vw, 104px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Schibsted Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(16px, 1.1vw + 11px, 18px);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--own); }
a:hover { color: var(--own-dark); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.03em; overflow-wrap: break-word; text-wrap: balance; }
p, li { text-wrap: pretty; }
h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.03; }
h2 { font-size: clamp(32px, 4.2vw, 52px); font-weight: 800; }
h3 { font-size: clamp(20px, 1.6vw, 24px); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
p { margin: 0; }
.lead { font-size: clamp(18px, 1.4vw, 21px); color: var(--text); max-width: 52ch; }
.muted { color: var(--text); }
.small { font-size: 15px; color: var(--muted); }
.container { width: 100%; max-width: calc(1280px + 2 * var(--pad)); margin: 0 auto; padding-inline: var(--pad); }
.stack { display: flex; flex-direction: column; gap: 14px; }
.stack-lg { display: flex; flex-direction: column; gap: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
:focus-visible { outline: 3px solid var(--own-light); outline-offset: 2px; }
.skip { position: absolute; left: 12px; top: -60px; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 100; }
.skip:focus { top: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 14px 26px; border-radius: 10px; border: 0;
  background: var(--own); color: #fff; font: inherit; font-weight: 700; text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(14, 107, 94, .28); filter: brightness(1.08); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); transition: background .18s, color .18s; }
.btn-outline:hover { background: var(--ink); color: #fff; transform: none; box-shadow: none; filter: none; }
.btn-block { display: flex; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.link-strong { font-weight: 600; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(243, 245, 244, .92); backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }
.logo img { height: 30px; width: auto; }
.nav { display: flex; align-items: center; gap: 34px; font-size: 16px; font-weight: 500; }
.nav a:not(.btn) { color: var(--ink); text-decoration: none; transition: color .15s; }
.nav a:not(.btn):hover, .nav a[aria-current="page"] { color: var(--own); }
.nav a[aria-current="page"] { font-weight: 700; }
.nav .btn { padding: 12px 20px; min-height: 44px; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--ink); cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--pad) 24px; background: var(--bg); border-bottom: 1px solid var(--line); box-shadow: 0 16px 32px rgba(24, 34, 46, .08); font-size: 18px; }
  .nav.is-open { display: flex; }
  .nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 16px; min-height: 52px; }
}

/* Sections */
.section { padding-block: var(--section); }
.section-white { background: var(--surface); }
.section-dark { background: var(--ink); color: #E7ECEA; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: var(--dark-text); }
.section-cta { background: var(--cta-bg); text-align: center; padding-block: clamp(72px, 9vw, 112px); }
.section-cta .container { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.section-cta h2 { font-size: clamp(34px, 4.8vw, 60px); max-width: 18ch; letter-spacing: -0.035em; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(32px, 4vw, 48px); }
.section-head .stack { max-width: 60ch; }
.page-hero { padding-block: clamp(40px, 6vw, 72px) clamp(40px, 5vw, 64px); }
.page-hero > .container > .stack-lg { max-width: 900px; }
.eyebrow { font-size: 17px; font-weight: 600; color: var(--own); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 2.5vw, 32px); }
.check { display: flex; gap: 12px; align-items: flex-start; }
.check svg { flex: none; width: 22px; height: 22px; margin-top: 2px; fill: none; stroke: var(--own); stroke-width: 2.4; }
.section-dark .check svg { stroke: var(--own-light); }
.icon { width: 40px; height: 40px; flex: none; fill: none; stroke: var(--own); stroke-width: 1.8; }

/* Home: hero */
.hero { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(40px, 5vw, 64px); align-items: center; padding-block: clamp(32px, 5vw, 72px) clamp(56px, 6vw, 88px); }
.hero .lead { max-width: 34ch; }
.hero-chart { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: clamp(20px, 2.5vw, 32px); display: flex; flex-direction: column; gap: 12px; }
.hero-chart figcaption { display: flex; flex-direction: column; gap: 2px; }
.hero-chart figcaption strong { font-size: 20px; }
.hero-chart svg { width: 100%; height: auto; overflow: visible; }
.chart-axis { font-size: 13px; fill: var(--muted); }
.draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.6s cubic-bezier(.45, 0, .2, 1) .3s forwards; }
.draw-own { animation-delay: .55s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.pop { opacity: 0; transform-box: fill-box; transform-origin: center; animation: pop .45s cubic-bezier(.3, 1.6, .5, 1) 2.05s forwards; }
@keyframes pop { from { opacity: 0; transform: scale(.3); } to { opacity: 1; transform: scale(1); } }
.fade { opacity: 0; animation: fade .5s ease forwards; }
@keyframes fade { to { opacity: 1; } }
@media (max-width: 980px) { .hero { grid-template-columns: 1fr; } }

.trust { background: var(--surface); border-block: 1px solid var(--line); }
.trust ul { list-style: none; margin: 0 auto; padding-block: 26px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px 24px; font-weight: 600; font-size: 17px; }
@media (max-width: 1000px) { .trust ul { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .trust ul { grid-template-columns: 1fr; } }

.problem { display: flex; flex-direction: column; gap: 10px; border-top: 3px solid var(--rent); padding-top: 22px; }
.problem.own { border-top-color: var(--own); }
.feature { display: flex; gap: 20px; padding: clamp(24px, 2.5vw, 32px); background: var(--bg); border-radius: var(--radius); }
.feature .stack { gap: 6px; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.steps li { display: flex; flex-direction: column; gap: 10px; }
.step-num { font-size: 56px; font-weight: 800; color: var(--own); line-height: 1; }
.steps.is-pre li { opacity: 0; transform: translateY(18px); }
.steps.is-play li { animation: stepIn .6s ease both; }
.steps.is-play li:nth-child(2) { animation-delay: .15s; }
.steps.is-play li:nth-child(3) { animation-delay: .3s; }
.steps.is-play li:nth-child(4) { animation-delay: .45s; }
@keyframes stepIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Compare table → cards on mobile */
.compare { width: 100%; border-collapse: collapse; font-size: clamp(16px, 1.2vw, 19px); }
.compare th, .compare td { text-align: left; padding: 18px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare th:first-child, .compare td:first-child { padding-left: 0; font-weight: 600; width: 28%; }
.compare thead th { border-bottom: 2px solid var(--ink); font-size: clamp(17px, 1.3vw, 20px); }
.compare .rent-h { color: var(--rent-text); }
.compare .own-h { color: var(--own); background: var(--own-soft); }
.compare td.own { background: #EEF7F5; }
@media (max-width: 700px) {
  .compare thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .compare, .compare tbody, .compare tr, .compare td { display: block; width: 100%; }
  .compare tr { background: var(--bg); border-radius: 14px; padding: 18px; margin-bottom: 12px; }
  .compare td { border: 0; padding: 6px 0; }
  .compare td:first-child { width: 100%; font-size: 19px; padding-bottom: 8px; }
  .compare td.own { background: transparent; }
  .compare td[data-label]::before { content: attr(data-label); display: block; font-size: 14px; font-weight: 600; }
  .compare td.rent::before { color: var(--rent-text); }
  .compare td.own::before { color: var(--own); }
}

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(40px, 5vw, 64px); align-items: start; }
.split.center { align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.list-lines > div { padding: 22px 0; border-bottom: 1px solid var(--dark-line); display: flex; flex-direction: column; gap: 4px; }
.list-lines > div:last-child { border-bottom: 0; }

.product { display: flex; flex-direction: column; gap: 8px; color: var(--ink); text-decoration: none; transition: border-color .15s, transform .15s; }
.product:hover { color: var(--ink); border-color: var(--own); transform: translateY(-2px); }
.product-name { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.product-tag { font-weight: 600; color: var(--own); }

.band { background: var(--own-soft); border-radius: 20px; padding: clamp(32px, 4vw, 56px) clamp(24px, 4.5vw, 64px); display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.band h2 { font-size: clamp(28px, 3vw, 38px); letter-spacing: -0.02em; }
.band p { color: #2E4A45; }
@media (max-width: 760px) { .band { flex-direction: column; align-items: flex-start; } }

/* FAQ */
.faq { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(32px, 5vw, 64px); }
@media (max-width: 900px) { .faq { grid-template-columns: 1fr; } }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative; font-size: clamp(19px, 1.5vw, 22px); font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px; border-right: 2.5px solid var(--own); border-bottom: 2.5px solid var(--own); transform: translateY(-75%) rotate(45deg); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq details p { padding: 0 0 22px; color: var(--text); }

/* Ablauf page */
.process { list-style: none; margin: 0; padding: 0; }
.process > li { display: grid; grid-template-columns: 120px 1fr 1fr; gap: 40px; padding-block: 44px; border-top: 1px solid var(--line); animation: stepIn .65s cubic-bezier(.2, .7, .2, 1) both; }
.process > li:first-child { border-top: 2px solid var(--ink); }
.process > li:last-child { border-bottom: 1px solid var(--line); }
.process > li:nth-child(2) { animation-delay: .15s; }
.process > li:nth-child(3) { animation-delay: .3s; }
.process > li:nth-child(4) { animation-delay: .45s; }
.process-num { font-size: 88px; font-weight: 800; line-height: .9; color: var(--own); }
.process h2 { font-size: clamp(28px, 2.6vw, 36px); }
.process .card { background: var(--surface); border: 0; }
.process ul { margin: 0; padding-left: 20px; color: var(--text); display: flex; flex-direction: column; gap: 6px; }
@media (max-width: 1000px) { .process > li { grid-template-columns: 80px 1fr; } .process > li .card { grid-column: 2; } .process-num { font-size: 64px; } }
@media (max-width: 600px) { .process > li { grid-template-columns: 1fr; gap: 16px; padding-block: 32px; } .process > li .card { grid-column: auto; } .process-num { font-size: 48px; } }
.dark-box { background: var(--ink); color: #E7ECEA; border-radius: 20px; padding: clamp(32px, 4vw, 56px) clamp(24px, 4.5vw, 64px); }
.dark-box h2 { color: #fff; font-size: clamp(30px, 3.2vw, 42px); }
.dark-box p { color: var(--dark-text); }
.dark-box ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }

/* Preise */
.model { display: flex; flex-direction: column; gap: 14px; }
.model h2 { font-size: 28px; letter-spacing: -0.02em; }
.model .foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); font-weight: 700; }
.model.dark { background: var(--ink); color: #E7ECEA; border-color: var(--ink); }
.model.dark h2, .model.dark .foot { color: #fff; }
.model.dark p { color: var(--dark-text); }
.model.dark .foot { border-color: var(--dark-line); }
.included { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
.included ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 32px; }
@media (max-width: 900px) { .included { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 560px) { .included ul { grid-template-columns: 1fr; } }

.calc { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; align-items: start; }
@media (max-width: 960px) { .calc { grid-template-columns: 1fr; } }
.calc-result { position: sticky; top: 100px; }
@media (max-width: 960px) { .calc-result { position: static; } }
.calc h3 { display: flex; align-items: center; gap: 10px; }
.swatch { width: 12px; height: 12px; border-radius: 3px; display: inline-block; flex: none; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label, .field .lbl { display: flex; justify-content: space-between; gap: 12px; font-weight: 500; }
.field output { font-weight: 700; font-variant-numeric: tabular-nums; }
.field input[type=range] { width: 100%; accent-color: var(--ink); min-height: 28px; }
.field input[type=number] { font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--bg); color: var(--ink); width: 100%; }
.opts { display: flex; flex-direction: column; gap: 8px; }
.opt { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); background: var(--bg); border-radius: 10px; cursor: pointer; transition: background .15s, border-color .15s; }
.opt:has(input:checked) { border-color: var(--own); background: var(--own-soft); }
.opt input { width: 18px; height: 18px; margin: 0; accent-color: var(--own); flex: none; }
.opt .t { flex: 1; display: flex; flex-direction: column; }
.opt .t small { color: var(--muted); font-size: 14px; }
.opt .p { color: var(--text); font-size: 15px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.stepper { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.stepper button { width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg); color: var(--ink); font: inherit; font-size: 22px; cursor: pointer; }
.stepper strong { min-width: 24px; text-align: center; font-size: 20px; }
.seg { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.seg button { font: inherit; font-size: 16px; font-weight: 600; padding: 13px 8px; border: 0; background: var(--bg); color: var(--ink); cursor: pointer; transition: background .2s, color .2s; }
.seg button[aria-pressed="true"] { background: var(--ink); color: #fff; }
.verdict { font-size: clamp(26px, 2.3vw, 32px); line-height: 1.15; font-weight: 800; letter-spacing: -0.015em; }
.calc-chart .rent { fill: none; stroke: var(--rent); stroke-width: 3; stroke-linejoin: round; transition: d .45s ease; }
.calc-chart .own { fill: none; stroke: var(--own); stroke-width: 3; stroke-linejoin: round; transition: d .45s ease; }
.calc-chart .be { fill: #fff; stroke: var(--ink); stroke-width: 2.5; transition: cx .45s ease, cy .45s ease, r .3s ease; }
.calc-chart .be-t { font-size: 12px; font-weight: 700; fill: var(--ink); }
.legend { display: flex; flex-wrap: wrap; gap: 20px; font-size: 15px; color: var(--muted); }
.legend span { display: flex; align-items: center; gap: 8px; }
.nums { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.num { border-radius: 10px; padding: 16px; display: flex; flex-direction: column; }
.num.r { background: var(--rent-soft); } .num.o { background: var(--own-soft); }
.num span { font-size: 14px; color: #4A4535; } .num.o span { color: #2E4A45; }
.num strong { font-size: clamp(20px, 1.8vw, 24px); font-variant-numeric: tabular-nums; }
.breakdown { display: flex; flex-direction: column; }
.breakdown div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); }
.breakdown div:last-child { border-bottom: 1px solid var(--line); }
.breakdown strong { font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }

/* Über */
.portrait { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; object-position: center 20%; border-radius: 20px; }

/* Kontakt */
.contact { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 5vw, 72px); align-items: start; padding-block: clamp(40px, 6vw, 72px) var(--section); }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
.num-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.num-list li { display: flex; gap: 16px; }
.num-list b { color: var(--own); font-size: 22px; width: 20px; flex: none; line-height: 1.3; }

/* Legal */
.prose { max-width: 760px; display: flex; flex-direction: column; gap: 36px; }
.prose section { display: flex; flex-direction: column; gap: 8px; }
.prose h2 { font-size: 22px; letter-spacing: -0.01em; line-height: 1.3; }
.prose p { color: var(--text); }
.prose p.plain { color: var(--ink); }

/* Booking modal */
.booking { border: 0; padding: 0; width: min(880px, calc(100vw - 32px)); height: min(860px, calc(100dvh - 32px)); max-height: none; border-radius: 20px; background: #fff; color: var(--ink); box-shadow: 0 24px 64px rgba(24, 34, 46, .35); overflow: hidden; }
.booking[open] { display: flex; flex-direction: column; animation: mpop .28s cubic-bezier(.2, .8, .2, 1) both; }
.booking::backdrop { background: rgba(24, 34, 46, .6); animation: mfade .2s ease both; }
.booking-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.booking-head h2 { font-size: 24px; letter-spacing: -0.02em; }
.booking-close { width: 44px; height: 44px; flex: none; border-radius: 10px; border: 1px solid var(--line); background: var(--bg); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.booking iframe { flex: 1; width: 100%; border: 0; }
.booking-fallback { padding: 10px 24px 14px; font-size: 14px; color: var(--muted); border-top: 1px solid var(--line); }
@keyframes mfade { from { opacity: 0; } to { opacity: 1; } }
@keyframes mpop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
@media (max-width: 600px) { .booking { width: 100vw; height: 100dvh; max-width: 100vw; border-radius: 0; } }

/* Footer */
.site-footer { background: var(--ink); color: var(--dark-text); font-size: 16px; }
.site-footer .container { padding-block: 56px 40px; display: flex; flex-direction: column; gap: 40px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand img { height: 26px; width: auto; margin-bottom: 6px; align-self: flex-start; }
.footer-nav { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-nav div { display: flex; flex-direction: column; gap: 8px; }
.site-footer a { color: #E7ECEA; text-decoration: none; transition: color .15s; }
.site-footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--dark-line); padding-top: 22px; font-size: 14px; }
.footer-bottom nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom a, .footer-bottom button { color: var(--dark-text); text-decoration: underline; }
.footer-bottom button { font: inherit; padding: 0; border: 0; background: none; cursor: pointer; }
@media (max-width: 600px) { .footer-nav { gap: 32px; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .draw { stroke-dashoffset: 0; }
  .pop, .fade, .steps.is-pre li { opacity: 1; transform: none; }
}
