/* ============================================================
   MK BOXX — design system
   ============================================================ */

:root {
  /* ---- MKMedtech brand palette: royal blue + anthracite navy ---- */
  --brand:        #12229d;   /* royal blue — primary */
  --brand-deep:   #0d1973;   /* darker royal for hover */
  --brand-bright: #5c74ee;   /* lighter royal that reads on navy */

  --ink:        #050a30;     /* anthracite-navy: body text + dark surfaces */
  --ink-soft:   #2c3357;
  --ink-mute:   #5a6184;
  --line:       #e3e5ed;
  --line-soft:  #eef0f5;
  --paper:      #ffffff;
  --paper-2:    #f5f6fa;     /* very light neutral grey */
  --card:       #ffffff;

  /* accent — royal blue on light surfaces; tweakable */
  --accent:       #12229d;
  --accent-deep:  #0d1973;
  --on-accent:    #ffffff;

  /* dark surface (anthracite-navy sections) */
  --dark:       #0a1147;
  --dark-2:     #050a30;
  --on-dark:    #eef0fa;
  --on-dark-mute: #a6adce;
  --dark-line:  #1b2456;

  /* type */
  --display: "Space Grotesk", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;

  /* metrics */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px oklch(0.2 0.01 60 / 0.06), 0 2px 8px oklch(0.2 0.01 60 / 0.05);
  --shadow-md: 0 4px 14px oklch(0.2 0.01 60 / 0.08), 0 12px 40px oklch(0.2 0.01 60 / 0.07);
  --shadow-lg: 0 10px 30px oklch(0.2 0.01 60 / 0.12), 0 30px 70px oklch(0.2 0.01 60 / 0.10);
}

[data-theme="dark"] {
  --accent:     #6f86ff;
  --accent-deep: #8a9cff;
  --ink:        #eef0fa;
  --ink-soft:   #c3c8e2;
  --ink-mute:   #9197bb;
  --line:       #1f2856;
  --line-soft:  #19204a;
  --paper:      #070c2c;
  --paper-2:    #0b1240;
  --card:       #0e1547;
  --dark:       #0a1147;
  --dark-2:     #04081f;
  --on-dark:    #eef0fa;
  --on-dark-mute: #a6adce;
  --dark-line:  #1b2456;
  --shadow-md: 0 4px 14px oklch(0 0 0 / 0.4), 0 12px 40px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 10px 30px oklch(0 0 0 / 0.5), 0 30px 70px oklch(0 0 0 / 0.4);
}

/* accent that reads on anthracite-navy surfaces (icons, eyebrows, labels) */
.benefits, .reserve, .aud-card.dark, .faq-aside, .size-card.feature, .footer {
  --accent: var(--brand-bright);
  --accent-deep: #8094f2;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: hidden; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); width: 100%; }
.section { padding-block: clamp(60px, 9vw, 130px); }

.eyebrow {
  font-family: var(--display);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }

.h-sec { font-size: clamp(30px, 4.4vw, 52px); margin-top: 18px; max-width: 18ch; text-wrap: balance; }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-mute); max-width: 56ch; margin-top: 18px; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: 16px;
  padding: 15px 24px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform 0.18s ease, background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px color-mix(in srgb, var(--brand) 28%, transparent); }
.btn-primary:hover { background: var(--brand-deep); box-shadow: 0 10px 26px color-mix(in srgb, var(--brand) 38%, transparent); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
/* inverted CTAs sitting directly on dark navy surfaces */
.faq-aside .btn-primary, .aud-card.dark .btn-primary { background: #fff; color: var(--brand); box-shadow: none; }
.faq-aside .btn-primary:hover, .aud-card.dark .btn-primary:hover { background: #e7eafa; color: var(--brand-deep); }
.btn-lg { padding: 18px 30px; font-size: 17px; }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: oklch(0.985 0.006 85 / 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
[data-theme="dark"] .site-header { background: oklch(0.18 0.011 60 / 0.82); }
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; gap: 28px; height: 84px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 62px; height: 62px; object-fit: contain; display: block; border-radius: 8px; }
.footer .brand-logo { width: auto; height: 96px; border-radius: 0; display: block; }
.footer .brand { display: inline-flex; background: #ffffff; padding: 0; border-radius: 14px; overflow: hidden; margin-bottom: 18px; }
.nav-links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav-links a { font-size: 15.5px; font-weight: 500; color: var(--ink-soft); padding: 8px 13px; border-radius: 8px; transition: color 0.18s, background 0.18s; }
.nav-links a:hover { color: var(--ink); background: var(--paper-2); }
.nav-cta { display: flex; align-items: center; gap: 12px; margin-left: 8px; }

/* language switch */
.lang-switch { display: inline-flex; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: 3px; gap: 2px; }
.lang-switch button { border: none; background: transparent; font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: 0.02em; color: var(--ink-mute); padding: 6px 11px; border-radius: 999px; cursor: pointer; transition: background 0.18s, color 0.18s; }
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.active { background: var(--ink); color: var(--paper); }
.lang-switch-mobile { width: 100%; margin-bottom: 12px; }
.lang-switch-mobile button { flex: 1; font-size: 15px; padding: 11px; }
.nav-tel { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
.nav-tel:hover { color: var(--accent-deep); }
.burger { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: var(--card); align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.25s; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 70px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.prelaunch {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--line);
  padding: 8px 8px 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.prelaunch .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent); animation: pulse 2.4s infinite; }
.prelaunch .tag { background: var(--ink); color: var(--paper); font-family: var(--display); font-weight: 600; font-size: 12px; letter-spacing: 0.04em; padding: 4px 10px; border-radius: 999px; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--accent) 50%, transparent);} 70% { box-shadow: 0 0 0 9px color-mix(in oklch, var(--accent) 0%, transparent);} 100% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--accent) 0%, transparent);} }

