/* ============================================================
   My Fine — Design System
   Palette aus dem Logo: Navy / Sky / Grün / Weiß. Hell & premium.
   ============================================================ */

@font-face {
  font-family: "Clash Display";
  src: url("../assets/fonts/clash-500.woff2") format("woff2");
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../assets/fonts/clash-600.woff2") format("woff2");
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../assets/fonts/clash-700.woff2") format("woff2");
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: "Jakarta";
  src: url("../assets/fonts/jakarta-var.woff2") format("woff2-variations");
  font-weight: 200 800; font-display: swap;
}

:root {
  --navy: #17418e;
  --navy-deep: #0e2b63;
  --blue: #2b6fd3;
  --sky: #64bfe8;
  --sky-soft: #eaf6fc;
  --green: #76b043;
  --green-soft: #eef7e4;
  --ink: #0d2140;
  --muted: #56698a;
  --bg: #ffffff;
  --bg-soft: #f4f9fd;
  --line: rgba(13, 33, 64, 0.08);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --r-lg: 2rem;
  --r-md: 1.35rem;
  --shadow-soft: 0 24px 70px -28px rgba(23, 65, 142, 0.22), 0 6px 20px -12px rgba(23, 65, 142, 0.10);
  --shadow-float: 0 40px 110px -40px rgba(23, 65, 142, 0.30);
  --font-display: "Clash Display", "Avenir Next", sans-serif;
  --font-body: "Jakarta", "Avenir Next", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  font-weight: 420;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--sky); color: #fff; }

.wrap { width: min(1240px, 100% - 3rem); margin-inline: auto; }
@media (max-width: 768px) { .wrap { width: calc(100% - 2.5rem); } }

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

section { padding-block: clamp(5rem, 9vw, 8.5rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 999px;
  padding: 0.38rem 0.95rem;
  font-size: 0.66rem; font-weight: 650;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--navy);
  background: var(--sky-soft);
  border: 1px solid rgba(23, 65, 142, 0.10);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
}

.sec-head { max-width: 620px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
.sec-head p { color: var(--muted); margin-top: 1rem; font-size: 1.06rem; }

/* ---------- Buttons: Pill + Button-in-Button Icon ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  border-radius: 999px;
  padding: 0.55rem 0.55rem 0.55rem 1.5rem;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  background: var(--navy); color: #fff;
  border: none; cursor: pointer;
  transition: transform 0.6s var(--ease), background 0.6s var(--ease), box-shadow 0.6s var(--ease);
  box-shadow: 0 14px 34px -14px rgba(23, 65, 142, 0.45);
}
.btn .ico {
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  transition: transform 0.6s var(--ease), background 0.6s var(--ease);
}
.btn:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn:hover .ico { transform: translate(3px, -2px) scale(1.06); background: rgba(255, 255, 255, 0.22); }
.btn:active { transform: scale(0.98); }

.btn.ghost {
  background: rgba(255, 255, 255, 0.75);
  color: var(--navy);
  border: 1px solid rgba(23, 65, 142, 0.16);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.btn.ghost .ico { background: rgba(23, 65, 142, 0.07); }
.btn.ghost:hover { background: #fff; }
.btn.green { background: var(--green); box-shadow: 0 14px 34px -14px rgba(118, 176, 67, 0.5); }
.btn.green:hover { background: #639638; }
.btn.sm { padding: 0.4rem 0.4rem 0.4rem 1.1rem; font-size: 0.86rem; }
.btn.sm .ico { width: 1.75rem; height: 1.75rem; font-size: 0.8rem; }

/* ---------- Navbar: full-wide, border-radius 0 (Vorgabe) ---------- */
.navbar {
  position: fixed; inset-inline: 0; top: 0; z-index: 90;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.6s var(--ease);
}
.navbar.scrolled { box-shadow: 0 18px 50px -30px rgba(23, 65, 142, 0.25); }
.navbar .bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: 76px;
}
.navbar .brand { display: flex; align-items: center; gap: 0.75rem; }
.navbar .brand img { height: 48px; width: auto; }
.navbar .links { display: flex; gap: 2rem; font-size: 0.94rem; font-weight: 550; }
.navbar .links a { position: relative; color: var(--ink); opacity: 0.82; transition: opacity 0.45s var(--ease); padding-block: 0.4rem; }
.navbar .links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; border-radius: 2px;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.navbar .links a:hover, .navbar .links a.active { opacity: 1; }
.navbar .links a:hover::after, .navbar .links a.active::after { transform: scaleX(1); }
.navbar .actions { display: flex; align-items: center; gap: 0.9rem; }

