/* ── Local fonts (no external requests) ─────────────────────────────────── */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("/assets/fonts/sora-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("/assets/fonts/sora-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   pp-poolbau.de — Matuszek GmbH Brand Theme
   Blue primary (#001c94), Teal accent (#339bb8)
   Light, airy background — Matuszek corporate identity
   ============================================================ */
:root {
  --bg: #f4f6fa;
  --bg-2: #e9ecf3;
  --bg-3: #dde1eb;
  --bg-warm: #fafbfd;
  --glass: rgba(255, 255, 255, 0.75);
  --glass-2: rgba(255, 255, 255, 0.55);
  --line: rgba(0, 28, 148, 0.07);
  --line-strong: rgba(0, 28, 148, 0.14);
  --line-accent: rgba(51, 155, 184, 0.25);
  --text: #1a1d2b;
  --text-2: #2f2f2f;
  --muted: #5a6478;
  --primary: #001c94;
  --primary-light: #1a3ab8;
  --primary-pale: #e8ecf9;
  --accent: #339bb8;
  --accent-deep: #287f97;
  --accent-light: #d4eff6;
  --accent-glow: rgba(51, 155, 184, 0.1);
  --ok: #1a9e6b;
  --star: #f5a623;
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
  --section-gap: clamp(72px, 11vw, 130px);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(0, 28, 148, 0.05);
  --shadow-md: 0 8px 28px rgba(0, 28, 148, 0.07);
  --shadow-lg: 0 20px 50px rgba(0, 28, 148, 0.09);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}
a {
  color: inherit;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--bg);
}
@media (min-width: 860px) {
  body::before {
    background:
      radial-gradient(
        ellipse 70% 50% at 85% -10%,
        rgba(0, 28, 148, 0.04),
        transparent 50%
      ),
      radial-gradient(
        ellipse 50% 40% at 5% 100%,
        rgba(51, 155, 184, 0.03),
        transparent 50%
      ),
      var(--bg);
  }
}

/* SCROLL-REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.img-reveal {
  overflow: hidden;
}
.img-reveal img {
  transition: transform 1.2s var(--ease-out-expo);
  transform: scale(1.08);
}
.img-reveal.is-visible img {
  transform: scale(1);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease-out-expo),
    transform 0.6s var(--ease-out-expo);
}
.stagger-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger-children.is-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
.stagger-children.is-visible > *:nth-child(2) {
  transition-delay: 0.1s;
}
.stagger-children.is-visible > *:nth-child(3) {
  transition-delay: 0.15s;
}
.stagger-children.is-visible > *:nth-child(4) {
  transition-delay: 0.2s;
}
.stagger-children.is-visible > *:nth-child(5) {
  transition-delay: 0.25s;
}
.stagger-children.is-visible > *:nth-child(6) {
  transition-delay: 0.3s;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 246, 250, 0.95);
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s,
    border-color 0.4s,
    box-shadow 0.4s;
}
@media (min-width: 860px) {
  .site-header {
    background: rgba(244, 246, 250, 0.82);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
  }
}
.site-header.scrolled {
  background: rgba(250, 251, 253, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(0, 28, 148, 0.05);
}
.site-header::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--accent),
    var(--primary)
  );
  opacity: 0.3;
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 24px;
  transition: padding 0.3s;
}
.site-header.scrolled .nav {
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.logo-mark {
  flex: 0 0 auto;
  transition: filter 0.3s;
  display: block;
  height: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  white-space: nowrap;
  color: var(--primary);
}
.brand-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}
.nav-center {
  display: flex;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  align-items: center;
}
.nav-center a {
  position: relative;
  text-decoration: none !important;
  padding: 9px 14px;
  border-radius: 10px;
  transition: color 0.25s;
}
.nav-center a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out-expo);
}
.nav-center a:hover,
.nav-center a.is-active {
  color: var(--primary);
}
.nav-center a:hover::after,
.nav-center a.is-active::after {
  transform: scaleX(1);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  padding: 11px 20px;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(0, 28, 148, 0.2);
  transition:
    transform 0.25s var(--ease-out-expo),
    box-shadow 0.25s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 28, 148, 0.3);
}
.nav-cta.block {
  display: block;
  text-align: center;
  margin: 14px 20px 18px;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.02);
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--text);
  transition:
    transform 0.3s,
    opacity 0.25s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
}
@media (max-width: 1200px) {
  .burger {
    display: flex;
  }
  .mobile-menu {
    display: block;
    background: rgba(250, 251, 253, 0.98);
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu[hidden] {
    display: none;
  }
  .mobile-menu a:not(.nav-cta) {
    display: block;
    padding: 16px 24px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-top: 1px solid var(--line);
  }
  .mobile-menu a.is-active {
    color: var(--primary);
  }
  body.menu-open {
    overflow: hidden;
  }
}
@media (min-width: 800px) and (max-width: 1200px) {
  .nav-center {
    display: flex;
  }
  .nav-center a {
    display: none;
  }
  .nav-center a[href="/ueber-uns"],
  .nav-center a[href="/blog"],
  .nav-right .nav-cta {
    display: inline-block;
  }
}
@media (max-width: 799px) {
  .nav-center,
  .nav-right .nav-cta {
    display: none;
  }
}
@media (max-width: 380px) {
  .brand-sub {
    display: none;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}
.hero.tall {
  min-height: 90svh;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 28, 80, 0.42) 0%,
    rgba(0, 20, 60, 0.18) 28%,
    rgba(0, 20, 60, 0.62) 70%,
    rgba(0, 15, 50, 0.9) 100%
  );
}
.hero-in {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px 56px;
  animation: fadeInUp 0.8s var(--ease-out-expo) both 0.2s;
  color: #fff;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8ec6d6;
  margin-bottom: 12px;
  padding: 6px 14px;
  border: 1px solid rgba(142, 198, 214, 0.3);
  border-radius: 100px;
  background: rgba(142, 198, 214, 0.08);
}
h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 5.6vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-wrap: balance;
  max-width: 780px;
  color: #fff;
}
.hero-in h1 {
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(0, 0, 0, 0.25);
}
.lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(15px, 2.2vw, 17.5px);
  margin-top: 16px;
  line-height: 1.65;
}
.hero-in .lead {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  padding: 16px 30px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 28, 148, 0.3);
  transition:
    transform 0.25s var(--ease-out-expo),
    box-shadow 0.25s;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 28, 148, 0.4);
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stats div {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}
.hero-stats b {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

/* LAYOUT */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.sect {
  padding-top: var(--section-gap);
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3.6vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  position: relative;
  color: var(--text);
}
.section-title::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 15.5px;
  margin-top: 12px;
  max-width: 640px;
  line-height: 1.65;
}
.panel {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
@media (min-width: 860px) {
  .panel {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}
.panel:hover {
  border-color: var(--line-strong);
}

/* CONTACT BAR (Matuszek branding) */
.contact-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 8px 30px rgba(0, 28, 148, 0.2);
  margin-top: 32px;
  border: none;
  font-size: 14px;
}
.contact-bar .cb-icon {
  font-size: 28px;
  flex: 0 0 auto;
}
.contact-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-bar .cb-cta {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  margin-left: auto;
}
.contact-bar .cb-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* POOL CARDS */
.size-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 500px) {
  .size-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .size-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1100px) {
  .size-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.size-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  aspect-ratio: 3/4;
  isolation: isolate;
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s;
  box-shadow: var(--shadow-md);
}
.size-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s var(--ease-out-expo);
}
.size-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 15, 50, 0) 25%,
    rgba(0, 15, 50, 0.82) 100%
  );
}
.size-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 28, 148, 0.12);
}
.size-card:hover img {
  transform: scale(1.06);
}
.uber-card.selected {
  box-shadow:
    0 0 0 3px var(--primary),
    0 20px 50px rgba(0, 28, 148, 0.18);
}
.uber-zoom-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 15, 50, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: zoom-in;
  transition:
    background 0.2s,
    transform 0.2s;
}
.uber-zoom-btn:hover {
  background: rgba(0, 15, 50, 0.7);
  transform: scale(1.08);
}
.uber-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 10, 40, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  cursor: zoom-out;
}
.uber-lightbox.is-open {
  display: flex;
}
.uber-lightbox img {
  max-width: min(90vw, 900px);
  max-height: 78vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  cursor: default;
}
.uber-lightbox-caption {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}
.uber-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.size-card .in {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fff;
}
.size-card .dim {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.size-card .from {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}
.size-card .price-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #8ec6d6;
  margin-top: 2px;
}
.size-card .go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 6px 14px 6px 12px;
  border-radius: 100px;
  transition:
    background 0.25s,
    gap 0.25s,
    border-color 0.25s;
}
.size-card:hover .go {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.45);
  gap: 10px;
}