.hero h1 { font-size: clamp(40px, 6.2vw, 76px); margin-top: 22px; letter-spacing: -0.035em; }
.hero h1 .hl { color: var(--accent-deep); }
.hero .lead { margin-top: 22px; font-size: clamp(17px, 1.6vw, 21px); }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta .item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .k { font-family: var(--display); font-weight: 700; font-size: 22px; }
.hero-meta .v { font-size: 13.5px; color: var(--ink-mute); }
.hero-meta .sep { width: 1px; background: var(--line); align-self: stretch; }

/* hero visual: real photo slot + small info card */
.hero-visual { position: relative; }
.hero-photo { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.float-card {
  position: absolute; left: -22px; bottom: 28px; z-index: 3;
  background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 15px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.float-card .ic { width: 44px; height: 44px; border-radius: 4px; background: var(--brand); display: grid; place-items: center; flex: 0 0 auto; }
.float-card .ic svg { width: 23px; height: 23px; stroke: #fff; }
.float-card .t1 { font-family: var(--display); font-weight: 700; font-size: 16px; }
.float-card .t2 { font-size: 13px; color: var(--ink-mute); }

/* hero illustrated box mockup (placeholder for a real photo, same 4/3 footprint) */
.hero-grid-bg { position: absolute; inset: -28px -28px auto auto; width: 170px; height: 170px; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 24px 24px; opacity: 0.6; border-radius: 6px; }
.hero-mock { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-2); box-shadow: var(--shadow-lg); padding: clamp(16px, 2.2vw, 24px); display: flex; flex-direction: column; gap: clamp(14px, 1.8vw, 18px); overflow: hidden; }
.hero-mock-head { display: flex; align-items: center; gap: 8px; }
.hero-mock-head .hm-dots { display: flex; gap: 5px; }
.hero-mock-head .hm-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.hero-mock-head .hm-dots i:first-child { background: var(--brand); }
.hero-mock-head .hm-title { margin-left: auto; font-family: var(--display); font-weight: 600; font-size: 12.5px; letter-spacing: 0.02em; color: var(--ink-mute); }
.hero-mock-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: clamp(10px, 1.4vw, 16px); }
.hmtile { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 11px; display: flex; flex-direction: column; gap: 9px; }
/* roller-door face: horizontal slats + handle */
.hmtile .hm-door { flex: 1; border-radius: 7px; position: relative; box-shadow: inset 0 0 0 1px var(--line-soft);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--ink) 7%, var(--paper-2)) 0, transparent 16%),
    repeating-linear-gradient(180deg, var(--paper-2) 0 8px, color-mix(in srgb, var(--ink) 6%, var(--paper-2)) 8px 11px); }
