/* ============================================================
   personatechnica — Design System
   Frisch & zugänglich · seniorengerecht · vertrauensvoll
   ============================================================ */

/* ---- Fonts (rund, freundlich, zum Comfortaa-Logo passend) ---- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Nunito+Sans:opsz,wght@6..12,400;6..12,500;6..12,600;6..12,700&family=Comfortaa:wght@400;500;600;700&family=Quicksand:wght@400;500;600;700&family=Fredoka:wght@400;500;600;700&display=swap');

/* ============================================================
   TOKENS  — controllable via Tweaks (data attrs on <html>)
   ============================================================ */
:root {
  /* Accent — default Royal Blue */
  --accent: #0026b3;
  /* Accent — clean monochrome (Schwarz auf Weiß) */
  --accent: #111111;
  --accent-deep: #000000;
  --accent-soft: #f4f4f4;
  --accent-tint: #fafafa;

  /* Ink / neutrals */
  --ink: #111111;
  --ink-2: #3d3d3d;
  --ink-3: #767676;
  --line: #e6e6e6;
  --line-2: #f0f0f0;
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --paper: #ffffff;

  /* Typography — rund & gut lesbar */
  --font-head: 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
  --font-brand: 'Comfortaa', system-ui, sans-serif;
  --head-weight: 800;

  /* Geometry — flacher, ruhiger */
  --radius: 10px;
  --radius-sm: 7px;
  --radius-lg: 14px;
  --pill: 999px;

  /* Scale — senior accessible base */
  --base: 20px;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 1px 3px rgba(0,0,0,.05), 0 8px 24px rgba(0,0,0,.05);
  --shadow-lg: 0 2px 8px rgba(0,0,0,.06), 0 20px 48px rgba(0,0,0,.08);
}