/* FEATURE VISUAL */
.feature-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}
@media (min-width: 860px) {
  .feature-visual {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
.feature-visual.reverse .feature-img {
  order: -1;
}
@media (max-width: 859px) {
  .feature-visual.reverse .feature-img {
    order: 0;
  }
}
.feature-text .section-title {
  margin-bottom: 0;
}
.feature-text p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 14px;
  line-height: 1.7;
}
.feature-text .feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.3s;
}
.feature-text .feature-link:hover {
  gap: 12px;
}
.feature-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.feature-img:hover img {
  transform: scale(1.03);
}

/* USP GRID */
.usp-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 700px) {
  .usp-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.usp {
  padding: 28px 24px;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.usp:hover {
  border-color: var(--line-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.usp .ic {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--primary-pale);
  border: 1px solid rgba(0, 28, 148, 0.12);
  margin-bottom: 16px;
}
.usp h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.usp p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* GOOGLE REVIEWS */
.reviews-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.review-card {
  padding: 24px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.review-stars {
  color: var(--star);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  font-style: italic;
}
.review-author {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
}
.review-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}
.review-date {
  font-size: 11.5px;
  color: var(--muted);
}
.review-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 18px 24px;
  background: var(--primary-pale);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 28, 148, 0.1);
}
.review-summary .rs-score {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}
.review-summary .rs-stars {
  color: var(--star);
  font-size: 20px;
}
.review-summary .rs-count {
  font-size: 13px;
  color: var(--muted);
}
.review-summary .rs-google {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

/* CONFIGURATOR */
.cfg-wrap {
  max-width: 900px;
}
.step {
  padding: 28px 24px;
  margin-bottom: 18px;
}
@media (min-width: 700px) {
  .step {
    padding: 32px 32px 28px;
  }
}
.step h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.step h2 .tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--primary-pale);
  border: 1px solid rgba(0, 28, 148, 0.12);
}
.step .hint {
  font-size: 13.5px;
  color: var(--muted);
  margin: 6px 0 18px;
}
.choices {
  display: grid;
  gap: 12px;
}
.choices.cols2 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .choices.cols2 {
    grid-template-columns: 1fr 1fr;
  }
}
.choice {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
  text-align: left;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--bg-warm);
  cursor: pointer;
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.2s,
    box-shadow 0.2s;
}
.choice:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.choice.selected {
  border-color: var(--primary);
  background: var(--primary-pale);
  box-shadow:
    0 0 0 1px var(--primary),
    0 4px 16px rgba(0, 28, 148, 0.08);
}
.choice .dot {
  flex: 0 0 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  transition: 0.25s;
}
.choice.selected .dot {
  border-color: var(--primary);
  background: radial-gradient(circle, var(--primary) 0 45%, transparent 50%);
}
.choice .info {
  flex: 1;
  min-width: 0;
}
.choice .t {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
}
.choice .d {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}
.choice .p {
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--primary);
}
.choice .p.incl {
  color: var(--ok);
}
.check-choice .dot {
  border-radius: 4px;
}
.check-choice.selected .dot {
  border-radius: 4px;
  background: var(--primary);
  position: relative;
}
.check-choice.selected .dot::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}