.hmtile .hm-handle { position: absolute; left: 50%; bottom: 14%; transform: translateX(-50%); width: 38%; height: 7px; border-radius: 6px; background: color-mix(in srgb, var(--ink) 20%, var(--paper-2)); }
.hmtile .hm-sz { font-family: var(--display); font-weight: 700; font-size: 17px; line-height: 1; letter-spacing: -0.01em; color: var(--ink-soft); text-align: center; }
.hmtile.hl { background: var(--brand); border-color: var(--brand); }
.hmtile.hl .hm-door { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0, transparent 18%),
    repeating-linear-gradient(180deg, color-mix(in srgb, #fff 26%, var(--brand)) 0 8px, color-mix(in srgb, #fff 12%, var(--brand)) 8px 11px); }
.hmtile.hl .hm-handle { background: rgba(255,255,255,0.85); }
.hmtile.hl .hm-sz { color: #fff; }

/* labelled photo placeholder */
.photoslot { position: relative; background: var(--paper-2); border: 1px solid var(--line); overflow: hidden; }
.photoslot image-slot { width: 100%; height: 100%; display: block; }
.photoslot .ps-label { position: absolute; left: 14px; bottom: 12px; z-index: 2; pointer-events: none;
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 600; font-size: 12.5px;
  color: var(--ink-soft); background: color-mix(in srgb, #fff 86%, transparent); border: 1px solid var(--line);
  padding: 5px 10px; border-radius: 4px; backdrop-filter: blur(3px); }
.photoslot .ps-label svg { width: 14px; height: 14px; stroke: var(--brand); }

/* photo strip at location */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.photo-strip .photoslot { aspect-ratio: 4/3; border-radius: 6px; }

/* ============================================================
   TRUST STRIP / BENEFITS
   ============================================================ */
.benefits { background: var(--ink); color: var(--on-dark); }
[data-theme="dark"] .benefits { background: var(--dark-2); }
.benefits .h-sec, .benefits h3 { color: var(--on-dark); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--dark-line); border: 1px solid var(--dark-line); border-radius: var(--radius-lg); overflow: hidden; margin-top: 46px; }
.benefit { background: var(--ink); padding: 30px 26px; transition: background 0.2s; }
[data-theme="dark"] .benefit { background: var(--dark-2); }
.benefit:hover { background: var(--dark-2); }
[data-theme="dark"] .benefit:hover { background: var(--dark); }
.benefit .ic { width: 46px; height: 46px; border-radius: 4px; background: transparent; border: 1px solid var(--dark-line); display: grid; place-items: center; margin-bottom: 18px; }
.benefit .ic svg { width: 23px; height: 23px; stroke: var(--accent); }
.benefit h4 { font-size: 18px; color: var(--on-dark); margin-bottom: 7px; }
.benefit p { font-size: 14.5px; color: var(--on-dark-mute); line-height: 1.55; }

/* ============================================================
   SIZE FINDER (configurator)
   ============================================================ */
.finder { background: var(--paper-2); }
.finder-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.finder-head .lead { margin-inline: auto; text-align: center; }
.finder-card {
  margin-top: 50px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden;
  display: grid; grid-template-columns: 1.15fr 1fr;
}
.finder-pick { padding: clamp(28px, 3.5vw, 44px); border-right: 1px solid var(--line); }
.finder-pick > span.step { font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.finder-pick h3 { font-size: 26px; margin: 8px 0 24px; }
.use-list { display: flex; flex-direction: column; gap: 10px; }
.use-opt {
  display: flex; align-items: center; gap: 16px; text-align: left; width: 100%;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 15px 18px;
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
}
.use-opt:hover { border-color: var(--accent); transform: translateX(3px); }
.use-opt.active { border-color: var(--accent); background: color-mix(in oklch, var(--accent) 7%, transparent); box-shadow: inset 0 0 0 1px var(--accent); }
.use-opt .emoji { width: 42px; height: 42px; border-radius: 4px; background: var(--card); border: 1px solid var(--line); display: grid; place-items: center; flex: 0 0 auto; }
.use-opt .emoji svg { width: 22px; height: 22px; stroke: var(--ink-soft); }
.use-opt.active .emoji { background: var(--accent); border-color: var(--accent); }
.use-opt.active .emoji svg { stroke: var(--on-accent); }
.use-opt .ut { font-family: var(--display); font-weight: 600; font-size: 16px; }
.use-opt .us { font-size: 13.5px; color: var(--ink-mute); }

.result-hint {
  display: none;
  margin-top: 18px; text-align: center;
  font-family: var(--display); font-weight: 600; font-size: 14px;
  color: var(--accent-deep, var(--accent));
  letter-spacing: 0.02em;
}
@media (prefers-reduced-motion: no-preference) {
  .result-hint { animation: hintBob 1.4s ease-in-out infinite; }
}
@keyframes hintBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

@media (prefers-reduced-motion: no-preference) {
  .finder-result.just-updated { animation: resultFlash 0.9s ease; }
}
@keyframes resultFlash {
  0% { background: color-mix(in oklch, var(--accent) 16%, var(--paper)); }
  100% { background: var(--paper); }
}

.finder-result { padding: clamp(28px, 3.5vw, 44px); display: flex; flex-direction: column; background: var(--paper); }
.finder-result .step { font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.result-size { display: flex; align-items: baseline; gap: 8px; margin-top: 10px; }
.result-size .num { font-family: var(--display); font-weight: 700; font-size: clamp(52px, 7vw, 76px); line-height: 1; letter-spacing: -0.04em; }
.result-size .unit { font-family: var(--display); font-weight: 600; font-size: 26px; color: var(--ink-mute); }
.result-name { font-size: 15px; color: var(--ink-soft); margin-top: 6px; }
/* visual box bar */
.box-bar { height: 12px; background: var(--line-soft); border-radius: 999px; margin: 22px 0 8px; overflow: hidden; }
.box-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-deep)); border-radius: 999px; width: 20%; transition: width 0.5s cubic-bezier(.2,.8,.2,1); }
.box-scale { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--ink-mute); font-family: var(--display); }
.result-fits { font-size: 14.5px; color: var(--ink-mute); margin: 18px 0; min-height: 42px; }
.result-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 22px; padding-top: 18px; border-top: 1px solid var(--line); margin-top: auto; }
.result-price .pnum { font-family: var(--display); font-weight: 700; font-size: 34px; }
.result-price .pper { font-size: 14px; color: var(--ink-mute); }
.result-price .pnote { font-size: 12.5px; color: var(--ink-mute); }
.finder-result .btn { width: 100%; justify-content: center; }