.cart-link {
  position: relative; display: grid; place-items: center;
  width: 2.7rem; height: 2.7rem; border-radius: 50%;
  border: 1px solid rgba(23, 65, 142, 0.16);
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.5s var(--ease), background 0.5s var(--ease);
}
.cart-link:hover { transform: translateY(-2px); background: #fff; }
.cart-link svg { width: 1.15rem; height: 1.15rem; stroke: var(--navy); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 1.15rem; height: 1.15rem; border-radius: 999px;
  background: var(--green); color: #fff;
  font-size: 0.66rem; font-weight: 700;
  display: grid; place-items: center; padding-inline: 0.25rem;
  opacity: 0; transform: scale(0.5);
  transition: all 0.5s var(--ease);
}
.cart-count.show { opacity: 1; transform: scale(1); }

.burger {
  display: none; width: 2.7rem; height: 2.7rem;
  border-radius: 50%; border: 1px solid rgba(23, 65, 142, 0.16);
  background: rgba(255, 255, 255, 0.7); cursor: pointer;
  position: relative; z-index: 110;
}
.burger span {
  position: absolute; left: 50%; top: 50%;
  width: 1.1rem; height: 1.6px; background: var(--navy); border-radius: 2px;
  transition: transform 0.55s var(--ease);
}
.burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 4px)); }
.burger span:nth-child(2) { transform: translate(-50%, calc(-50% + 4px)); }
.burger.open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(30px) saturate(1.3);
  -webkit-backdrop-filter: blur(30px) saturate(1.3);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.6s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: grid; gap: 1.2rem; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 8vw, 2.6rem); color: var(--ink);
  opacity: 0; transform: translateY(3rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.06s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.12s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.18s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.24s; }

@media (max-width: 920px) {
  .navbar .links, .navbar .actions .btn { display: none; }
  .burger { display: block; }
  .navbar .bar { height: 68px; }
  .navbar .brand img { height: 42px; }
}

/* ---------- Hero (full-wide, 3D, scroll-gescrubbte Kamerafahrt) ---------- */
.hero { position: relative; }
.hero.cine { height: 260vh; } /* Scrub-Strecke; Pin bleibt 100dvh sticky */
.hero-pin {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center;
  padding-block: 8rem 5rem;
  background:
    radial-gradient(1100px 600px at 82% 18%, rgba(100, 191, 232, 0.30), transparent 65%),
    radial-gradient(900px 550px at 8% 88%, rgba(118, 176, 67, 0.14), transparent 60%),
    linear-gradient(178deg, #f2fafe 0%, #ffffff 72%);
  overflow: hidden;
}
.hero.cine .hero-pin { position: sticky; top: 0; height: 100dvh; min-height: 0; }
/* Sichere Zentrierung: Auto-Margins kollabieren bei Platzmangel auf 0,
   damit die erste Zeile nie hinter der fixen Navbar verschwindet */
.hero-pin .wrap { margin-block: auto; }
@media (min-width: 769px) and (max-height: 820px) {
  .hero-pin { padding-block: 7rem 3rem; }
  .hero .hero-copy h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
  .hero .hero-copy p.lead { margin-top: 1rem; }
  .hero .hero-copy .cta-row { margin-top: 1.6rem; }
  .hero .hero-copy .stats { margin-top: 2rem; }
  .hero .hero-copy .stats b { font-size: 1.3rem; }
}
.hero-caption {
  position: absolute; left: 50%; top: 50%; z-index: 2;
}
.hero-caption.left { left: 32%; }
@media (max-width: 900px) { .hero-caption.left { left: 50%; } }
.hero-caption {
  transform: translate(-50%, -50%);
  opacity: 0; pointer-events: none;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 3.2rem); line-height: 1.15;
  color: var(--ink); text-align: center;
  width: max-content; max-width: 86vw;
}
#hero3d, .hero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
#hero3d { touch-action: pan-y; cursor: grab; }
#hero3d:active { cursor: grabbing; }
.hero-poster { opacity: 0.5; }
.hero-pin::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 130px;
  background: linear-gradient(180deg, transparent, #fff);
  pointer-events: none; z-index: 1;
}
.hero .wrap { position: relative; z-index: 2; pointer-events: none; }
.hero .wrap a, .hero .wrap .btn { pointer-events: auto; }
.hero-copy { max-width: 640px; }
.hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 5.2rem);
  font-weight: 600; letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--navy); position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: ""; position: absolute; left: 0; bottom: 0.06em;
  width: 100%; height: 0.14em; border-radius: 99px;
  background: linear-gradient(90deg, var(--sky), var(--green));
  opacity: 0.55; z-index: -1;
}
.hero p.lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); max-width: 34rem; margin-top: 1.5rem; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero .stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(2.5rem, 5vh, 4.5rem);
}
.hero .stats b { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; display: block; color: var(--navy); }
.hero .stats span { font-size: 0.82rem; color: var(--muted); }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 2.4rem;
  background: linear-gradient(180deg, var(--navy), transparent);
  animation: drip 2.2s var(--ease) infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 768px) {
  /* Textblock kompakt oben, unteres Drittel gehört dem 3D-Kanister */
  .hero-pin { padding-block: 6.5rem 0; align-items: flex-start; }
  .hero-pin .wrap { margin-block: 0 auto; } /* oben ausgerichtet lassen */
  .hero h1 { font-size: clamp(2.2rem, 9vw, 2.7rem); }
  .hero p.lead { font-size: 1rem; }
  .hero .cta-row { margin-top: 1.8rem; }
  .hero .stats, .hero .scroll-hint { display: none; }
  .hero .cta-row .btn { width: 100%; justify-content: space-between; }
}
@media (max-width: 768px) and (max-height: 700px) {
  .hero p.lead { display: none; } /* kurze Displays: Platz für den Kanister */
}