/* SUMMARY */
.summary-box {
  background: var(--glass);
  border: 1px solid var(--line-accent);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 86px;
}
.summary-box h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.summary-box ul {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 13.5px;
}
.summary-box li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
}
.summary-box li span:last-child {
  font-variant-numeric: tabular-nums;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}
.summary-box .total {
  border-top: 2px solid var(--line);
  padding-top: 16px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.summary-box .total b {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.summary-box .vat {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 6px;
}
.summary-box .cta {
  display: block;
  width: 100%;
  margin-top: 18px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 18px rgba(0, 28, 148, 0.18);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
}
.summary-box .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 28, 148, 0.3);
}
.cfg-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
@media (min-width: 900px) {
  .cfg-layout {
    grid-template-columns: 1fr 340px;
  }
}

/* SPECS */
.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 22px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 760px) {
  .specs {
    grid-template-columns: repeat(5, 1fr);
  }
}
.spec {
  background: var(--bg-warm);
  padding: 20px 18px;
}
.spec b {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--primary);
}
.spec span {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

/* GALLERY & SHOWCASE */
.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 26px;
}
@media (min-width: 760px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery figure {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.gallery figure:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}
.gallery figure:hover img {
  transform: scale(1.06);
}
.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 14px 10px;
  font-size: 11.5px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 15, 50, 0.8));
}
.showcase-carousel {
  overflow: hidden;
  margin: 0 -24px;
  padding: 32px 0;
  position: relative;
}
.showcase-carousel::before,
.showcase-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}
.showcase-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.showcase-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}
.sc-track {
  display: flex;
  width: max-content;
  animation: sc-scroll 35s linear infinite;
}
.showcase-carousel:hover .sc-track {
  animation-play-state: paused;
}
.sc-track figure {
  flex: 0 0 clamp(280px, 40vw, 380px);
  margin-right: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-md);
}
.sc-track figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}
.sc-track figure:hover img {
  transform: scale(1.05);
}
.sc-track figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 16px 12px;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 15, 50, 0.8));
}
@keyframes sc-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .sc-track {
    animation: none;
  }
}
@media (max-width: 767px) {
  .showcase-carousel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    scrollbar-width: none;
  }
  .showcase-carousel::-webkit-scrollbar {
    display: none;
  }
  .showcase-carousel::before,
  .showcase-carousel::after {
    display: none;
  }
  .sc-track {
    animation: none;
    width: auto;
    padding: 0 24px;
  }
  .sc-track figure {
    flex: 0 0 78vw;
    scroll-snap-align: start;
    margin-right: 12px;
  }
  .sc-track figure[aria-hidden] {
    display: none;
  }
}