/* ============================================================
   SIZES
   ============================================================ */
.sizes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.size-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; position: relative; overflow: hidden;
}
.size-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.size-card .corner { display: none; }
.size-card .sz { display: flex; align-items: baseline; gap: 6px; }
.size-card .sz .n { font-family: var(--display); font-weight: 700; font-size: 40px; letter-spacing: -0.03em; }
.size-card .sz .u { font-family: var(--display); font-weight: 600; font-size: 18px; color: var(--ink-mute); }
.size-card h4 { font-size: 18px; margin: 14px 0 8px; }
.size-card p { font-size: 14.5px; color: var(--ink-mute); flex: 1; }
.size-card .from { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: baseline; justify-content: space-between; }
.size-card .from .ab { font-size: 13px; color: var(--ink-mute); }
.size-card .from .pr { font-family: var(--display); font-weight: 700; font-size: 20px; }
.size-card .from .pr small { font-weight: 500; font-size: 12px; color: var(--ink-mute); }
.size-card.feature { background: var(--ink); border-color: var(--ink); }
.size-card.feature .sz .n, .size-card.feature h4 { color: var(--on-dark); }
.size-card.feature .sz .u, .size-card.feature p, .size-card.feature .from .ab { color: var(--on-dark-mute); }
.size-card.feature .from { border-top-color: var(--dark-line); }
.size-card.feature .from .pr { color: var(--accent); }
.size-card.feature .corner { background-image: linear-gradient(var(--dark-line) 1px, transparent 1px), linear-gradient(90deg, var(--dark-line) 1px, transparent 1px); }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing { background: var(--paper-2); }
.price-toggle { display: inline-flex; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-top: 28px; gap: 2px; }
.price-toggle button { border: none; background: transparent; padding: 10px 22px; border-radius: 999px; font-family: var(--display); font-weight: 600; font-size: 14.5px; color: var(--ink-mute); transition: 0.2s; }
.price-toggle button.active { background: var(--ink); color: var(--paper); }
.price-table-wrap { margin-top: 36px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
table.prices { width: 100%; border-collapse: collapse; }
table.prices th, table.prices td { padding: 18px 26px; text-align: left; }
table.prices thead th { font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); border-bottom: 1px solid var(--line); }
table.prices th.r, table.prices td.r { text-align: right; }
table.prices tbody tr { border-bottom: 1px solid var(--line-soft); transition: background 0.15s; }
table.prices tbody tr:last-child { border-bottom: none; }
table.prices tbody tr:hover { background: var(--paper-2); }
table.prices td .szc { font-family: var(--display); font-weight: 700; font-size: 19px; }
table.prices td .price-main { font-family: var(--display); font-weight: 700; font-size: 18px; }
table.prices td .price-sub { font-size: 12.5px; color: var(--ink-mute); }
table.prices td.use { color: var(--ink-mute); font-size: 14.5px; }
table.prices td .mini-cta { font-family: var(--display); font-weight: 600; font-size: 13.5px; color: var(--accent-deep); }
table.prices td .mini-cta:hover { text-decoration: underline; }
.price-notes { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 26px; }
.price-notes .note { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--ink-soft); }
.price-notes .note svg { width: 18px; height: 18px; stroke: var(--accent-deep); flex: 0 0 auto; }

/* equipment cards */
.equip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 46px; }
.equip-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.equip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.equip-card.highlight { background: var(--ink); border-color: var(--ink); }
.equip-card.highlight h4 { color: var(--on-dark); }
.equip-card.highlight p { color: var(--on-dark-mute); }
.equip-card .eq-ic { width: 46px; height: 46px; border-radius: 4px; background: transparent; border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 16px; }
.equip-card .eq-ic svg { width: 24px; height: 24px; stroke: var(--brand); }
.equip-card.highlight .eq-ic { background: var(--accent); }
.equip-card.highlight .eq-ic svg { stroke: var(--on-accent); }
.equip-card .eq-h { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 7px; }
.equip-card .eq-h h4 { font-size: 16.5px; }
.equip-card .eq-badge { font-family: var(--display); font-weight: 600; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-accent); background: var(--accent); padding: 3px 8px; border-radius: 999px; }
.equip-card p { font-size: 13.5px; color: var(--ink-mute); line-height: 1.5; }

.price-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 60px; flex-wrap: wrap; }
.price-head h3 { font-size: clamp(22px, 2.4vw, 28px); }
.price-head .price-toggle { margin-top: 0; }

/* equipment chips in table */
.eq-chips { display: flex; gap: 7px; }
.eq-chip { width: 30px; height: 30px; border-radius: 4px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); }
.eq-chip svg { width: 17px; height: 17px; }
.eq-chip.on { background: color-mix(in srgb, var(--brand) 9%, transparent); border-color: color-mix(in srgb, var(--brand) 30%, transparent); }
.eq-chip.on svg { stroke: var(--brand); }
.eq-chip.off { background: transparent; border-style: dashed; }
.eq-chip.off svg { stroke: var(--line); }