/* ---------- Scroll-Marquee ---------- */
.marquee {
  overflow: hidden; padding-block: 1.4rem;
  border-block: 1px solid var(--line); background: #fff;
}
.marquee-track {
  display: flex; white-space: nowrap; will-change: transform;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  color: transparent; -webkit-text-stroke: 1.5px rgba(23, 65, 142, 0.35);
}

/* ---------- Scroll-Parallax (Bilder in .core, überdeckt durch scale) ---------- */
[data-plx] { will-change: transform; transform: scale(1.12); }

/* ---------- Scroll-Video (Frame-Scrub auf Canvas) ---------- */
.vscrub { position: relative; height: 300vh; }
.vscrub-pin {
  position: sticky; top: 0; height: 100dvh; overflow: hidden;
  background: var(--sky-soft);
}
.vscrub-pin canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.vscrub-pin::before, .vscrub-pin::after {
  content: ""; position: absolute; inset-inline: 0; height: 110px;
  pointer-events: none; z-index: 1;
}
.vscrub-pin::before { top: 0; background: linear-gradient(180deg, #fff, transparent); }
.vscrub-pin::after { bottom: 0; background: linear-gradient(0deg, #fff, transparent); }
.vs-caption {
  position: absolute; left: 50%; top: 50%; z-index: 2;
  transform: translate(-50%, -50%);
  opacity: 0; pointer-events: none;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 3.2rem); line-height: 1.15;
  color: var(--ink); text-align: center;
  width: max-content; max-width: 86vw;
  text-shadow: 0 2px 34px rgba(255, 255, 255, 0.95), 0 0 12px rgba(255, 255, 255, 0.8);
}
.vs-caption small {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem); color: var(--ink); opacity: 0.8;
  margin-top: 0.7rem; letter-spacing: 0;
}
@media (prefers-reduced-motion: reduce) {
  .vscrub { height: auto; }
  .vscrub-pin { position: relative; height: 56vh; }
}

/* ---------- Prozess-Schritte ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.steps .core { padding: 1.9rem 1.6rem; position: relative; }
.steps .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 2.6rem; line-height: 1;
  background: linear-gradient(135deg, var(--sky), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 1rem; display: block;
}
.steps h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.steps p { font-size: 0.9rem; color: var(--muted); }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Zahlen-Band (animierte Counter) ---------- */
.count-band .core {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 60%, #2b6fd3);
  padding: clamp(2.6rem, 5vw, 4rem);
}
.count-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.count-grid b {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem); color: #fff; display: block;
}
.count-grid b em { font-style: normal; color: var(--sky); }
.count-grid b span { font: inherit; color: inherit; } /* Counter-Zahl erbt die große Schrift */
.count-grid > div > span { color: rgba(255, 255, 255, 0.75); font-size: 0.88rem; }
@media (max-width: 800px) { .count-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Double-Bezel Karten ---------- */
.shell {
  background: rgba(23, 65, 142, 0.045);
  border: 1px solid rgba(23, 65, 142, 0.07);
  border-radius: var(--r-lg);
  padding: 0.45rem;
}
.core {
  background: #fff;
  border-radius: calc(var(--r-lg) - 0.45rem);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), 0 1px 0 rgba(23, 65, 142, 0.04);
  overflow: hidden; height: 100%;
}

/* ---------- USP Band ---------- */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.usp-grid .core { padding: 1.8rem 1.6rem; }
.usp-grid .glyph {
  width: 2.9rem; height: 2.9rem; border-radius: 1rem;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, var(--sky-soft), #fff);
  border: 1px solid rgba(100, 191, 232, 0.35);
  color: var(--navy); font-size: 1.2rem;
}
.usp-grid h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
.usp-grid p { font-size: 0.9rem; color: var(--muted); }
@media (max-width: 1000px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .usp-grid { grid-template-columns: 1fr; } }

/* ---------- Kategorien Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem; }
.bento .tile { position: relative; }
.bento .tile:nth-child(1) { grid-column: span 4; }
.bento .tile:nth-child(2) { grid-column: span 2; }
.bento .tile:nth-child(3) { grid-column: span 2; }
.bento .tile:nth-child(4) { grid-column: span 2; }
.bento .tile:nth-child(5) { grid-column: span 2; }
.tile .core { position: relative; display: flex; flex-direction: column; min-height: 320px; }
.tile .core img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.tile:hover .core img { transform: scale(1.05); }
.tile .core::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(185deg, transparent 38%, rgba(10, 28, 60, 0.78) 100%);
}
.tile .meta { position: relative; z-index: 2; margin-top: auto; padding: 1.6rem; color: #fff; }
.tile .meta h3 { color: #fff; font-size: 1.35rem; }
.tile .meta p { font-size: 0.86rem; opacity: 0.85; margin-top: 0.2rem; }
.tile .meta .go {
  position: absolute; right: 1.3rem; bottom: 1.4rem;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: rgba(255, 255, 255, 0.16); backdrop-filter: blur(6px);
  display: grid; place-items: center; font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.6s var(--ease), background 0.6s var(--ease);
}
.tile:hover .go { transform: translate(3px, -3px); background: var(--green); border-color: var(--green); }
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .bento .tile { grid-column: span 1 !important; }
  .tile .core { min-height: 240px; }
}

/* ---------- Produkt-Karten ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 1100px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .prod-grid { grid-template-columns: 1fr; } }

.pcard { display: flex; flex-direction: column; transition: transform 0.7s var(--ease); }
.pcard:hover { transform: translateY(-6px); }
.pcard .core { display: flex; flex-direction: column; }
.pcard .pic { position: relative; aspect-ratio: 1; background: linear-gradient(180deg, #fdfeff, var(--sky-soft)); overflow: hidden; }
.pcard .pic img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transition: transform 1s var(--ease); }
.pcard:hover .pic img { transform: scale(1.06); }
.pcard .body { padding: 1.3rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.pcard h3 { font-size: 1.02rem; font-weight: 600; line-height: 1.3; }
.pcard .kurz { font-size: 0.85rem; color: var(--muted); flex: 1; }
.badges { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.badge {
  font-size: 0.68rem; font-weight: 650; letter-spacing: 0.04em;
  padding: 0.28rem 0.7rem; border-radius: 999px;
  background: var(--sky-soft); color: var(--navy);
  border: 1px solid rgba(23, 65, 142, 0.10);
}
.badge.grn { background: var(--green-soft); color: #47702a; border-color: rgba(118, 176, 67, 0.28); }
.pcard .row { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-top: 0.5rem; }
.pcard .row .link { font-size: 0.85rem; font-weight: 650; color: var(--navy); }

.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.6rem; }
.chip {
  border-radius: 999px; padding: 0.55rem 1.25rem;
  font-size: 0.86rem; font-weight: 600; cursor: pointer;
  background: #fff; color: var(--ink);
  border: 1px solid rgba(23, 65, 142, 0.14);
  transition: all 0.5s var(--ease);
}
.chip:hover { border-color: var(--navy); transform: translateY(-1px); }
.chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- Split-Sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split .visual { position: relative; }
.split .visual .core img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.split h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); margin-bottom: 1.2rem; }
.split p { color: var(--muted); }
.split ul.ticks { margin-top: 1.6rem; display: grid; gap: 0.85rem; }
.split ul.ticks li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.98rem; }
.split ul.ticks li::before {
  content: "✓"; flex: 0 0 auto;
  width: 1.45rem; height: 1.45rem; border-radius: 50%;
  background: var(--green-soft); color: #47702a;
  display: grid; place-items: center; font-size: 0.75rem; font-weight: 800;
  margin-top: 0.15rem;
}
.float-chip {
  position: absolute; z-index: 3;
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px);
  border: 1px solid rgba(23, 65, 142, 0.10);
  border-radius: 1.1rem; padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.82rem; font-weight: 600;
}
.float-chip b { font-family: var(--font-display); font-size: 1.25rem; display: block; color: var(--navy); }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* ---------- CTA Band ---------- */
.cta-band .core {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 55%, #2b6fd3 100%);
  padding: clamp(3rem, 7vw, 5.5rem);
  text-align: center; color: #fff;
}
.cta-band .core::before, .cta-band .core::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.35), rgba(255,255,255,0.04) 60%);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.cta-band .core::before { width: 220px; height: 220px; left: -60px; bottom: -80px; }
.cta-band .core::after { width: 130px; height: 130px; right: 8%; top: -40px; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); max-width: 640px; margin-inline: auto; }
.cta-band p { opacity: 0.82; margin-top: 1rem; max-width: 520px; margin-inline: auto; }
.cta-band .btn { margin-top: 2.2rem; background: #fff; color: var(--navy); box-shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.4); }
.cta-band .btn .ico { background: var(--sky-soft); }
.cta-band .btn:hover { background: var(--sky-soft); }

/* ---------- Seiten-Hero (Unterseiten) ---------- */
.page-head {
  padding: 10rem 0 4rem;
  background:
    radial-gradient(900px 420px at 85% 0%, rgba(100, 191, 232, 0.25), transparent 60%),
    linear-gradient(180deg, #f2fafe, #fff);
}
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); max-width: 720px; }
.page-head p.lead { color: var(--muted); margin-top: 1.2rem; max-width: 560px; font-size: 1.08rem; }
.page-head.with-visual .wrap {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
}
.ph-visual .core img { width: 100%; aspect-ratio: 16/9.5; object-fit: cover; }
@media (max-width: 880px) {
  .page-head.with-visual .wrap { grid-template-columns: 1fr; }
  .page-head { padding-top: 8rem; }
}
.crumbs { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.6rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.crumbs a:hover { color: var(--navy); }

/* ---------- Produktdetail ---------- */
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.pdp .gallery .core { background: linear-gradient(180deg, #fdfeff, var(--sky-soft)); }
.pdp .gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; mix-blend-mode: multiply; }
.pdp h1 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 1rem; }
.pdp .kurz { color: var(--muted); font-size: 1.05rem; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 1.8rem 0; }
.spec-grid .spec { border: 1px solid var(--line); border-radius: var(--r-md); padding: 1rem 1.2rem; background: var(--bg-soft); }
.spec-grid .spec span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 650; }
.spec-grid .spec b { display: block; font-size: 1rem; margin-top: 0.2rem; }
.qty-row { display: flex; gap: 0.9rem; align-items: stretch; flex-wrap: wrap; margin: 1.6rem 0; }
.qty {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(23, 65, 142, 0.16); border-radius: 999px;
  background: #fff; overflow: hidden;
}
.qty button {
  width: 2.9rem; height: 3.2rem; border: none; background: none; cursor: pointer;
  font-size: 1.1rem; color: var(--navy); transition: background 0.4s var(--ease);
}
.qty button:hover { background: var(--sky-soft); }
.qty input {
  width: 3.2rem; border: none; text-align: center;
  font-family: var(--font-body); font-size: 1rem; font-weight: 650; color: var(--ink);
  -moz-appearance: textfield; outline: none;
}
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pdp .desc { margin-top: 2.2rem; padding-top: 2rem; border-top: 1px solid var(--line); color: var(--muted); }
.pdp .desc h2 { font-size: 1.25rem; margin-bottom: 0.8rem; color: var(--ink); }
@media (max-width: 880px) {
  .pdp { grid-template-columns: 1fr; }
  .qty-row .btn { flex: 1; justify-content: space-between; }
}