/* CTA BANNER */
.cta-banner {
  padding: 48px 32px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(0, 28, 148, 0.05),
    rgba(51, 155, 184, 0.04)
  );
  border: 1px solid rgba(0, 28, 148, 0.1);
  position: relative;
  overflow: hidden;
}
.cta-banner .section-title {
  margin: 0 auto;
}
.cta-banner .section-title::before {
  margin: 0 auto 16px;
}
.cta-banner .section-sub {
  margin: 12px auto 24px;
  text-align: center;
}

/* PROSE */
.prose {
  max-width: 760px;
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.7;
}
.prose p {
  margin-top: 16px;
}
.prose strong {
  color: var(--text);
}
.prose a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FAQ */
.acc {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.acc details {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.acc details[open] {
  border-color: rgba(0, 28, 148, 0.2);
}
.acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.acc summary:hover {
  color: var(--primary);
}
.acc summary::-webkit-details-marker {
  display: none;
}
.acc summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.3s var(--ease-out-expo);
  flex: 0 0 auto;
}
.acc details[open] summary::after {
  transform: rotate(45deg);
}
.acc .a {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 14px;
  max-width: 720px;
  line-height: 1.65;
}

/* BRAND LOGO (image) */
.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 380px) {
  .brand-logo {
    height: 38px;
  }
}

/* FOOTER */
.site-footer {
  margin-top: var(--section-gap);
  color: var(--muted);
  font-size: 13px;
}

/* Footer carousel sections */
.foot-section {
  padding: 40px 0;
}
.foot-reviews-section {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.foot-insta-section {
  background: var(--bg-2);
}
.foot-bottom-wrap {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(0, 28, 148, 0.03));
  padding: 36px 0 24px;
}
.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.foot-nav {
  display: flex;
  gap: 8px 24px;
  flex-wrap: wrap;
}
.foot-nav a {
  text-decoration: none !important;
  transition: color 0.2s;
}
.foot-nav a:hover {
  color: var(--primary);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 20px;
}
.foot-bottom a {
  text-decoration: none !important;
  transition: color 0.2s;
}
.foot-bottom a:hover {
  color: var(--primary);
}

/* Carousel shared header */
.foot-carousel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--muted);
}
.foot-carousel-score {
  font-weight: 700;
  color: var(--text);
}
.foot-carousel-count {
  color: var(--muted);
}
.fcar-btn {
  background: #fff;
  border: 1.5px solid #7b86a0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
  padding: 0;
  line-height: 1;
}
.fcar-btn:hover {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary);
}

/* Review carousel — 3 per page desktop */
.fcar-viewport {
  overflow: hidden;
}
.fcar-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.fcar-card {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 860px) {
  .fcar-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 540px) {
  .fcar-card {
    flex: 0 0 100%;
  }
}
.frc-stars {
  color: #a16207;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.frc-text {
  font-size: 13.5px;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.65;
}
.frc-author {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.frc-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
  flex: 0 0 auto;
}
.frc-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
}
.frc-date {
  font-size: 11.5px;
  color: var(--muted);
}

