/* GastroOnline – Website
   Schriften lokal gehostet (DSGVO), keine externen Requests. */

@font-face { font-family: "Fraunces"; src: url("../fonts/fraunces.woff2") format("woff2"); font-weight: 300 900; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("../fonts/instrument-sans-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("../fonts/instrument-sans-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("../fonts/instrument-sans-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }

:root {
  --bg: #F6F2EA;
  --surface: #FFFFFF;
  --ink: #1A1714;
  --muted: #5E574E;
  --line: #E4DDD0;
  --line-strong: #D8CFC1;
  --sand: #EDE5D6;
  --accent: #B8401F;
  --accent-ink: #8F3017;
  --accent-soft: #F3DED3;
  --ok: #2F7D4F;
  --ok-soft: #E3F1E8;
  --dark-2: #2A2420;
  --dark-line: #3A332D;
  --on-dark: #F6F2EA;
  --on-dark-muted: #B9B0A3;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 120px);
  --section: clamp(72px, 10vw, 140px);
  --radius: 28px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }

.wrap { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.muted { color: var(--muted); }
.small { font-size: 15px; }
.center { text-align: center; }
.nowrap { white-space: nowrap; }
.show-sm { display: none; }

/* Typo */
.display { font-family: var(--serif); font-weight: 600; font-size: clamp(42px, 6vw, 76px); line-height: 1.02; letter-spacing: -0.03em; }
.display em, .display-md em { font-style: normal; color: var(--accent); }
.display-md { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 4.6vw, 64px); line-height: 1.05; letter-spacing: -0.025em; }
.h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(32px, 3.8vw, 52px); line-height: 1.08; letter-spacing: -0.022em; }
.h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 2.6vw, 36px); line-height: 1.12; letter-spacing: -0.015em; }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); max-width: 34em; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-ink); }
.eyebrow-light { color: #E9A58E; }
.narrow { max-width: 760px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent; font: 600 16px/1 var(--sans); text-decoration: none; cursor: pointer; transition: background-color .15s, color .15s, border-color .15s, transform .15s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: 15px; }
.btn-lg { min-height: 56px; padding: 0 28px; font-size: 17px; }
.btn-block { width: 100%; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-ink); }
.btn-dark { background: var(--ink); color: var(--on-dark); }
.btn-dark:hover { background: #000; }
.btn-light { background: var(--on-dark); color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: #CFC6B6; font-weight: 500; }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); font-weight: 500; }
.btn-ghost:hover { color: var(--accent-ink); }
.btn[disabled] { background: #DDD4C6; color: #6B6259; cursor: not-allowed; }

.ico-check { color: var(--ok); flex-shrink: 0; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(246, 242, 234, .88); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid var(--line); }
.header-inner { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 24px; font-weight: 600; letter-spacing: -0.02em; text-decoration: none; color: inherit; }
.logo-mark { width: 34px; height: 34px; border-radius: 10px; background: var(--accent); color: #fff; display: grid; place-items: center; }
.nav { display: flex; gap: 36px; font-weight: 500; }
.nav a { text-decoration: none; padding: 8px 0; }
.nav a:hover { color: var(--accent-ink); }
.nav-mobile-only { display: none; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: var(--ink); border-radius: 12px; cursor: pointer; place-items: center; }

/* Hero */
.hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 64px; align-items: center; padding-top: 80px; padding-bottom: 72px; }
.hero-copy { display: flex; flex-direction: column; gap: 26px; }
.badge { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 14px; font-weight: 500; }
.dot { width: 8px; height: 8px; border-radius: 99px; background: var(--ok); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 6px; }
.checks-inline { display: flex; flex-wrap: wrap; gap: 10px 28px; font-size: 15px; color: var(--muted); }
.checks-inline li, .checks li, .auth-checks li { display: flex; align-items: center; gap: 8px; }

.hero-visual { position: relative; height: 660px; display: flex; justify-content: flex-start; padding-left: 40px; }
.hero-bg { position: absolute; inset: 40px 0 60px 40px; border-radius: 40px; background: var(--sand); }
.phone { position: relative; width: 330px; height: 650px; border-radius: 48px; background: var(--ink); padding: 12px; box-shadow: 0 30px 60px rgba(26, 23, 20, .18); }
.phone-screen { height: 100%; border-radius: 38px; background: #fff; overflow: hidden; display: flex; flex-direction: column; font-size: 14px; }
.phone-url { margin: 18px auto 10px; display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 99px; background: #F1ECE3; font-size: 12px; color: #3A342E; }
.phone-hero { height: 120px; margin: 4px 14px 0; border-radius: 20px; background: #2B2420; color: #fff; display: flex; align-items: flex-end; gap: 12px; padding: 16px; }
.phone-hero strong { display: block; font-family: var(--serif); font-size: 18px; font-weight: 600; }
.phone-hero small { display: block; font-size: 12px; color: #D9CFC2; }
.phone-avatar { width: 44px; height: 44px; border-radius: 12px; background: var(--accent); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 18px; }
.phone-tabs { display: flex; gap: 8px; padding: 14px 14px 6px; font-size: 12px; font-weight: 600; }
.phone-tabs span { padding: 7px 12px; border-radius: 99px; background: #F1ECE3; }
.phone-tabs .on { background: var(--ink); color: #fff; }
.phone-items { flex: 1; padding: 4px 14px; }
.phone-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #EFE9DF; }
.phone-item:last-child { border-bottom: 0; }
.phone-item > div { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.phone-item small { font-size: 11px; color: #6B6259; }
.phone-item .add, .phone-item .qty { width: 30px; height: 30px; border-radius: 99px; display: grid; place-items: center; }
.phone-item .add { border: 1px solid #D8CFC1; font-size: 18px; }
.phone-item .qty { background: var(--accent); color: #fff; font-size: 13px; font-weight: 700; }
.phone-cart { margin: 0 14px 18px; padding: 14px 16px; border-radius: 16px; background: var(--ink); color: #fff; display: flex; justify-content: space-between; font-weight: 600; }
.float-card { position: absolute; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 16px 40px rgba(26, 23, 20, .12); padding: 16px 18px; }
.float-card strong { display: block; font-size: 15px; }
.float-card small { display: block; font-size: 13px; color: var(--muted); }
.float-winorder { right: -12px; top: 118px; width: 250px; display: flex; flex-direction: column; gap: 6px; }
.eyebrow-sm { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.float-paypal { right: 24px; bottom: 120px; width: 236px; display: flex; align-items: center; gap: 12px; }
.ok-dot { width: 36px; height: 36px; border-radius: 99px; background: var(--ok-soft); display: grid; place-items: center; flex-shrink: 0; }

/* Banner */
.banner { display: flex; align-items: center; gap: 24px; padding: 28px 36px; border-radius: 24px; background: var(--ink); color: var(--on-dark); }
.banner-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--dark-line); display: grid; place-items: center; flex-shrink: 0; }
.banner-text { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.banner-text strong { font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.2; }
.banner-text span { color: #C9BFB2; font-size: 16px; }

/* Sections */
.section { padding-top: var(--section); }
.section-head { margin-bottom: 56px; }
.section-head.split { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; }
.section-head.split .h2 { max-width: 640px; }
.section-head.split p { max-width: 420px; font-size: 18px; }
.section-head.center { text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.card h3 { font-size: 23px; font-weight: 600; letter-spacing: -0.01em; }
.card p { color: var(--muted); }
.card-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; }

.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; counter-reset: s; }
.steps li { border-top: 2px solid var(--ink); padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.step-no { font-family: var(--serif); font-size: 40px; font-weight: 600; color: var(--accent); line-height: 1; }
.steps h3 { font-size: 21px; font-weight: 600; }
.steps p { color: var(--muted); font-size: 16px; }

.panel { border-radius: 32px; padding: 48px; background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 22px; }
.panel-dark { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.dns { margin: 0; border-radius: 18px; background: var(--bg); border: 1px solid var(--line); overflow: hidden; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dns div { display: flex; flex-direction: column; }
.dns dt { padding: 12px 18px; background: var(--sand); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.dns dd { margin: 0; padding: 14px 18px; font: 14px/1.4 ui-monospace, "SF Mono", Menlo, Consolas, monospace; overflow-wrap: anywhere; }
.ok-line { display: flex; align-items: center; gap: 10px; color: var(--ok); font-weight: 600; font-size: 15px; }
.timeline li { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--dark-line); }
.timeline li:last-child { border-bottom: 0; }
.timeline time { width: 64px; flex-shrink: 0; color: var(--on-dark-muted); font-size: 15px; }
.muted-light { color: var(--on-dark-muted); }

.features { margin-top: 48px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); }
.features div { padding: 32px; border-bottom: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); display: flex; flex-direction: column; gap: 8px; }
.features div:nth-child(3n + 1) { border-left: 0; padding-left: 0; }
.features div:nth-last-child(-n + 3) { border-bottom: 0; }
.features h3 { font-size: 20px; font-weight: 600; }
.features p { color: var(--muted); font-size: 16px; }

.pricing { display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr); gap: 64px; align-items: start; }
.pricing-copy { display: flex; flex-direction: column; gap: 18px; padding-top: 12px; }
.price-card { background: var(--surface); border: 2px solid var(--ink); border-radius: 32px; padding: 48px; display: grid; grid-template-columns: minmax(0, 280px) minmax(0, 1fr); gap: 48px; }
.price-main { display: flex; flex-direction: column; gap: 14px; }
.price-name { font-size: 20px; font-weight: 600; }
.price { font-family: var(--serif); font-size: 60px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.price-main .btn { margin-top: 10px; }
.checks { display: flex; flex-direction: column; gap: 14px; font-size: 16px; }

.faq { display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr); gap: 64px; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line-strong); padding: 24px 0; }
.faq summary { cursor: pointer; list-style: none; font-size: 20px; font-weight: 600; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 400; font-size: 26px; line-height: 1; color: var(--muted); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; color: var(--muted); }

.final { margin-top: var(--section); background: var(--ink); color: var(--on-dark); }
.final-inner { padding-top: clamp(64px, 9vw, 120px); padding-bottom: clamp(56px, 8vw, 100px); display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.final .display-md { max-width: 760px; }

.site-footer { background: var(--ink); color: var(--on-dark-muted); font-size: 15px; }
.page-auth .site-footer, .welcome ~ .site-footer, .login ~ .site-footer, .legal ~ .site-footer { margin-top: var(--section); }
.footer-inner { border-top: 1px solid var(--dark-line); padding-top: 28px; padding-bottom: 40px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-inner a { color: #D9CFC2; text-decoration: none; }
.footer-inner a:hover { color: #fff; }
.footer-inner nav { display: flex; gap: 28px; }

/* Formulare */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label, .label { font-size: 15px; font-weight: 600; }
.opt { font-weight: 400; color: var(--muted); }
.field input { height: 56px; width: 100%; padding: 0 18px; border-radius: 14px; border: 1px solid #CFC6B6; background: var(--surface); font: 17px var(--sans); color: var(--ink); transition: border-color .15s, box-shadow .15s; }
.field input:hover { border-color: #B5AB9A; }
.field input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(26, 23, 20, .12); }
.field input[aria-invalid="true"] { border-color: var(--accent); }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { position: relative; }
.pill input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.pill span { display: inline-flex; align-items: center; min-height: 48px; padding: 0 20px; border-radius: 999px; border: 1px solid #CFC6B6; background: var(--surface); font-weight: 500; transition: all .15s; }
.pill input:hover + span { border-color: var(--ink); }
.pill input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.pill input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 3px; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: #3A342E; cursor: pointer; }
.check input { width: 22px; height: 22px; margin: 1px 0 0; flex-shrink: 0; accent-color: var(--ink); }
.check a { color: var(--ink); }
.alert { padding: 16px 18px; border-radius: 14px; background: #FBEAE4; color: #7A2812; font-size: 15px; }
.alert ul { margin-top: 6px; padding-left: 18px; list-style: disc; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Registrierung */
.auth { min-height: 100vh; min-height: 100dvh; display: grid; grid-template-columns: minmax(360px, 560px) minmax(0, 1fr); }
.auth-aside { position: sticky; top: 0; height: 100vh; height: 100dvh; background: var(--ink); color: var(--on-dark); padding: 48px 56px; display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.auth-aside .logo { color: var(--on-dark); }
.auth-aside-body { display: flex; flex-direction: column; gap: 28px; }
.auth-title { font-family: var(--serif); font-size: clamp(34px, 3.4vw, 48px); line-height: 1.06; font-weight: 600; letter-spacing: -0.025em; }
.address { display: flex; flex-direction: column; gap: 10px; }
.address-label { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-muted); }
.address-box { display: flex; align-items: center; gap: 10px; padding: 18px 20px; border-radius: 16px; background: var(--dark-2); border: 1px solid var(--dark-line); font-size: 18px; color: var(--on-dark-muted); overflow-wrap: anywhere; }
.address-box b { color: #fff; font-weight: 600; }
.address-domain { color: var(--on-dark-muted); }
.address-note { font-size: 14px; color: var(--on-dark-muted); }
.auth-checks { display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: #D9CFC2; }
.auth-checks .ico-check { color: #7BC49A; }
.auth-main { padding: 48px clamp(20px, 7vw, 120px) 64px; display: flex; flex-direction: column; gap: 40px; }
.auth-top { display: flex; justify-content: flex-end; align-items: center; gap: 16px; font-size: 15px; color: var(--muted); }
.auth-top a { color: var(--ink); font-weight: 600; }
.auth-mobile-logo { display: none; }
.address-inline { display: none; margin: 0; padding: 12px 16px; border-radius: 14px; background: var(--ink); color: var(--on-dark-muted); font-size: 15px; overflow-wrap: anywhere; }
.address-inline b { color: #fff; }
.reg { max-width: 560px; width: 100%; display: flex; flex-direction: column; gap: 32px; }
.reg fieldset { border: 0; margin: 0; padding: 0; min-width: 0; display: flex; flex-direction: column; gap: 22px; }
.reg:not(.is-js) fieldset + fieldset { padding-top: 32px; border-top: 1px solid var(--line-strong); }
.reg:not(.is-js) .js-only, .reg:not(.is-js) .progress { display: none; }
.step-title { font-family: var(--serif); font-size: clamp(32px, 3vw, 40px); line-height: 1.1; font-weight: 600; letter-spacing: -0.02em; padding: 0; margin: 0 0 8px; }
.step-sub { color: var(--muted); margin-top: 0; }
.progress { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; font-size: 14px; font-weight: 500; color: #8A8177; }
.progress li { display: flex; flex-direction: column; gap: 8px; }
.progress span { height: 4px; border-radius: 99px; background: #DDD4C6; transition: background-color .2s; }
.progress .is-active { color: var(--ink); }
.progress .is-active span { background: var(--ink); }
.progress .is-current { font-weight: 600; }
.reg-actions { display: flex; justify-content: space-between; gap: 12px; }
.reg-actions [data-next], .reg-actions [data-submit] { margin-left: auto; }
.reg-actions [hidden] { display: none; }

/* Willkommen / Login / Rechtliches */
.welcome, .login, .legal { padding-top: clamp(48px, 8vw, 96px); max-width: calc(640px + 2 * var(--gutter)); display: flex; flex-direction: column; gap: 24px; }
.welcome-ok { width: 64px; height: 64px; border-radius: 99px; background: var(--ok-soft); display: grid; place-items: center; }
.welcome-ok svg { width: 30px; height: 30px; }
.welcome-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.next-steps { border-top: 1px solid var(--line-strong); }
.next-steps li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-strong); }
.next-steps span { font-family: var(--serif); font-weight: 600; color: var(--accent); }
.login-form { display: flex; flex-direction: column; gap: 20px; }

/* ---------- Tablet ---------- */
@media (max-width: 1080px) {
  .hero { grid-template-columns: minmax(0, 1fr); gap: 48px; padding-top: 56px; }
  .hero-visual { height: 620px; justify-content: center; padding-left: 0; }
  .hero-bg { inset: 30px 0 40px 0; }
  .grid-3 { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .grid-2 { grid-template-columns: minmax(0, 1fr); }
  .pricing, .faq { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .section-head.split { flex-direction: column; align-items: flex-start; gap: 16px; }
  .auth { grid-template-columns: minmax(0, 1fr); }
  .auth-aside { display: none; }
  .auth-top { justify-content: space-between; }
  .auth-mobile-logo { display: block; }
  .auth-main { padding-top: 16px; gap: 28px; }
  .address-inline { display: block; }
}

/* ---------- Handy ---------- */
@media (max-width: 760px) {
  body { font-size: 16px; }
  .hide-sm { display: none !important; }
  .show-sm { display: inline; }
  .header-inner { height: 64px; }
  .logo { font-size: 21px; }
  .logo-mark { width: 28px; height: 28px; border-radius: 8px; }
  .logo-mark svg { width: 15px; height: 15px; }
  .menu-toggle { display: grid; margin-right: -10px; }
  .header-actions { gap: 2px; }
  .header-actions .btn-sm { padding: 0 14px; min-height: 40px; }
  .header-inner { gap: 12px; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 64px; flex-direction: column; gap: 0; padding: 8px var(--gutter) 20px; background: var(--bg); border-bottom: 1px solid var(--line); box-shadow: 0 20px 30px rgba(26, 23, 20, .08); }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; font-size: 18px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav-mobile-only { display: block; }

  .hero { padding-top: 36px; padding-bottom: 32px; gap: 32px; }
  .hero-copy { gap: 20px; }
  .badge { font-size: 13px; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
  .checks-inline { flex-direction: column; gap: 10px; }
  .hero-visual { height: auto; flex-direction: column; align-items: center; gap: 14px; padding: 28px 16px 24px; }
  .hero-bg { inset: 0; border-radius: 28px; }
  .phone { width: 250px; height: 490px; border-radius: 38px; padding: 9px; }
  .phone-screen { border-radius: 30px; font-size: 12px; }
  .phone-hero { height: 84px; padding: 12px; }
  .phone-avatar { width: 34px; height: 34px; font-size: 14px; }
  .phone-hero strong { font-size: 14px; }
  .phone-item { padding: 9px 0; }
  .phone-item small { display: none; }
  .float-card { position: relative; inset: auto; width: min(310px, 100%); }
  .float-paypal { display: none; }

  .banner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 24px; }
  .banner-icon { display: none; }
  .banner-text strong { font-size: 20px; }

  .section-head { margin-bottom: 28px; }
  .section-head.center { text-align: left; align-items: flex-start; }
  .card { padding: 24px; border-radius: 22px; }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .steps li { border-top: 1px solid var(--line-strong); padding: 18px 0; display: grid; grid-template-columns: 44px minmax(0, 1fr); column-gap: 12px; row-gap: 4px; }
  .steps li:last-child { border-bottom: 1px solid var(--line-strong); }
  .step-no { font-size: 24px; grid-row: span 2; }
  .steps h3 { font-size: 18px; }
  .steps p { font-size: 15px; }
  .panel { padding: 26px 22px; border-radius: 24px; }
  .dns { grid-template-columns: minmax(0, 1fr); }
  .dns div { flex-direction: row; justify-content: space-between; border-bottom: 1px solid var(--line); }
  .dns div:last-child { border-bottom: 0; }
  .dns dt { background: transparent; padding: 12px 14px; }
  .dns dd { padding: 12px 14px; text-align: right; }
  .timeline time { width: 48px; }
  .features { grid-template-columns: minmax(0, 1fr); margin-top: 24px; }
  .features div { padding: 16px 0; border-left: 0; border-bottom: 1px solid var(--line-strong) !important; }
  .features h3 { font-size: 17px; }
  .features p { font-size: 15px; }
  .price-card { grid-template-columns: minmax(0, 1fr); padding: 26px 22px; gap: 24px; border-radius: 24px; }
  .price { font-size: 48px; }
  .price-main .btn { order: 9; width: 100%; }
  .faq summary { font-size: 17px; }
  .final-inner { flex-direction: column; align-items: stretch; gap: 24px; }
  .final .btn { width: 100%; }
  .footer-inner { flex-direction: column-reverse; }

  .field-row { gap: 12px; }
  .field input { height: 52px; }
  .reg { gap: 24px; }
  .reg-actions { flex-direction: column-reverse; }
  .reg-actions .btn { width: 100%; margin-left: 0; }
  .welcome-actions { flex-direction: column; }
  .welcome-actions .btn, .welcome-actions form { width: 100%; }
  .progress { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