table.prices td .tier { display: inline-block; margin-left: 10px; font-family: var(--display); font-weight: 600; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; vertical-align: middle; }
table.prices td .tier.basis { background: var(--paper-2); color: var(--ink-mute); border: 1px solid var(--line); }
table.prices td .tier.komfort { background: var(--ink); color: var(--paper); }
table.prices td.perm2 { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--ink-mute); }
table.prices th.perm2, table.prices th.eqcol { font-weight: 600; }

.equip-legend { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 20px; padding: 16px 20px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.equip-legend .leg-item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500; color: var(--ink-soft); }
.equip-legend .eq-chip { width: 26px; height: 26px; }
.equip-legend .eq-chip svg { width: 15px; height: 15px; }

/* Mobile price cards (hidden on desktop, shown ≤620px) */
.price-cards { display: none; }
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 20px; display: flex; flex-direction: column; gap: 14px;
}
.price-card .pc-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.price-card .pc-size { font-family: var(--display); font-weight: 700; font-size: 22px; }
.price-card .tier {
  display: inline-block; font-family: var(--display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px;
}
.price-card .tier.basis { background: var(--paper-2); color: var(--ink-mute); border: 1px solid var(--line); }
.price-card .tier.komfort { background: var(--ink); color: var(--paper); }
.price-card .pc-price { display: flex; flex-direction: column; gap: 2px; }
.price-card .pc-price .price-main { font-family: var(--display); font-weight: 700; font-size: 27px; line-height: 1.1; color: var(--brand); }
.price-card .pc-price .pc-per { font-size: 13px; color: var(--ink-mute); }
.price-card .pc-price .price-sub { font-size: 13px; color: var(--ink-mute); margin-top: 2px; }
.price-card .pc-eq { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; border-top: 1px solid var(--line-soft); }
.price-card .mini-cta {
  align-self: flex-start; font-family: var(--display); font-weight: 600; font-size: 14.5px;
  color: var(--accent-deep); display: inline-flex; align-items: center; gap: 6px;
}
.price-card .mini-cta:hover { text-decoration: underline; }
.price-card .pc-cta {
  align-self: stretch; margin-top: 2px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #12229d; color: #fff; border-radius: 12px;
  padding: 15px 20px; min-height: 50px;
  font-family: var(--display); font-weight: 600; font-size: 15px; text-align: center;
  transition: background 0.15s;
}
.price-card .pc-cta:hover { background: #0e1b7e; text-decoration: none; }
.price-card .pc-cta .arrow { color: #fff; }

/* ============================================================
   AUDIENCE SPLIT (Privat / Firmen)
   ============================================================ */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }
.aud-card { border-radius: var(--radius-lg); padding: clamp(28px, 3.4vw, 46px); border: 1px solid var(--line); background: var(--card); display: flex; flex-direction: column; }
.aud-card.dark { background: var(--ink); border-color: var(--ink); }
.aud-card.dark h3, .aud-card.dark .label { color: var(--on-dark); }
.aud-card.dark p, .aud-card.dark li { color: var(--on-dark-mute); }
.aud-card .label { font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); }
.aud-card.dark .label { color: var(--accent); }
.aud-card h3 { font-size: clamp(24px, 2.6vw, 32px); margin: 12px 0 14px; }
.aud-card > p { font-size: 16px; color: var(--ink-mute); }
.aud-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 18px; margin: 24px 0 28px; }
.aud-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.aud-list li svg { width: 18px; height: 18px; stroke: var(--accent-deep); flex: 0 0 auto; margin-top: 3px; }
.aud-card.dark .aud-list li svg { stroke: var(--accent); }
.aud-card .btn { align-self: flex-start; margin-top: auto; }

/* ============================================================
   PARKING + LOCATION (combined band)
   ============================================================ */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.loc-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); aspect-ratio: 4/3; position: relative; background: var(--paper-2); }
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.15); }
.loc-info .addr { font-family: var(--display); font-weight: 600; font-size: 20px; margin: 18px 0; display: flex; gap: 12px; align-items: flex-start; }
.loc-info .addr svg { width: 22px; height: 22px; stroke: var(--accent-deep); flex: 0 0 auto; margin-top: 3px; }
.loc-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0; }
.loc-feat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.loc-feat .ic { width: 40px; height: 40px; border-radius: 4px; background: transparent; border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 12px; }
.loc-feat .ic svg { width: 20px; height: 20px; stroke: var(--accent-deep); }
.loc-feat h4 { font-size: 15.5px; margin-bottom: 4px; }
.loc-feat p { font-size: 13.5px; color: var(--ink-mute); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper-2); }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 64px); margin-top: 24px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 22px 0; display: flex; gap: 18px; align-items: center; font-family: var(--display); font-weight: 600; font-size: 18px; color: var(--ink); }
.faq-q .plus { margin-left: auto; width: 26px; height: 26px; flex: 0 0 auto; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--accent-deep); border-radius: 2px; transition: transform 0.3s; }
.faq-q .plus::before { left: 4px; right: 4px; top: 12px; height: 2px; }
.faq-q .plus::after { top: 4px; bottom: 4px; left: 12px; width: 2px; }
.faq-item.open .faq-q .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding-bottom: 22px; padding-right: 30px; color: var(--ink-mute); font-size: 15.5px; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-aside { background: var(--ink); color: var(--on-dark); border-radius: var(--radius-lg); padding: 34px; position: sticky; top: 96px; }
.faq-aside h3 { color: var(--on-dark); font-size: 24px; }
.faq-aside p { color: var(--on-dark-mute); font-size: 15px; margin: 12px 0 22px; }
.faq-aside .btn { width: 100%; justify-content: center; }