/* Instagram single-line auto-scroll */
.fcar-insta-viewport {
  overflow: hidden;
}
.fcar-insta-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: footMarquee 60s linear infinite;
}
.fcar-insta-track:hover {
  animation-play-state: paused;
}
@keyframes footMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.fic {
  flex: 0 0 160px;
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
  border: 1px solid var(--line);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
@media (max-width: 580px) {
  .fic {
    flex: 0 0 120px;
    height: 120px;
  }
}
.fic:hover {
  opacity: 0.85;
  transform: scale(0.97);
}
.fic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.foot-ig-handle {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none !important;
  transition: color 0.2s;
}
.foot-ig-handle:hover {
  color: var(--primary);
}
.foot-ig-follow {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none !important;
}

/* Hide prices until PLZ validated */
.cfg-prices-hidden .p {
  opacity: 0;
  pointer-events: none;
}

/* ── Utility classes ─────────────────────────────────────────────────────── */
.is-hidden {
  display: none !important;
}
.hero.hero--compact {
  min-height: 50svh;
}
.hero.hero--sm {
  min-height: 44svh;
}
.hero.hero--md {
  min-height: 46svh;
}
.wrap.wrap--narrow {
  max-width: 760px;
}
.wrap.wrap--very-narrow {
  max-width: 700px;
}
.sect.sect--no-top {
  padding-top: 0;
}
.table-scroll {
  overflow-x: auto;
}

/* Hero eyebrow label — plain text on dark hero background */
.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}
/* Eyebrow label — on light section backgrounds */
.eyebrow-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* Contact bar modifiers */
.contact-bar.contact-bar--col {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.contact-bar .cb-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-bar .cb-title--sm {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}
.contact-bar .cb-sub {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
}
.contact-bar .cb-sub--mt {
  font-size: 14px;
  opacity: 0.82;
  margin-top: 5px;
  line-height: 1.5;
}
.cb-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cb-actions .cb-cta {
  margin-left: 0;
}
.contact-bar .cb-cta.cb-cta--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

/* Pool page — specs strip below hero, no negative margin */
.pool-specs-wrap {
  padding-top: 28px;
  position: relative;
  z-index: 5;
}

/* ── Floating Rückruf tab ──────────────────────────────────────────────── */
.rr-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 300;
}
.rr-trigger {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 10px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: -3px 3px 16px rgba(0, 28, 148, 0.22);
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.rr-trigger:hover {
  background: var(--primary-light);
}
.rr-panel {
  display: none;
  position: absolute;
  right: calc(100% + 6px);
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 28, 148, 0.18);
  padding: 20px;
  border: 1px solid rgba(0, 28, 148, 0.1);
}
.rr-tab.rr-open .rr-panel {
  display: block;
}
.rr-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}
.rr-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
.rr-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.rr-form input[type="tel"],
.rr-form input[type="text"],
.rr-select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  background: var(--bg-warm);
  color: var(--text);
  margin-bottom: 10px;
  box-sizing: border-box;
  appearance: auto;
}
.rr-form button {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.rr-form button:hover {
  background: var(--primary-light);
}
.rr-done {
  font-size: 13px;
  color: #1a6b45;
  font-weight: 600;
  margin-top: 8px;
}
/* Mobile: move tab to bottom-right, panel opens upward */
@media (max-width: 860px) {
  .rr-tab {
    top: auto;
    bottom: 24px;
    transform: none;
  }
  .rr-panel {
    top: auto;
    bottom: calc(100% + 6px);
    transform: none;
    width: calc(100vw - 24px);
    right: 0;
    max-width: 320px;
  }
}

/* CONFIGURATOR — included item notice */
.inkl-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #e8f9f0;
  border: 1px solid rgba(26, 158, 107, 0.2);
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 500;
  color: #1a6b45;
}