/* ---- Accent variants ---- */
:root[data-accent="mono"]   { --accent:#111111; --accent-deep:#000000; --accent-soft:#f4f4f4; --accent-tint:#fafafa; }
:root[data-accent="petrol"] { --accent:#0c6e7d; --accent-deep:#08505c; --accent-soft:#e6f3f5; --accent-tint:#f3fafb; }
:root[data-accent="sage"]   { --accent:#2f7d52; --accent-deep:#215c3c; --accent-soft:#e9f4ed; --accent-tint:#f4faf6; }
:root[data-accent="sun"]    { --accent:#0026b3; --accent-deep:#001b7d; --accent-soft:#eef1fc; --accent-tint:#f6f8ff; }

/* ---- Heading font variants (alle rund) ---- */
:root[data-head="quicksand"] { --font-head:'Quicksand', system-ui, sans-serif; --head-weight:700; }
:root[data-head="fredoka"]   { --font-head:'Fredoka', system-ui, sans-serif; --head-weight:600; }
:root[data-head="comfortaa"] { --font-head:'Comfortaa', system-ui, sans-serif; --head-weight:700; }

/* ---- Corner style variants ---- */
:root[data-corners="sharp"] { --radius:6px; --radius-sm:4px; --radius-lg:8px; --pill:8px; }
:root[data-corners="round"] { --radius:26px; --radius-sm:18px; --radius-lg:36px; --pill:999px; }

/* ============================================================
   BASE
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
p { margin: 0; }

::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(40px, 4.8vw, 74px); }
.section--tint { background: var(--bg-alt); }
.section--accent { background: var(--accent); color: #fff; }

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-flex; align-items: center;
  font-family: var(--font-body);
  font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content:""; display:none; }
.section--accent .eyebrow { color: #fff; }
.section--accent .eyebrow::before { background: rgba(255,255,255,.7); }

.lede { font-size: 1.22rem; line-height: 1.7; color: var(--ink-2); max-width: 58ch; }

/* ============================================================
   BUTTONS  — large, senior-friendly hit targets
   ============================================================ */
.btn {
  --h: 60px;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: var(--h);
  padding: 0 30px;
  font-family: var(--font-body);
  font-size: 1.06rem; font-weight: 600;
  border-radius: var(--pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px color-mix(in srgb, var(--accent) 30%, transparent); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 38%, transparent); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--accent); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { background: transparent; color:#fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color:#fff; }
.btn--lg { --h: 66px; font-size: 1.12rem; padding: 0 38px; }
.btn--block { display: flex; width: 100%; }

/* ============================================================
   TOP BAR + HEADER
   ============================================================ */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: .9rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; padding-block: 5px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; white-space: nowrap; }
.topbar a:hover { color: #fff; opacity: .8; }
.topbar .muted { color: rgba(255,255,255,.7); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar .dot { width:7px;height:7px;border-radius:50%;background:#5be39b;box-shadow:0 0 0 3px rgba(91,227,155,.25);display:inline-block; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, #fff 86%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 80px; }

/* Logo */
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 36px; width: auto; max-width: none; display: block; }
.footer .brand img { filter: brightness(0) invert(1); height: 30px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 600; font-size: 1.02rem; color: var(--ink-2);
  padding: 10px 16px; border-radius: var(--radius-sm); white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav a:hover { background: var(--accent-soft); color: var(--accent); }
.header-cta { display: flex; align-items: center; gap: 14px; }

.menu-toggle { display: none; width: 52px; height: 52px; border: 2px solid var(--line); background: #fff; border-radius: var(--radius-sm); cursor: pointer; align-items: center; justify-content: center; }
.menu-toggle svg { width: 26px; height: 26px; stroke: var(--ink); }

/* ============================================================
   HERO  — zweispaltig: Text links, Foto rechts (clean)
   ============================================================ */
.hero { padding-block: clamp(40px, 5vw, 84px) clamp(10px, 1.5vw, 18px); }
.hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero-card { max-width: 560px; }
.hero-card .eyebrow { margin-bottom: 18px; }
.hero-card .eyebrow::before { display: none; }
.hero h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1.08; }
.hero h1 .accent { color: var(--accent); }
.hero-claim { font-size: 1.24rem; color: var(--ink-2); margin-top: 20px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-photo img { width: 100%; aspect-ratio: 4/3.1; object-fit: cover; object-position: 50% 22%; }

/* Trust-Leiste unter dem Bild */
.trust-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-bar .container { display: flex; flex-wrap: wrap; align-items: center; gap: 24px clamp(36px, 6vw, 90px); padding-block: clamp(28px, 3.5vw, 46px); }
.trust-bar .t-item { display: flex; flex-direction: column; gap: 2px; }
.trust-bar .stars { color: #f5a623; font-size: 1.4rem; letter-spacing: 3px; }
.trust-bar .rating-row { display: flex; align-items: center; gap: 10px; }
.trust-bar .g-logo { width: 24px; height: 24px; flex: none; }
.trust-bar .t-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem, 2.4vw, 2.1rem); color: var(--ink); line-height: 1; }
.trust-bar .t-lbl { color: var(--ink-3); font-size: 1.02rem; }
.trust-bar .t-lbl b { color: var(--ink); font-weight: 700; }
.trust-bar .t-word { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.2rem, 1.8vw, 1.55rem); color: var(--ink); line-height: 1.05; }
.hero-microtrust { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 1.02rem; font-weight: 600; }

/* ============================================================
   UTILITIES + NEUE SEKTIONEN (finale Strategie)
   ============================================================ */
.h-sec { font-size: clamp(2rem, 3.6vw, 3rem); }
.h-sec .accent { color: var(--accent); }

/* Technik-Check Preisbox */
.price-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 3vw, 40px); box-shadow: var(--shadow-sm); }
.price-box-head { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--ink); }
.price-box-rows { margin: 22px 0 8px; display: grid; gap: 2px; }
.pbr { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 16px 0; }
.pbr span { color: var(--ink-2); }
.pbr b { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--accent); white-space: nowrap; }
.price-box-note { color: var(--ink-3); font-size: 1rem; margin: 6px 0 22px; line-height: 1.5; }

/* Weitere Angebote */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; gap: 10px; transition: transform .18s, box-shadow .2s; }
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.offer-ic { width: 56px; height: 56px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 8px; }
.offer-ic svg { width: 30px; height: 30px; }
.offer-card h3 { font-size: 1.28rem; }
.offer-price { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--accent); }
.offer-card p { color: var(--ink-2); font-size: 1.02rem; line-height: 1.55; }