/* ============================================================
   RESERVATION FORM
   ============================================================ */
.reserve { background: var(--ink); color: var(--on-dark); }
.reserve .eyebrow { color: var(--accent); }
.reserve .h-sec { color: var(--on-dark); }
.reserve .lead { color: var(--on-dark-mute); }
.reserve-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(30px, 5vw, 70px); margin-top: 50px; align-items: start; }
.reserve-aside .point { display: flex; gap: 14px; margin-bottom: 24px; }
.reserve-aside .point .n { font-family: var(--display); font-weight: 700; font-size: 15px; width: 32px; height: 32px; border-radius: 4px; background: color-mix(in srgb, var(--brand-bright) 22%, transparent); color: var(--brand-bright); display: grid; place-items: center; flex: 0 0 auto; }
.reserve-aside .point h4 { color: var(--on-dark); font-size: 16.5px; margin-bottom: 3px; }
.reserve-aside .point p { color: var(--on-dark-mute); font-size: 14px; }
.reserve-aside .contact-card { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--dark-line); }
.reserve-aside .contact-card a { display: flex; align-items: center; gap: 12px; color: var(--on-dark); font-family: var(--display); font-weight: 600; margin-bottom: 12px; }
.reserve-aside .contact-card a svg { width: 19px; height: 19px; stroke: var(--accent); }
.reserve-aside .contact-card a:hover { color: var(--accent); }

.form-card { background: var(--card); border-radius: var(--radius-lg); padding: clamp(26px, 3.2vw, 40px); box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); font-family: var(--display); }
.field label .opt { color: var(--ink-mute); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 15.5px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 11px; padding: 13px 15px; width: 100%;
  transition: border-color 0.18s, box-shadow 0.18s; -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 18%, transparent); }