/* CONFIGURATOR — What's included panel */
.incl-panel {
  background: linear-gradient(
    135deg,
    rgba(0, 28, 148, 0.03),
    rgba(51, 155, 184, 0.04)
  );
  border: 1px solid rgba(0, 28, 148, 0.1);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 18px;
}
.incl-panel h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.incl-list {
  display: grid;
  gap: 7px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .incl-list {
    grid-template-columns: 1fr 1fr;
  }
}
.incl-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.45;
}
.incl-check {
  flex: 0 0 18px;
  height: 18px;
  border-radius: 50%;
  background: #e8f9f0;
  border: 1.5px solid rgba(26, 158, 107, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #1a6b45;
  font-weight: 700;
  margin-top: 1px;
}

/* Callback toggle */
.callback-bar {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.callback-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-pale);
  border: 1px solid rgba(0, 28, 148, 0.15);
  border-radius: var(--radius-sm);
  padding: 11px 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.callback-toggle-btn:hover {
  background: rgba(0, 28, 148, 0.1);
}
.callback-chevron {
  margin-left: auto;
  font-size: 16px;
  transition: transform 0.3s;
}
.callback-chevron.open {
  transform: rotate(90deg);
}

/* CONTACT FORM */
.contact-form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}
.contact-form label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-2);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  font-size: 16px;
  background: var(--bg-warm);
  color: var(--text);
  transition: border-color 0.25s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 28, 148, 0.08);
}

/* CONFIGURATOR QUOTE FORM */
.cfg-quote-form {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 8px;
}
.cfg-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cfg-form-full {
  grid-column: 1/-1;
}
.cfg-form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.cfg-form-field .req {
  color: var(--primary);
}
.cfg-form-field input,
.cfg-form-field textarea,
.cfg-form-field select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  padding: 11px 13px;
  font: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--text);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
}
.cfg-form-field input:focus,
.cfg-form-field textarea:focus,
.cfg-form-field select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 28, 148, 0.08);
}
.cfg-form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  cursor: pointer;
}
.cfg-form-submit {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}
.cfg-form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 560px) {
  .cfg-form-grid {
    grid-template-columns: 1fr;
  }
}
.btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  font-weight: 700;
  font-size: 14.5px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 28, 148, 0.18);
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0, 28, 148, 0.25);
}

/* COOKIE BANNER */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: rgba(12, 18, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #e2e8f0;
  padding: 14px 24px;
  display: none;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  line-height: 1.5;
  transition: opacity 0.3s;
}
#cookieBanner.ck-visible {
  display: flex;
}
#cookieBanner.ck-hiding {
  opacity: 0;
  pointer-events: none;
}
#cookieBanner p {
  flex: 1;
  min-width: 200px;
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
}
#cookieBanner a {
  color: #8ec6d6;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ck-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.ck-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    opacity 0.2s,
    transform 0.15s;
  line-height: 1;
}
.ck-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.ck-ok {
  background: var(--primary);
  color: #fff;
}
.ck-deny {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
@media (max-width: 580px) {
  #cookieBanner {
    padding: 12px 16px;
    gap: 10px;
  }
  .ck-btn {
    padding: 8px 13px;
    font-size: 12px;
  }
}

.tel-hint {
  display: block;
  font-size: 11px;
  color: #9aa3b4;
  margin-top: 4px;
}
.tel-hint--ok {
  color: #1a9e6b;
}
.tel-hint--err {
  color: #e05c5c;
}