/* ---------- Anfrage (Warenkorb) ---------- */
.cart-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-item {
  display: grid; grid-template-columns: 84px 1fr auto; gap: 1.1rem; align-items: center;
  padding: 1.1rem 0; border-bottom: 1px solid var(--line);
}
.cart-item .thumb {
  width: 84px; height: 84px; border-radius: 1.1rem; overflow: hidden;
  background: linear-gradient(180deg, #fdfeff, var(--sky-soft));
  border: 1px solid var(--line);
}
.cart-item .thumb img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.cart-item h3 { font-size: 0.98rem; }
.cart-item .sub { font-size: 0.8rem; color: var(--muted); margin-top: 0.15rem; }
.cart-item .ops { display: flex; align-items: center; gap: 0.7rem; }
.cart-item .qty button { height: 2.4rem; width: 2.2rem; }
.cart-item .qty input { width: 2.4rem; font-size: 0.9rem; }
.rm { border: none; background: none; color: var(--muted); cursor: pointer; font-size: 0.8rem; text-decoration: underline; }
.rm:hover { color: #c0392b; }
.empty-cart { text-align: center; padding: 3.5rem 1rem; color: var(--muted); }

/* ---------- Formulare ---------- */
.form-card .core { padding: clamp(1.6rem, 3vw, 2.4rem); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.8rem; font-weight: 650; margin-bottom: 0.4rem; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid rgba(23, 65, 142, 0.16); border-radius: 1rem;
  padding: 0.85rem 1.1rem; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--bg-soft); outline: none;
  transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}
.field input:focus, .field textarea:focus {
  border-color: var(--sky); background: #fff;
  box-shadow: 0 0 0 4px rgba(100, 191, 232, 0.18);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.9rem; }
.form-ok {
  display: none; margin-top: 1rem; padding: 1rem 1.2rem; border-radius: 1rem;
  background: var(--green-soft); color: #3c6323; font-weight: 600; font-size: 0.9rem;
  border: 1px solid rgba(118, 176, 67, 0.3);
}
.form-ok.show { display: block; }

/* ---------- Kontakt / Über uns ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.info-grid .core { padding: 1.8rem 1.6rem; }
.info-grid h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.info-grid p { font-size: 0.92rem; color: var(--muted); }
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }

.prose { max-width: 720px; color: var(--muted); }
.prose h2 { color: var(--ink); font-size: 1.5rem; margin: 2.2rem 0 0.8rem; }
.prose p { margin-bottom: 1rem; }

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--sky-soft));
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 2rem;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.5rem; }
.foot-grid img { height: 62px; width: auto; margin-bottom: 1rem; }
.foot-grid .about { font-size: 0.9rem; color: var(--muted); max-width: 300px; }
.foot-grid h4 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.foot-grid ul { display: grid; gap: 0.55rem; font-size: 0.92rem; }
.foot-grid ul a { opacity: 0.85; transition: opacity 0.4s var(--ease), color 0.4s var(--ease); }
.foot-grid ul a:hover { opacity: 1; color: var(--navy); }
.foot-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: 0.8rem; color: var(--muted);
}
.foot-bottom .legal { display: flex; gap: 1.4rem; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Scroll Reveals ---------- */
.rv { opacity: 0; transform: translateY(3.2rem); filter: blur(6px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); }
.rv.in { opacity: 1; transform: translateY(0); filter: blur(0); }
.rv.d1 { transition-delay: 0.08s; } .rv.d2 { transition-delay: 0.16s; }
.rv.d3 { transition-delay: 0.24s; } .rv.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rv { opacity: 1; transform: none; filter: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 1.6rem; z-index: 200;
  transform: translate(-50%, 150%);
  background: var(--ink); color: #fff;
  border-radius: 999px; padding: 0.8rem 1.5rem;
  font-size: 0.88rem; font-weight: 600;
  box-shadow: var(--shadow-float);
  transition: transform 0.65s var(--ease);
  display: flex; align-items: center; gap: 0.6rem;
}
.toast::before { content: "✓"; color: var(--green); font-weight: 800; }
.toast.show { transform: translate(-50%, 0); }