.field textarea { resize: vertical; min-height: 84px; }
.field.invalid input, .field.invalid select { border-color: oklch(0.6 0.2 25); }
.field .err { font-size: 12.5px; color: oklch(0.58 0.2 25); display: none; }
.field.invalid .err { display: block; }
.req { color: oklch(0.58 0.2 25); font-weight: 700; }
.consent-field { margin-top: 4px; }
.consent { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.consent input { -webkit-appearance: checkbox; appearance: auto; width: 19px; height: 19px; padding: 0; margin-top: 1px; accent-color: var(--brand); flex: 0 0 auto; cursor: pointer; }
.consent .consent-text a { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.consent .consent-text a:hover { color: var(--brand-deep); }
.consent-field.invalid .consent input { outline: 2px solid oklch(0.6 0.2 25); outline-offset: 2px; border-radius: 3px; }
.newsletter-field { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.newsletter-field .consent-text { font-size: 13.5px; color: var(--ink-mute); }
.seg { display: flex; gap: 8px; position: relative; }
.seg label { flex: 1; }
.seg input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.seg .seg-btn { display: block; text-align: center; padding: 13px; border: 1.5px solid var(--line); border-radius: 11px; font-family: var(--display); font-weight: 600; font-size: 14.5px; color: var(--ink-soft); cursor: pointer; transition: 0.18s; }
.seg input:checked + .seg-btn { border-color: var(--accent); background: color-mix(in oklch, var(--accent) 10%, transparent); color: var(--ink); box-shadow: inset 0 0 0 1px var(--accent); }
.check-row { display: flex; gap: 12px; flex-wrap: wrap; }
.check { display: inline-flex; align-items: center; gap: 10px; font-size: 14.5px; cursor: pointer; padding: 11px 16px; border: 1.5px solid var(--line); border-radius: 999px; user-select: none; transition: border-color 0.18s, background 0.18s, box-shadow 0.18s; }
.check:hover { border-color: var(--accent); }
.check.is-checked, .check:has(input:checked) { border-color: var(--accent); background: color-mix(in oklch, var(--accent) 12%, transparent); box-shadow: inset 0 0 0 1px var(--accent); color: var(--ink); }
.check input {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; flex: 0 0 auto; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: 6px;
  background: #fff; position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.check input:checked {
  background: var(--accent-deep); border-color: var(--accent-deep);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 13px;
}
.check:hover input { border-color: var(--accent); }
.h-captcha { margin-top: 20px; margin-bottom: 4px; }
.form-submit { display: flex; align-items: center; gap: 18px; margin-top: 22px; flex-wrap: wrap; }
.form-submit .btn { flex: 0 0 auto; }
.form-submit .fineprint { font-size: 12.5px; color: var(--ink-mute); max-width: 32ch; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; animation: fadeUp 0.5s ease; }

/* ============================================================
   Floating WhatsApp chat button
   ============================================================ */
.wa-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 95;
  display: inline-flex; align-items: center;
  height: 60px; max-width: 60px; border-radius: 999px;
  background: #25D366; color: #fff; text-decoration: none;
  box-shadow: 0 10px 26px rgba(7, 94, 84, 0.30);
  overflow: hidden;
  transition: max-width 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.wa-fab .wa-ic { width: 60px; height: 60px; flex: 0 0 auto; display: grid; place-items: center; }
.wa-fab .wa-ic svg { width: 32px; height: 32px; }
.wa-fab .wa-label {
  font-family: var(--display); font-weight: 600; font-size: 15.5px;
  white-space: nowrap; padding-right: 24px;
}
.wa-fab:hover, .wa-fab:focus-visible {
  max-width: 280px; background: #1ebe5d;
  box-shadow: 0 14px 34px rgba(7, 94, 84, 0.40); transform: translateY(-2px);
  outline: none;
}
@media (max-width: 600px) {
  .wa-fab { right: 16px; bottom: 16px; height: 54px; max-width: 54px; }
  .wa-fab .wa-ic { width: 54px; height: 54px; }
  .wa-fab .wa-ic svg { width: 29px; height: 29px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab { transition: box-shadow 0.2s, background 0.2s; }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px);} to { opacity: 1; transform: none; } }
.form-success .check-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; margin: 0 auto 20px; }
.form-success .check-ic svg { width: 32px; height: 32px; stroke: var(--on-accent); }
.form-success h3 { font-size: 26px; margin-bottom: 10px; }
.form-success p { color: var(--ink-mute); max-width: 40ch; margin: 0 auto 20px; }

/* ============================================================
   TRUST / SOCIAL PROOF
   ============================================================ */
.trust { background: var(--paper-2); }

.operator { margin-top: 40px; background: var(--ink); color: var(--on-dark); border-radius: 8px; overflow: hidden; }
.operator .op-head { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: clamp(26px, 3.2vw, 44px); padding: clamp(28px, 3.4vw, 44px); }
.operator .op-logo { display: inline-block; line-height: 0; flex: 0 0 auto; transition: transform 0.18s, opacity 0.18s; }
.operator .op-logo:hover { transform: translateY(-2px); opacity: 0.85; }
.operator .op-logo img { height: 122px; width: auto; display: block; border-radius: 14px; }
.operator .op-text h3 { color: #fff; font-size: clamp(20px, 2.2vw, 26px); margin-bottom: 12px; }
.operator .op-text p { color: var(--on-dark-mute); font-size: 15.5px; max-width: 62ch; line-height: 1.65; }
.operator .op-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--brand-bright); }
.operator .op-link:hover { color: #fff; }
.operator .op-link .arrow { transition: transform 0.2s; }
.operator .op-link:hover .arrow { transform: translateX(3px); }
.operator .op-points { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--dark-line); border-top: 1px solid var(--dark-line); }
.operator .op-points li { background: var(--ink); display: flex; gap: 13px; padding: 24px clamp(20px, 2.4vw, 30px); }
.operator .op-points svg { width: 22px; height: 22px; stroke: var(--brand-bright); flex: 0 0 auto; margin-top: 2px; }
.operator .op-points .pt-h { display: block; font-family: var(--display); font-weight: 600; font-size: 15.5px; color: #fff; margin-bottom: 4px; }
.operator .op-points .pt-p { display: block; font-size: 13.5px; color: var(--on-dark-mute); line-height: 1.5; }

/* trust line near the form */
.form-trust { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 22px; }
.form-trust .ti { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--on-dark-mute); }
.form-trust .ti svg { width: 18px; height: 18px; stroke: var(--brand-bright); flex: 0 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark-2); color: var(--on-dark-mute); padding-block: 64px 30px; }
[data-theme="dark"] .footer { background: oklch(0.1 0.008 60); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid var(--dark-line); }
.footer .brand { color: var(--on-dark); margin-bottom: 16px; }
.footer-col h5 { font-family: var(--display); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark); margin-bottom: 16px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; font-size: 14.5px; color: var(--on-dark-mute); margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }
.footer-about { font-size: 14.5px; line-height: 1.6; max-width: 38ch; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-bottom .legal { display: flex; gap: 20px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
/* Entrance animation intentionally omitted: keeping content visible by default
   is more robust across rendering environments. .reveal/.in remain as no-op hooks. */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-top: 20px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .finder-card { grid-template-columns: 1fr; }
  .finder-pick { border-right: none; border-bottom: 1px solid var(--line); }
  .result-hint { display: block; }
  .sizes-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-grid { grid-template-columns: repeat(3, 1fr); }
  .aud-grid, .loc-grid, .faq-grid, .reserve-grid { grid-template-columns: 1fr; }
  .operator .op-head { grid-template-columns: 1fr; gap: 22px; }
  .operator .op-points { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .faq-aside { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }

  .mobile-menu { position: fixed; inset: 84px 0 0; background: var(--paper); z-index: 99; transform: translateX(100%); transition: transform 0.3s; padding: 24px var(--gutter); display: flex; flex-direction: column; gap: 4px; overflow-y: auto; }
  .mobile-menu.open { transform: none; }
  .mobile-menu a { font-family: var(--display); font-weight: 600; font-size: 20px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .mobile-menu .btn { margin-top: 20px; justify-content: center; }
  body.menu-open { overflow: hidden; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .sizes-grid, .benefits-grid, .aud-list, .loc-feats, .form-grid, .footer-top { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: 1fr; }
  table.prices th.eqcol, table.prices td.eqcol, table.prices th.perm2, table.prices td.perm2 { display: none; }
  .hero-meta .sep { display: none; }
  .float-card { left: 0; right: 0; bottom: -20px; }
  table.prices th, table.prices td { padding: 14px 16px; }
  .form-grid .field.half-keep { grid-column: auto; }
  .price-table-wrap { display: none; }
  .price-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
}

/* ============================================================
   KLARO — Cookie-Consent, an die Marke angepasst
   ============================================================ */
.klaro {
  --font-family: var(--display, inherit);
  --border-radius: 12px;
  --green1: #12229d; --green2: #0d1a7a; --green3: #12229d;
  --dark1: #050a30; --dark2: #050a30; --dark3: #0b1550;
  --light1: #eef0fa; --light2: #c9cfe8; --light3: #2a3576;
}
/* Banner (Consent-Notice) nach unten links, damit es den WhatsApp-Button (unten rechts) nicht überdeckt */
.klaro .cookie-notice:not(.cookie-modal-notice) {
  left: 24px; right: auto; bottom: 24px;
  max-width: 380px; width: auto;
  border-radius: 14px;
  background: #050a30;
  box-shadow: 0 18px 44px rgba(5, 10, 48, 0.4);
  border: 1px solid rgba(238, 240, 250, 0.12);
}
.klaro .cookie-notice .cn-body,
.klaro .cookie-modal .cm-body,
.klaro .cookie-notice p, .klaro .cookie-modal p,
.klaro .cookie-notice strong, .klaro .cookie-modal strong { color: #eef0fa; }
.klaro .cookie-modal .cm-modal { background: #050a30; color: #eef0fa; border-radius: 14px; }
.klaro .cookie-modal .cm-modal .cm-header h1,
.klaro .cookie-modal .cm-modal .cm-header p { color: #eef0fa; }
/* "Einstellungen"-Link hell */
.klaro .cookie-notice .cn-learn-more,
.klaro .cookie-notice a, .klaro .cookie-modal a { color: #a9b3e6; }
.klaro .cookie-notice a:hover, .klaro .cookie-modal a:hover { color: #eef0fa; }
/* Akzeptieren / Alle akzeptieren — Markenblau */
.klaro .cm-btn.cm-btn-success,
.klaro .cm-btn.cm-btn-accept-all,
.klaro .cn-buttons .cm-btn-success,
.klaro .cookie-notice .cn-ok .cm-btn-success {
  background: #12229d; color: #fff;
}
.klaro .cm-btn.cm-btn-success:hover,
.klaro .cm-btn.cm-btn-accept-all:hover,
.klaro .cn-buttons .cm-btn-success:hover { background: #0d1a7a; }
/* Ablehnen — dezent, umrandet */
.klaro .cm-btn.cn-decline,
.klaro .cm-btn.cm-btn-decline {
  background: transparent; color: #c9cfe8;
  border: 1px solid rgba(201, 207, 232, 0.4); opacity: 1;
}
.klaro .cm-btn.cn-decline:hover,
.klaro .cm-btn.cm-btn-decline:hover { background: rgba(238, 240, 250, 0.08); color: #eef0fa; }
/* Blockierter Inhalt: Karten-Platzhalter für Google Maps */
.klaro .cookie-notice.cookie-modal-notice {
  background: #050a30; color: #eef0fa;
  border: 1px solid rgba(238, 240, 250, 0.14); border-radius: 12px;
}
.klaro .cookie-notice.cookie-modal-notice p,
.klaro .cookie-notice.cookie-modal-notice strong { color: #eef0fa; }
.klaro .cookie-notice.cookie-modal-notice .cm-btn {
  background: #12229d; color: #fff; border: none;
}
.klaro .cookie-notice.cookie-modal-notice .cm-btn:hover { background: #0d1a7a; }
@media (max-width: 620px) {
  /* Banner über den WhatsApp-Button heben, damit sich nichts überschneidet */
  .klaro .cookie-notice:not(.cookie-modal-notice) {
    left: 12px; right: 12px; bottom: 88px; max-width: none;
  }
}