/* ── Pool page ─────────────────────────────────────────────────────────── */
.pool-mini-intro {
  margin-top: 28px;
  margin-bottom: 36px;
}
.pool-mini-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}
.pool-mini-link {
  display: inline-block;
  font-size: 13.5px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
/* PLZ availability check */
.plz-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.plz-field {
  flex: 1;
  min-width: 200px;
  position: relative;
}
.plz-label {
  font-size: 12.5px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: var(--text-2);
}
.plz-input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  font-size: 16px;
  background: var(--bg-warm);
  color: var(--text);
  box-sizing: border-box;
}
.plz-drop {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  z-index: 200;
  overflow: hidden;
}
.plz-drop-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text);
  border-bottom: 1px solid #f1f5f9;
}
.plz-drop-item:hover {
  background: var(--primary-pale);
  color: var(--primary);
}
.plz-drop-item:last-child {
  border-bottom: none;
}
.plz-ok {
  margin-top: 16px;
}
.plz-ok-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #e8f9f0;
  border: 1px solid rgba(26, 158, 107, 0.18);
}
.plz-ok-city {
  font-weight: 600;
  color: #1a6b45;
}
.plz-ok-sub {
  font-size: 13px;
  color: #3d8b63;
}
.plz-far {
  margin-top: 16px;
}
.plz-far-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #fff8e8;
  border: 1px solid rgba(198, 152, 32, 0.18);
}
.plz-far-city {
  font-weight: 600;
  color: #8b6914;
}
.plz-far-sub {
  font-size: 13px;
  color: #a07e2a;
}
.plz-box-icon {
  font-size: 22px;
}
.plz-error {
  margin-top: 12px;
  font-size: 13.5px;
  color: #d14545;
  font-weight: 500;
}
.tag--optional {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}
.opt-img {
  display: block;
  margin-top: 10px;
  max-width: 180px;
  border-radius: 8px;
  object-fit: cover;
}
.sum-cta {
  border: none;
  cursor: pointer;
  width: 100%;
}
.quote-thanks {
  text-align: center;
  padding: 48px 24px;
}
.qt-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.qt-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.qt-body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}
.form-label-opt {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}
.cfg-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.cfg-summary-head {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cfg-summary-icon {
  font-size: 28px;
}
.cfg-summary-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.cfg-summary-type {
  font-size: 12px;
  opacity: 0.8;
}
.cfg-summary-head-price {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.cfg-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}
.cfg-summary-row-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.cfg-summary-row-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}
.cfg-summary-row-val {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
}
.cfg-summary-ok {
  font-size: 13px;
  color: var(--ok);
  font-weight: 600;
  white-space: nowrap;
}
.cfg-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 20px;
  background: var(--primary-pale);
}
.cfg-summary-total-lbl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.cfg-summary-total-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--primary);
}
.reviews-action {
  text-align: center;
  margin-top: 20px;
}
.reviews-action-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
}
/* ── Pool configurator (mass.php) ────────────────────────────────────── */
.dim-builder {
  display: grid;
  gap: 28px;
}
.dim-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dim-row label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.dim-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dim-num {
  width: 80px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font: 600 18px var(--font-display);
  color: var(--text);
  background: var(--bg-warm);
  text-align: center;
  -moz-appearance: textfield;
}
.dim-num::-webkit-inner-spin-button,
.dim-num::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.dim-unit {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}
.dim-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--line);
  outline: none;
  cursor: pointer;
}
.dim-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}
.dim-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  border: none;
}
.pool-vis-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 0 8px;
}
.pool-vis-outer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pool-shape {
  background: linear-gradient(160deg, #1a8ecf 0%, #0d6fa8 60%, #0a5a8a 100%);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(10, 90, 138, 0.28);
  position: relative;
  transition:
    width 0.3s ease,
    height 0.3s ease;
}
.pool-shape::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.pool-label-w,
.pool-label-l {
  position: absolute;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pool-label-w {
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}
.pool-label-l {
  left: -56px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}
.pool-label-w::before,
.pool-label-w::after,
.pool-label-l::before,
.pool-label-l::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: var(--line);
}
.price-live {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 20px;
  background: var(--primary-pale);
  border-radius: 12px;
  margin-top: 20px;
}
.price-live .area {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.price-live .val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-left: auto;
}
.price-live .val-note {
  font-size: 12px;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 2px;
}

/* ── Blog: listing grid ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 980px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.blog-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.3s var(--ease-out-expo),
    box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 28, 148, 0.12);
}
.blog-card .blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card .blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card .blog-card-body {
  padding: 20px 22px 24px;
}
.blog-card .blog-card-date {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.blog-card h2 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin: 8px 0 10px;
}
.blog-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 14px;
}
.blog-card .blog-card-go {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

/* ── Blog: article page ─────────────────────────────────────────────── */
.blog-breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.blog-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.blog-breadcrumb a:hover {
  color: var(--primary);
}
.blog-article {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text);
  max-width: 760px;
}
.blog-article p {
  margin: 0 0 20px;
}
.blog-article h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid var(--line);
  padding-bottom: 10px;
  margin: 44px 0 20px;
}
.blog-article h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 28px 0 12px;
}
.blog-article ul,
.blog-article ol {
  margin: 0 0 22px;
  padding-left: 22px;
}
.blog-article li {
  margin-bottom: 10px;
}
.blog-article strong {
  color: var(--text);
  font-weight: 700;
}
.blog-article a {
  color: var(--primary);
}
.blog-article .pro-tip {
  background: var(--primary-pale);
  border-left: 5px solid var(--primary);
  padding: 22px 24px;
  margin: 32px 0;
  border-radius: 0 10px 10px 0;
}
.blog-article .pro-tip h3 {
  margin-top: 0;
  color: var(--primary);
}
.blog-article .pro-tip p:last-child {
  margin-bottom: 0;
}
.blog-cta {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
}
.blog-cta h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 8px;
}
.blog-cta p {
  opacity: 0.85;
  margin: 0 0 18px;
  font-size: 14.5px;
}
.blog-map {
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 28px 0 8px;
  z-index: 0;
}
.blog-map-hint {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 28px;
}
.leaflet-tooltip {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  max-width: 240px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

/* ================================================================
   TC-HAUS BRAND OVERRIDE
   Adapted from Matuszek/pp-poolbau.de base stylesheet.
   Original navy/teal palette swapped for Town & Country Haus red.
   ================================================================ */
:root {
  --bg: #F1F4EE;
  --bg-2: #e7ebe0;
  --bg-3: #dde1d3;
  --bg-warm: #fbfbf8;
  --text: #141414;
  --text-2: #2f2f2f;
  --muted: #5a5a5a;
  --primary: #E20000;
  --primary-light: #ff4141;
  --primary-pale: #FDE8E8;
  --accent: #B70000;
  --accent-deep: #8f0000;
  --accent-light: #FDE8E8;
  --accent-glow: rgba(226, 0, 0, 0.1);
  --line: rgba(20, 20, 20, 0.08);
  --line-strong: rgba(20, 20, 20, 0.16);
  --line-accent: rgba(226, 0, 0, 0.2);
}

/* TC-Haus specific additions (elements not present in the original Matuszek markup) */
.tc-logo-mark{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:10px;background:var(--primary);
  color:#fff;font-weight:800;font-size:14px;flex-shrink:0;font-family:var(--font-display);
}
.brand-name small{display:block;font-weight:500;font-size:11px;color:var(--muted);letter-spacing:.01em;}
.foot-legal{font-size:12.5px;color:#9aa3b4;line-height:1.7;max-width:720px;margin:18px 0 10px;}
.foot-copy{font-size:11.5px;color:#7a7a7a;margin:0;}
.tc-incl-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
@media (max-width:720px){.tc-incl-grid{grid-template-columns:1fr;}}
.tc-incl-box{border-radius:var(--radius);padding:26px;border:1px solid var(--line);}
.tc-incl-box.yes{background:#EAF7EE;border-color:#cdead6;}
.tc-incl-box.no{background:#F5F1EC;border-color:#e6ddd0;}
.tc-incl-box h3{margin:0 0 16px;font-size:16px;font-weight:800;font-family:var(--font-display);}
.tc-incl-box.yes h3{color:#1F8A3B;}
.tc-incl-box.no h3{color:#6b5f4f;}
.tc-incl-box ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:12px;}
.tc-incl-box li{display:flex;gap:10px;font-size:14.5px;line-height:1.5;align-items:flex-start;}
.tc-incl-box.yes li::before{content:"✓";color:#1F8A3B;font-weight:900;flex-shrink:0;}
.tc-incl-box.no li::before{content:"–";color:#6b5f4f;font-weight:900;flex-shrink:0;}
.tc-incl-note{display:block;font-size:12.5px;color:var(--muted);margin-top:3px;}
.tc-hero{background:linear-gradient(180deg,#fff 0%, var(--bg) 100%);padding:64px 0 44px;border-bottom:1px solid var(--line);}
.tc-hero .eyebrow{display:inline-flex;align-items:center;gap:8px;background:var(--primary-pale);color:var(--primary);padding:7px 15px;border-radius:999px;font-size:12.5px;font-weight:700;letter-spacing:.03em;text-transform:uppercase;margin-bottom:20px;}
.tc-hero h1{font-family:var(--font-display);font-size:clamp(30px,4.4vw,46px);font-weight:800;line-height:1.1;margin:0 0 18px;letter-spacing:-.01em;color:var(--text);}
.tc-hero h1 em{color:var(--primary);font-style:normal;}
.tc-hero p.lead{font-size:17px;color:var(--muted);max-width:620px;margin:0 0 28px;line-height:1.6;}
.tc-hero-badges{display:flex;flex-wrap:wrap;gap:10px;}
.tc-badge{display:flex;align-items:center;gap:7px;background:#fff;border:1px solid var(--line);border-radius:999px;padding:9px 15px;font-size:13px;font-weight:500;color:var(--text-2);}
.tc-badge svg{width:15px;height:15px;color:var(--primary);flex-shrink:0;}
.tc-brutto-note{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--primary-pale);color:var(--accent-deep);
  border-radius:10px;padding:9px 14px;font-size:13px;font-weight:600;
}