/* Themen im Detail */
.svc-head { max-width: 720px; margin: clamp(56px, 6vw, 84px) 0 32px; }
.svc-head h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.svc-head p { color: var(--ink-2); font-size: 1.1rem; line-height: 1.6; margin-top: 12px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; display: flex; flex-direction: column; gap: 7px; transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .2s ease; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--ink); display: flex; align-items: center; gap: 11px; line-height: 1.25; }
.svc-ic { width: 34px; height: 34px; flex: none; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.svc-ic svg { width: 19px; height: 19px; }
.svc p { color: var(--ink-3); font-size: .98rem; line-height: 1.5; }
.svc--more { background: var(--accent); border-color: var(--accent); }
.svc--more h4, .svc--more p { color: #fff; }
.svc--more p { color: rgba(255,255,255,.85); }
.svc-tel { margin-top: auto; padding-top: 8px; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: #fff; }
.svc-tel:hover { opacity: .85; }

/* Preisliste */
.price-list { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 2.4vw, 32px) clamp(26px, 3vw, 40px); box-shadow: var(--shadow-sm); }
.pl-row { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 17px 0; }
.pl-row span { color: var(--ink-2); }
.pl-row b { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--ink); white-space: nowrap; }
.pl-row--hl { margin-top: 6px; padding: 18px 22px; background: var(--accent-soft); border-radius: var(--radius-sm); border-bottom: none; }
.pl-row--hl b { color: var(--accent); }

/* Preise — Feature-Karten + Konditionen */
.price-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.5vw, 26px); max-width: 880px; margin: 0 auto; }
.pf-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 3.5vw, 44px); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.pf-card--accent { background: var(--accent); border-color: var(--accent); }
.pf-amt { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.8rem, 6vw, 3.9rem); line-height: 1; color: var(--ink); }
.pf-card--accent .pf-amt { color: #fff; }
.pf-unit { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; margin-top: 12px; color: var(--ink); }
.pf-card--accent .pf-unit { color: #fff; }
.pf-note { font-size: .98rem; color: var(--ink-3); margin-top: 14px; line-height: 1.55; }
.pf-card--accent .pf-note { color: rgba(255,255,255,.85); }

.price-cond { list-style: none; max-width: 880px; margin: clamp(18px,2.4vw,26px) auto 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 4px clamp(24px,2.8vw,36px); box-shadow: var(--shadow-sm); }
.price-cond li { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.price-cond li:last-child { border-bottom: none; }
.price-cond span { color: var(--ink-2); }
.price-cond b { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--ink); white-space: nowrap; }

/* Ablauf-Schritte */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; display: flex; flex-direction: column; gap: 10px; }
.step-n { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; display: grid; place-items: center; margin-bottom: 4px; }
.step h3 { font-size: 1.18rem; }
.step p { color: var(--ink-3); font-size: 1rem; line-height: 1.5; }

/* Über uns – Duo */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.person { display: flex; gap: 24px; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.person-photo { width: 150px; height: 150px; flex: none; border-radius: var(--radius); overflow: hidden; background: var(--bg-alt); }
.person-photo img { width: 100%; height: 100%; object-fit: cover; }
.person-role { color: var(--accent); font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.person-name { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; margin: 6px 0 10px; }
.person-desc { color: var(--ink-2); font-size: 1.02rem; line-height: 1.5; }

/* FAQ */
.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 14px; }
.faq { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq-ic { position: relative; width: 22px; height: 22px; flex: none; }
.faq-ic::before, .faq-ic::after { content:""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .2s ease; }
.faq-ic::before { top: 10px; left: 0; width: 22px; height: 3px; }
.faq-ic::after { left: 10px; top: 0; width: 3px; height: 22px; }
.faq[open] .faq-ic::after { transform: scaleY(0); }
.faq-a { padding: 0 28px 26px; color: var(--ink-2); font-size: 1.08rem; line-height: 1.6; max-width: 70ch; }

/* Kontaktformular */
.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-sm); }
.check-row { display: flex; align-items: center; gap: 12px; margin-top: 18px; font-size: 1.05rem; font-weight: 600; color: var(--ink); cursor: pointer; }
.check-row input { width: 24px; height: 24px; accent-color: var(--accent); flex: none; }
.form-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.form-privacy { color: var(--ink-3); font-size: .95rem; line-height: 1.5; margin-top: 20px; }
.form-done { margin-top: 16px; color: var(--accent); font-weight: 700; font-size: 1.08rem; }

@media (max-width: 980px){
  .offer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .duo { grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .steps { grid-template-columns: 1fr; }
  .person { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 940px){
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo { order: -1; }
  .hero-photo img { aspect-ratio: 16/10; }
  .hero-card { max-width: none; }
}

/* ============================================================
   STAT MOSAIK / BENTO  (wie Original)
   ============================================================ */
.bento-sec { padding-block: clamp(56px, 7vw, 110px); }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; grid-auto-flow: dense; }
.bento-tile {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column; justify-content: center; gap: 8px;
  min-height: 158px; transition: transform .18s ease, box-shadow .2s ease;
}
.bento-tile:hover { transform: none; box-shadow: none; border-color: var(--ink-3); }
.bento-tile--lg { grid-column: span 2; }
.bento-tile .b-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.02em; color: var(--accent); }
.bento-tile .b-lbl { font-size: 1.05rem; color: var(--ink-2); line-height: 1.35; max-width: 26ch; }
.bento-tile.is-accent { background: var(--paper); border-color: var(--line); box-shadow: none; }
.bento-tile.is-accent .b-num { color: var(--accent); }
.bento-tile.is-accent .b-lbl { color: var(--ink-2); }
.bento-tile--lg .b-num { font-size: clamp(3rem, 5vw, 4.4rem); }
.bento-tile--lg .b-lbl { font-size: 1.05rem; max-width: 34ch; }
.bento-tile.is-statement { background: var(--accent); border-color: transparent; }
.bento-tile.is-statement .b-head { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1.12; letter-spacing: -.01em; color: #fff; }
.bento-tile.is-statement .b-lbl { color: rgba(255,255,255,.9); font-size: 1.05rem; max-width: 32ch; }
@media (max-width: 940px){ .bento { grid-template-columns: repeat(2, 1fr); } .bento-tile--lg { grid-column: span 2; } }
@media (max-width: 520px){ .bento { grid-template-columns: 1fr; } .bento-tile--lg { grid-column: span 1; } .bento-tile { min-height: 0; padding: 24px; } }

/* ============================================================
   PROMISE / VALUE ROW
   ============================================================ */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(48px,7vw,110px); align-items: center; }
.split--rev { direction: rtl; }
.split--rev > * { direction: ltr; }
.value-list { display: grid; gap: 18px; margin-top: 30px; }
.value-list li { list-style: none; display: flex; gap: 16px; align-items: flex-start; font-size: 1.1rem; color: var(--ink-2); }
.value-list .vi { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.value-list .vi svg { width: 22px; height: 22px; }
.value-list b { color: var(--ink); }

.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.media-frame image-slot { width: 100%; aspect-ratio: 5/4; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
  transition: transform .18s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card.is-featured { border: 2px solid var(--accent); box-shadow: var(--shadow); }
.price-tag { position: absolute; top: -15px; left: 28px; background: var(--accent); color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 7px 16px; border-radius: var(--pill); }
.price-card h3 { font-size: 1.5rem; }
.price-amt { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 4px; }
.price-amt .v { font-family: var(--font-head); font-weight: 600; font-size: 3rem; letter-spacing: -.02em; }
.price-amt .per { color: var(--ink-3); font-size: 1rem; font-weight: 500; }
.price-meta { color: var(--ink-3); font-size: .95rem; }
.price-save { display:inline-block; margin-top:10px; background: var(--accent-soft); color: var(--accent); font-weight:700; font-size:.9rem; padding:5px 12px; border-radius: var(--pill); }
.price-feats { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 13px; }
.price-feats li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; color: var(--ink-2); }
.price-feats .ck { flex:none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-top: 1px; }
.price-feats .ck svg { width: 14px; height: 14px; }
.price-card .btn { margin-top: auto; }
.price-foot { text-align: center; margin-top: 34px; color: var(--ink-2); font-size: 1.06rem; }
.price-foot a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   GUTSCHEIN SHOP
   ============================================================ */
.shop { position: relative; }
.shop-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(34px,5vw,72px); align-items: start; }
.gift-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.gift-preview { position: relative; }
.gift--preview {
  cursor: default; padding: clamp(24px, 3vw, 34px); gap: clamp(16px, 3vw, 28px);
  box-shadow: var(--shadow-sm); transition: none;
}
.gift.gift--preview:hover { border-color: var(--line); }
.gift--preview .g-amt { font-size: clamp(2rem, 5vw, 2.6rem); }
.gift--preview .g-label { font-size: clamp(1.25rem, 3vw, 1.45rem); }
.gift {
  border-radius: var(--radius); padding: 22px 24px; color: var(--ink); position: relative; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  cursor: pointer; min-height: 0;
  display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 20px;
  transition: border-color .15s, background .15s;
  text-align: left; font: inherit;
}
.gift:hover { border-color: var(--ink-3); }
.gift.is-active { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.gift::after { display: none; }
.gift .g-top { display:flex; align-items: baseline; gap: 10px; font-weight:600; color: var(--ink-3); }
.gift .g-logo { font-family: var(--font-head); font-size:.92rem; white-space: nowrap; color: var(--ink); }
.gift .g-top > span:last-child { font-size: .8rem; }
.gift .g-label { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; margin-top: 10px; color: var(--ink); }
.gift .g-amt { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; line-height: 1; color: var(--accent); white-space: nowrap; }
.gift .g-sub { font-size: .92rem; color: var(--ink-3); margin-top: 4px; max-width: 30ch; }
.gift--custom { background: var(--bg-alt); border-style: dashed; }
.gift--custom .g-sub { color: var(--ink-3); }
.gift--custom .g-amt { color: var(--ink); }

.shop-panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,3vw,38px); box-shadow: var(--shadow-sm); position: sticky; top: 100px; }
.shop-panel h3 { font-size: 1.55rem; }
.field { display: grid; gap: 8px; margin-top: 18px; }
.field[hidden] { display: none; }
.field label { font-weight: 600; font-size: 1rem; color: var(--ink); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 1.05rem; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 2px solid var(--line); background: #fff; color: var(--ink); width: 100%;
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.amount-row { display:flex; flex-wrap: wrap; gap: 10px; }
.amount-row .chip {
  flex: 1 1 auto; min-width: 76px; text-align:center; padding: 11px 6px; border-radius: var(--radius-sm);
  border: 2px solid var(--line); background:#fff; font-weight: 700; font-size: 1.05rem; cursor: pointer; transition: all .15s;
  display: flex; flex-direction: column; align-items: center; gap: 2px; line-height: 1.1;
}
.amount-row .chip small { font-weight: 600; font-size: .8rem; color: var(--ink-3); }
.amount-row .chip.is-active small { color: rgba(255,255,255,.85); }
.amount-row .chip:hover { border-color: var(--accent); color: var(--accent); }
.amount-row .chip.is-active { background: var(--accent); border-color: var(--accent); color:#fff; }
.shop-total { display:flex; align-items: baseline; justify-content: space-between; margin: 26px 0 6px; padding-top: 22px; border-top: 1px dashed var(--line); }
.shop-total .lbl { color: var(--ink-2); font-size: 1.05rem; display: flex; flex-direction: column; }
.shop-total .lbl small { font-size: .85rem; color: var(--ink-3); font-weight: 500; }
.shop-total .v { font-family: var(--font-head); font-weight: 600; font-size: 2.2rem; }
.shop-note { font-size: .95rem; color: var(--ink-3); margin-top: 8px; display:flex; gap: 8px; align-items: flex-start; }
.shop-note svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }

.shop-perks { display: grid; gap: 14px; margin-top: 26px; }
.shop-perks li { list-style:none; display:flex; gap:14px; align-items:flex-start; color: var(--ink-2); font-size: 1.05rem; }
.shop-perks .vi { flex:none; width: 36px; height: 36px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display:grid; place-items:center; }
.shop-perks .vi svg { width: 20px; height: 20px; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.member { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .18s, box-shadow .2s; }
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.member image-slot { width: 100%; aspect-ratio: 1/1; }
.member .m-body { padding: 22px 24px 26px; }
.member .m-role { color: var(--accent); font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.member .m-name { font-size: 1.42rem; margin: 6px 0 8px; }
.member .m-desc { color: var(--ink-3); font-size: .98rem; }
.member--join { background: var(--accent-soft); border: 2px dashed color-mix(in srgb, var(--accent) 35%, var(--line)); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 30px 26px; }
.member--join .btn { font-size: .95rem; padding: 0 18px; max-width: 100%; }
.member--join .m-name { color: var(--accent); }

/* ============================================================
   DETAIL SERVICES (accordion-ish columns)
   ============================================================ */
.leist-grid { columns: 2; column-gap: 32px; max-width: 980px; margin: 0 auto; }
@media (max-width: 760px){ .leist-grid { columns: 1; } }
.leist {
  break-inside: avoid; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 30px; margin-bottom: 22px;
}
.leist h3 { font-size: 1.2rem; display:flex; gap: 12px; align-items: center; }
.leist h3 .di { width: 34px; height:34px; flex:none; border-radius: 9px; background: var(--accent-soft); color: var(--accent); display:grid; place-items:center; }
.leist h3 .di svg { width: 20px; height: 20px; }
.leist p { color: var(--ink-2); font-size: 1rem; margin-top: 10px; line-height: 1.55; }

/* ============================================================
   BEWERTUNGEN
   ============================================================ */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; display: flex; flex-direction: column; gap: 16px;
}
.review-stars { color: #f5a623; font-size: 1.3rem; letter-spacing: 2px; }
.review-text { color: var(--ink-2); font-size: 1.08rem; line-height: 1.6; flex: 1; }
.review-text::before { content: "“"; }
.review-text::after { content: "”"; }
.review-by { display: flex; align-items: center; gap: 14px; margin-top: 4px; padding-top: 18px; border-top: 1px solid var(--line); }
.review-by .rb-av { width: 48px; height: 48px; flex: none; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; }
.review-by .rb-meta { display: flex; flex-direction: column; gap: 3px; line-height: 1.25; }
.review-by .rb-meta b { font-size: 1.06rem; }
.review-by .rb-meta small { color: var(--ink-3); font-size: .95rem; }
@media (max-width: 980px){ .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px){ .review-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.quote-wrap { max-width: 920px; margin: 0 auto; text-align: center; }
.quote-stars { color: #ffce3a; font-size: 1.6rem; letter-spacing: 4px; }
.quote-text { font-family: var(--font-head); font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.32; margin: 26px 0 28px; }
.section--accent .quote-text { color: #fff; }
.quote-by { font-weight: 600; font-size: 1.12rem; }
.quote-by span { display:block; color: rgba(255,255,255,.75); font-weight: 500; font-size: .98rem; margin-top: 4px; }
.quote-source { margin-top: 30px; }

/* ============================================================
   CONTACT / TERMIN
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,72px); align-items: center; }
.contact-card-list { display: grid; gap: 16px; margin-top: 30px; }
.cc {
  display: flex; gap: 18px; align-items: center; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px;
}
.cc .ic { flex: none; width: 56px; height: 56px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.cc .ic svg { width: 28px; height: 28px; }
.cc .k { font-size: .9rem; color: var(--ink-3); }
.cc .v { font-family: var(--font-head); font-size: 1.4rem; }
.cc a.v:hover { color: var(--accent); }

.hours { background: var(--paper); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px,4vw,42px); box-shadow: none; }
.hours h3 { color: var(--ink); font-size: 1.5rem; }
.hours .row { display:flex; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.06rem; }
.hours .row:last-of-type { border-bottom: none; }
.hours .row b { font-weight: 700; }
.hours .row span { color: var(--ink-2); }
.hours .note { margin-top: 16px; font-size: 1rem; color: var(--ink-3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding-block: clamp(50px,6vw,80px) 30px; }
.footer .top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer .brand { color: #fff; font-size: 1.5rem; }
.footer .brand .b-persona { color: #fff; }
.footer h4 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer .f-about { margin-top: 18px; max-width: 38ch; line-height: 1.6; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer ul a:hover { color: #fff; }
.footer .f-contact a { color: #fff; font-weight: 600; font-size: 1.15rem; font-family: var(--font-head); }
.footer .bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); font-size: .95rem; }

/* ============================================================
   BEWERTUNGEN — Marquee
   ============================================================ */
.reviews { padding-block: clamp(28px, 3.2vw, 48px); background: var(--bg-alt); overflow: hidden; }
.reviews-head { text-align: center; max-width: 720px; margin: 0 auto clamp(20px, 2.2vw, 30px); }
.reviews-rate { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; text-decoration: none; border-radius: 999px; transition: opacity .15s ease; }
.reviews-rate .g-logo { width: 26px; height: 26px; }
.reviews-rate .stars { color: var(--ink); font-size: 1.3rem; letter-spacing: 2px; }
a.reviews-rate:hover { opacity: .72; }
.reviews-rate b { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--ink); }
.reviews-sub { margin-top: 12px; color: var(--ink-soft, var(--ink)); font-size: 1.05rem; }
.reviews-sub b { font-weight: 800; color: var(--ink); }
.reviews-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-weight: 700; font-size: .98rem; color: var(--accent); text-decoration: none; border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent); padding-bottom: 1px; transition: border-color .15s ease; }
.reviews-link:hover { border-bottom-color: var(--accent); }
.reviews-link svg { width: 15px; height: 15px; }
.reviews-foot { text-align: center; margin-top: clamp(20px, 2.4vw, 30px); }

.marquee { position: relative; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; padding: 8px 11px; animation: marquee-scroll 90s linear infinite; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.r-card { flex: 0 0 auto; width: 320px; margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px 24px 16px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 9px; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; cursor: pointer; }
.r-card.is-hover { border-color: var(--ink-3); box-shadow: var(--shadow); transform: translateY(-3px); }
.r-stars { color: var(--ink); font-size: 1.05rem; letter-spacing: 2px; line-height: 1; }
.r-text { font-size: 1.02rem; line-height: 1.5; color: var(--ink); margin: 0; font-weight: 500; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.r-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 4px; }
.r-g { width: 22px; height: 22px; flex: none; display: grid; place-items: center; }
.r-g svg { width: 22px; height: 22px; }
.r-name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--ink); display: flex; flex-direction: column; line-height: 1.25; }
.r-city { font-family: var(--font-body); font-weight: 500; font-size: .9rem; color: var(--ink-3); }

@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
@media (max-width: 600px) { .r-card { width: 300px; } }

/* Bewertung — vollständige Ansicht (Modal) */
.review-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.review-modal.open { display: grid; place-items: center; }
.review-modal__backdrop { position: absolute; inset: 0; background: rgba(20,22,28,.5); }
.review-modal__box { position: relative; z-index: 1; width: min(560px, calc(100vw - 36px)); max-height: calc(100vh - 48px); overflow: auto; background: var(--paper); border-radius: var(--radius-lg); padding: clamp(30px,4vw,46px); box-shadow: var(--shadow); animation: rm-in .18s ease; }
@keyframes rm-in { from { transform: translateY(10px) scale(.98); } to { transform: none; } }
.review-modal__close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border: none; background: var(--bg-alt); border-radius: 50%; cursor: pointer; display: grid; place-items: center; color: var(--ink-2); transition: background .15s, color .15s; }
.review-modal__close:hover { background: var(--line); color: var(--ink); }
.review-modal__close svg { width: 20px; height: 20px; }
.rm-stars { color: var(--ink); font-size: 1.25rem; letter-spacing: 2px; line-height: 1; }
.rm-text { font-size: 1.18rem; line-height: 1.65; color: var(--ink); margin: 18px 0 24px; font-weight: 500; }
.rm-foot { display: flex; align-items: center; gap: 11px; }
.rm-g svg { width: 24px; height: 24px; display: block; }
.rm-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; transition:none; } html{scroll-behavior:auto;} }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px){
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .price-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 940px){
  .nav, .header-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; }
  .split, .shop-grid, .contact-grid { grid-template-columns: 1fr; }
  .price-feature { grid-template-columns: 1fr; }
  .split--rev { direction: ltr; }
  .stats .container { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .stat + .stat::before { display:none; }
  .shop-panel { position: static; }
}
@media (max-width: 680px){
  :root { --base: 18px; }
  .svc-grid { grid-template-columns: 1fr; }
  .price-grid, .team-grid, .gift-cards { grid-template-columns: 1fr; }
  .gift--preview { flex-direction: column; align-items: flex-start; gap: 14px; }
  .gift--preview .g-amt { align-self: flex-end; }
  .footer .top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px){
  .svc-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: 1fr; }
  .footer .top { grid-template-columns: 1fr; }
}

/* ---- Mobile menu ---- */
.mobile-menu { position: fixed; inset: 0; z-index: 60; background: rgba(17,24,42,.45); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .2s; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu .panel { position: absolute; top: 0; right: 0; width: min(86vw, 360px); height: 100%; background: #fff; padding: 28px 26px; display: flex; flex-direction: column; gap: 6px; transform: translateX(100%); transition: transform .25s ease; box-shadow: var(--shadow-lg); }
.mobile-menu.open .panel { transform: none; }
.mobile-menu a { padding: 16px 14px; font-size: 1.18rem; font-weight: 600; border-radius: var(--radius-sm); color: var(--ink); }
.mobile-menu a:hover { background: var(--accent-soft); color: var(--accent); }
.mobile-menu .mm-close { align-self: flex-end; width: 50px; height: 50px; border: 2px solid var(--line); background:#fff; border-radius: var(--radius-sm); cursor: pointer; display:grid; place-items:center; margin-bottom: 12px; }
.mobile-menu .mm-close svg { width: 26px; height: 26px; stroke: var(--ink); }

/* ============================================================
   Cookie-Banner
   ============================================================ */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  padding: 0 var(--gutter) clamp(16px, 3vw, 28px);
  display: flex; justify-content: center;
  transform: translateY(20px); opacity: 0;
  transition: opacity .28s ease, transform .28s ease;
}
.cookie-banner.is-visible { transform: none; opacity: 1; }
.cookie-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(22px, 2.4vw, 30px);
  width: min(880px, 100%);
  display: grid; grid-template-columns: 1fr auto; gap: 22px 36px; align-items: center;
}
.cookie-text h2 { font-family: var(--font-head); font-weight: 800; font-size: 1.18rem; color: var(--ink); margin-bottom: 6px; }
.cookie-text p { color: var(--ink-2); font-size: .98rem; line-height: 1.55; max-width: 56ch; }
.cookie-text a { color: var(--accent); font-weight: 700; }
.cookie-actions { display: flex; flex-direction: column; gap: 10px; min-width: 220px; }
.cookie-actions .btn { width: 100%; justify-content: center; }
.cookie-link { background: none; border: none; cursor: pointer; font: inherit; color: var(--ink-3); font-weight: 600; font-size: .92rem; text-decoration: underline; padding: 4px; }
.cookie-link:hover { color: var(--accent); }

/* Einstellungen-Dialog */
.cookie-modal { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: var(--gutter); background: rgba(17,24,42,.5); backdrop-filter: blur(4px); }
.cookie-modal.open { display: flex; }
.cookie-dialog { background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: min(560px, 100%); max-height: 86vh; overflow-y: auto; padding: clamp(26px, 3vw, 38px); }
.cookie-dialog h2 { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--ink); }
.cookie-dialog > p { color: var(--ink-2); line-height: 1.6; margin: 12px 0 22px; }
.cookie-cat { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.cookie-cat-info h3 { font-size: 1.08rem; color: var(--ink); margin-bottom: 4px; }
.cookie-cat-info p { color: var(--ink-3); font-size: .92rem; line-height: 1.5; }
.cookie-switch { position: relative; flex: none; width: 52px; height: 30px; }
.cookie-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cookie-switch .track { position: absolute; inset: 0; background: var(--line); border-radius: var(--pill); transition: background .18s; }
.cookie-switch .track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; background: #fff; border-radius: 50%; box-shadow: var(--shadow-sm); transition: transform .18s; }
.cookie-switch input:checked + .track { background: var(--accent); }
.cookie-switch input:checked + .track::after { transform: translateX(22px); }
.cookie-switch input:disabled + .track { background: var(--accent); opacity: .45; cursor: not-allowed; }
.cookie-dialog-actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.cookie-dialog-actions .btn { flex: 1; justify-content: center; min-width: 160px; }

@media (max-width: 680px) {
  .cookie-card { grid-template-columns: 1fr; gap: 18px; }
  .cookie-actions { min-width: 0; }
}
