/* =========================
   Price Sections
========================= */

.price-section .section-title {
  max-width: 850px;
}

.price-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 0 40px;
}

.price-overview div {
  padding: 18px 20px;
  background: #ffffff;
  border-top: 4px solid var(--teal);
  box-shadow: 0 18px 45px rgba(9, 43, 50, 0.07);
}

.price-overview strong,
.price-overview span {
  display: block;
}

.price-overview strong {
  margin-bottom: 7px;
  color: var(--dark);
  font-size: 14px;
}

.price-overview span {
  color: #52656a;
  font-size: 15px;
  line-height: 1.45;
}

.dark-overview div {
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.14);
  border-top: 4px solid var(--accent);
  box-shadow: none;
}

.dark-overview strong {
  color: #ffffff;
}

.dark-overview span {
  color: rgba(255,255,255,0.72);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: var(--dark); /* sonst erben helle Kacheln in .teal/.dark-Sektionen weiße Schrift */
  padding: 34px;
  border-radius: 3px;
  border-top: 4px solid var(--teal);
  box-shadow: 0 22px 70px rgba(9, 43, 50, 0.09);
}

.price-card.featured {
  background: var(--dark);
  color: #ffffff;
  border-top-color: var(--accent);
}

.price-card.dark-card {
  background: rgba(255,255,255,0.075);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.14);
  border-top: 4px solid var(--accent);
  box-shadow: none;
}

.price-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.2;
}

.price-card p {
  margin: 0 0 18px;
  color: #52656a;
  line-height: 1.65;
}

.price-card.featured p,
.price-card.dark-card p {
  color: rgba(255,255,255,0.72);
}

.price-intro {
  font-weight: 800;
  color: var(--teal) !important;
}

.price-card.featured .price-intro,
.price-card.dark-card .price-intro {
  color: var(--accent) !important;
}

.price {
  margin-top: auto;
  padding-top: 24px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-label {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}

.price-card:not(.dark-card):not(.featured) .price-label {
  color: #6d7d82;
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.price-card .btn {
  margin-top: 26px;
}

.price-card:not(.featured):not(.dark-card) .btn-primary {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
}

.price-note {
  max-width: 900px;
  margin: 34px auto 0;
  color: #6d7d82;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
}

.price-note.light {
  color: rgba(255,255,255,0.72);
}

@media (max-width: 980px) {
  .price-overview,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 28px;
  }
}



.price-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0 0 54px;
}

.price-overview div {
  position: relative;
  min-height: 150px;
  padding: 30px 28px;
  background: #ffffff;
  border-radius: 3px;
  border-top: 5px solid var(--teal);
  box-shadow: 0 24px 70px rgba(9, 43, 50, 0.10);
}

.price-overview strong {
  display: block;
  margin-bottom: 14px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-overview span {
  display: block;
  color: #40565c;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.dark-overview div {
  background: rgba(255,255,255,0.085);
  border: 1px solid rgba(255,255,255,0.14);
  border-top: 5px solid var(--accent);
  box-shadow: none;
}

.dark-overview strong {
  color: var(--accent);
}

.dark-overview span {
  color: #ffffff;
}

@media (max-width: 1100px) {
  .price-overview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .price-overview {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 38px;
  }

  .price-overview div {
    min-height: auto;
    padding: 24px;
  }

  .price-overview span {
    font-size: 19px;
  }
}




.site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 1000;
      height: 76px;
      background: var(--dark);
      color: #fff;
    }

    .nav {
      max-width: var(--max);
      height: 100%;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      font-weight: 800;
      font-size: 18px;
      letter-spacing: .08em;
      text-transform: uppercase;
      line-height: 1.1;
    }

    .brand span {
      display: block;
      margin-top: 5px;
      color: rgba(255,255,255,.62);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .04em;
      text-transform: none;
    }

    .desktop-menu {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 14px;
      /* font-weight: 700; */
    }

    .desktop-menu a:hover {
      color: var(--accent);
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 18px);
      left: 0;
      min-width: 230px;
      padding: 10px;
      background: var(--dark);
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: 0 24px 60px rgba(0,0,0,.28);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: .18s ease;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-dropdown-menu a {
      display: block;
      padding: 13px 14px;
    }

    .nav-dropdown-menu a:hover {
      background: rgba(255,255,255,.07);
    }

    .burger-btn {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 999px;
      background: transparent;
      cursor: pointer;
      z-index: 1101;
    }

    .burger-btn span {
      display: block;
      width: 20px;
      height: 2px;
      margin: 5px auto;
      background: #fff;
      border-radius: 999px;
      transition: .22s ease;
    }

    body.menu-open .burger-btn span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    body.menu-open .burger-btn span:nth-child(2) {
      opacity: 0;
    }

    body.menu-open .burger-btn span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
    }

    @media (max-width: 920px) {
      .desktop-menu {
        display: none;
      }

      .burger-btn {
        display: block;
      }

      .mobile-menu {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1100;
        padding: 104px 20px 28px;
        background: var(--dark);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .22s ease;
        overflow-y: auto;
      }

      body.menu-open .mobile-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      body.menu-open {
        overflow: hidden;
      }

      .mobile-menu-inner {
        display: grid;
        gap: 12px;
      }

      .mobile-menu-inner > a,
      .mobile-main-link {
        display: flex;
        align-items: center;
        min-height: 58px;
        padding: 0 20px;
        color: #fff;
        background: rgba(255,255,255,.055);
        border: 1px solid rgba(255,255,255,.12);
        font-size: 22px;
        font-weight: 800;
      }

      .mobile-submenu {
        display: grid;
        gap: 8px;
        margin-top: 8px;
        padding-left: 18px;
      }

      .mobile-submenu a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0 18px;
        color: rgba(255,255,255,.78);
        background: rgba(255,255,255,.035);
        border-left: 3px solid var(--accent);
        font-size: 18px;
        font-weight: 700;
      }
}





/* :root {
  --dark: #061c24;
  --dark-2: #082b32;
  --teal: #0b4b52;
  --teal-2: #0a555c;
  --teal-soft: #d9eff0;
  --text: #10252b;
  --muted: #6d7d82;
  --white: #ffffff;
  --accent: #75d8d2;
  --sand: #F8F4F1;
  --line: rgba(255,255,255,0.18);
  --max: 1180px;
} */


:root {
  /* V25 (Ticket 597) - einheitlicher Hausstil, Abschnitt 1.3.
     --dark war zuvor auf ein helles Tuerkis (#1F8FA6) ueberschrieben und
     damit entgegen seines Namens NICHT dunkel (bekannte Falle, siehe
     Projektnotizen) - das ist mit V25 behoben: --dark ist jetzt die
     "Navigation, dunkelste Flaeche" aus der V25-Farbtabelle. */
  --dark: #16333C;
  --dark-2: #082b32;
  --teal: #2E8CA5;      /* Petrol flach */
  --teal-2: #1B4351;    /* Petrol dunkel */
  --teal-soft: #d9eff0;
  --text: #16242B;      /* Schrift dunkel */
  --muted: #7A8C93;     /* Kleinzeile grau */
  --white: #ffffff;
  --accent: #F35E79;    /* Himbeerrosa */
  --sand: #F8F4F1;      /* Grund hell */
  --card-bg: #FBF8F6;   /* Karten und Bloecke auf hell */
  --panel-bg: #EFE8E3;  /* Abgesetzte Flaeche (Infoblock) */
  --hair: #DED5CE;      /* Trennlinien auf hell */
  --hair-2: #E4DCD6;    /* Trennlinien auf hell, Variante */
  --nav-dark: #16333C;
  --footer-dark: #122A32;
  --grad-head: linear-gradient(100deg, #2E8CA5 0%, #16333C 78%);
  --grad-band: linear-gradient(100deg, #2E8CA5 0%, #1B4351 92%);
  --text-body: #3E5058;    /* Lesetext auf hell */
  --text-petrol: #DFEDF1;  /* Lesetext auf Petrol */
  --kicker-light: #1E6171; /* Kicker auf hell */
  --kicker-petrol: #BEDCE5; /* Kicker auf Petrol */
  --line: rgba(255,255,255,0.18);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Noto Sans', Arial, Helvetica, sans-serif;
  background: #F8F4F1;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
    background: rgba(6, 28, 36, 0.96);
}

/* .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 58px;
  z-index: 50;
  background: rgba(6, 28, 36, 0.96);
  color: var(--white);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
} */

/* .nav {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
} */

.brand {
  line-height: 1.05;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: rgba(255,255,255,0.62);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
}

/* .menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.86);
} */

.menu a,
.menu summary {
  color: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
}

.menu a:hover,
.menu summary:hover { color: var(--accent); }

.dropdown {
  position: relative;
}

.dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  user-select: none;
}

.dropdown summary::-webkit-details-marker { display: none; }

.dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.78;
  transition: transform 0.2s ease;
}

.dropdown[open] summary::after,
.dropdown:hover summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: none;
  min-width: 220px;
  padding: 10px;
  background: rgba(6, 28, 36, 0.98);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  transform: translateX(-50%);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown[open] .dropdown-menu {
  display: grid;
  gap: 2px;
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 3px;
  color: rgba(255,255,255,0.86);
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: rgba(117,216,210,0.12);
  color: var(--accent);
}

.mobile-toggle { display: none; }

/* .hero { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; padding: 120px 24px 80px; color: var(--white); background: linear-gradient(rgba(4,54,61,0.78), rgba(4,54,61,0.82)), url("/assets/Portrait_123-C8D9HOFH.jpg") center center / cover no-repeat; text-align: center; } */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; padding: 120px 24px 80px; color: var(--white); background: linear-gradient(rgba(31,143,166,0.78), rgba(31,143,166,0.82)), url("/assets/Portrait_123-C8D9HOFH.jpg") center center / cover no-repeat; text-align: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(255,255,255,0.04), rgba(0,0,0,0.24)); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 920px; margin-top: 90px; }
.hero-kicker { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; color: rgba(255,255,255,0.78); }
.hero h1 { margin: 0 0 24px; font-size: clamp(44px, 7vw, 72px); line-height: 0.95; -letter-spacing: 0.08em; font-weight: 800; -text-transform: uppercase; }
.hero h2 { margin: 0 0 12px; font-size: clamp(22px, 3vw, 22px); line-height: 1.35; font-weight: 700; }
.hero p { margin: 48px auto 48px; max-width: 780px; font-size: clamp(16px, 2vw, 18px); line-height: 1.6; color: rgba(255,255,255,0.84); }
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 13px 24px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.36); font-size: 13px; font-weight: 700; letter-spacing: 0.03em; transition: 0.2s ease; }
.btn.primary { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn.dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn:hover { transform: translateY(-2px); background: var(--accent); border-color: var(--accent); color: var(--dark); }

.section { padding: 100px 24px; }
.section.dark { background: var(--dark); color: var(--white); }
.section.teal,
.section.grad-band { background: var(--grad-band); color: var(--text-petrol); }
.section.flat-petrol { background: var(--teal); color: var(--text-petrol); }

.container { max-width: var(--max); margin: 0 auto; }

.section-title {
  max-width: 850px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(34px, 4.7vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.section-title p {
  margin: 22px auto 0;
  max-width: 790px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.dark .section-title p,
.teal .section-title p { color: rgba(255,255,255,0.74); }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 760px;
  margin: auto;
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(9, 43, 50, 0.10);
  border-top: 4px solid var(--teal);
}

.offer-card.featured { border-top-color: var(--accent); }

.offer-image {
  height: 180px;
  background: linear-gradient(rgba(4, 54, 61, 0.28), rgba(4, 54, 61, 0.28)), center / cover no-repeat;
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px;
}

.label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-body h3 {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.offer-body .subtitle {
  margin: 0 0 18px;
  color: #182f35;
  font-size: 17px;
  font-weight: 800;
}

.offer-body p {
  margin: 0 0 18px;
  color: #52656a;
  line-height: 1.65;
  font-size: 16px;
}

.offer-body .meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(11,75,82,0.14);
  color: #314a50;
  font-size: 14px;
  line-height: 1.6;
}

.offer-body .btn {
  margin-top: 22px;
  width: fit-content;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
}

.split.reverse { grid-template-columns: 1.05fr 0.95fr; }

.image-card {
  /* V25, Abschnitt 1.9: harte Kante = eigener Block im hellen Raster,
     ohne Schatten, ohne Rahmen, ohne abgerundete Ecken. */
  min-height: 480px;
  border-radius: 0;
  overflow: hidden;
  background: var(--dark-2);
  box-shadow: none;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.content h2,
.content h3 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.content p {
  margin: 0 0 20px;
  color: #40565c;
  font-size: 17px;
  line-height: 1.78;
}

.dark .content p,
.teal .content p { color: rgba(255,255,255,0.78); }
.content strong { color: var(--dark); }
.dark .content strong, .teal .content strong { color: var(--white); }

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.principle {
  min-height: 235px;
  padding: 28px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-top: 4px solid var(--accent);
}

.principle h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.principle p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

.about-note {
  margin: 26px 0 0;
  padding: 22px 24px;
  background: #fff;
  border-left: 4px solid var(--teal);
  box-shadow: 0 18px 60px rgba(9, 43, 50, 0.08);
  color: #40565c;
  line-height: 1.7;
}

.cta {
  position: relative;
  padding: 112px 24px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 35, 43, 0.91), rgba(4, 35, 43, 0.70), rgba(4,35,43,0.86)),
    url("/assets/Portrait_21.jpg") center center / cover no-repeat;
}

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.cta h2 {
  margin: 0 0 24px;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.cta p,
.cta li {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  font-size: 17px;
}

.cta-list {
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
}

.cta-list li {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
}

.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.64);
  padding: 30px 24px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1040px) {
  .hero-inner,
  .split,
  .split.reverse,
  .cta-inner { grid-template-columns: 1fr; }
  .hero-box { max-width: 650px; }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 0; }
  .offer-image { height: 250px; }
}

@media (max-width: 780px) {
  /* .site-header { height: auto; min-height: 58px; } */
  /* .nav { align-items: flex-start; padding: 14px 20px; flex-direction: column; gap: 14px; } */
  /* .menu { width: 100%; gap: 10px 16px; flex-wrap: wrap; font-size: 12px; } */
  /* .dropdown { width: 100%; order: 2; }
  .dropdown summary {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
  }
  .dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    transform: none;
    background: rgba(255,255,255,0.06);
    box-shadow: none;
  }
  .dropdown-menu::before { display: none; }
  .dropdown-menu a {
    white-space: normal;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(6,28,36,0.42);
  } */
  .hero { padding-top: 190px; }
  .section { padding: 76px 20px; }
  .hero h1 { letter-spacing: -0.045em; }
  .principles, .cta-list { grid-template-columns: 1fr; }
  .image-card, .image-card img { min-height: 340px; }
}

@media (max-width: 560px) {
  .brand { white-space: normal; }
  .actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-box, .offer-body, .principle { padding: 24px; }
  .offer-image { height: 210px; }
}

/* =========================================================
   V25 (Ticket 597) - einheitlicher Hausstil, Abschnitt 1
   Wiederverwendbare Bausteine fuer alle sechs Seiten.
========================================================= */

/* --- 1.6 Kicker: kleine gesperrte Zeile ueber jeder Abschnittsueberschrift --- */
.kicker {
  display: block;
  margin: 0 0 14px;
  color: var(--kicker-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.section.dark .kicker,
.section.grad-band .kicker,
.section.flat-petrol .kicker { color: var(--kicker-petrol); }

.kicker.accent { color: var(--accent); }

/* --- 1.4 Abschnittskopf: linksbuendig, eine Groesse fuer alle Abschnitte --- */
.head-block { max-width: 700px; margin: 0 0 46px; text-align: left; }
.head-block.wide { max-width: 900px; }
.head-block.centered { margin-left: auto; margin-right: auto; text-align: center; }

.head-block h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--text);
}

.section.dark .head-block h2,
.section.grad-band .head-block h2,
.section.flat-petrol .head-block h2 { color: var(--white); }

.head-block p {
  margin: 0;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
}

.section.dark .head-block p,
.section.grad-band .head-block p,
.section.flat-petrol .head-block p { color: var(--text-petrol); }

/* --- 1.4 Lesetext, Zeilenbreite max. rund 70 Zeichen --- */
.copy { max-width: 62ch; }
.copy p {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
}
.copy p:last-child { margin-bottom: 0; }
.copy strong { color: var(--text); }

.section.dark .copy p,
.section.grad-band .copy p,
.section.flat-petrol .copy p { color: var(--text-petrol); }
.section.dark .copy strong,
.section.grad-band .copy strong,
.section.flat-petrol .copy strong { color: var(--white); }

/* --- 1.7 keine Aufzaehlungspunkte, egal wo --- */
ul.plain-list,
ol.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

ul.plain-list li,
ol.plain-list li { line-height: 1.7; }

/* V30, Abschnitt 1.3: zartes Aufzählungszeichen (4px Punkt in Rosa) statt
   Browser-Bullet - fuer "Vielleicht kennst du das" (kein Foto mehr). */
ul.plain-list.dots li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
ul.plain-list.dots li::before {
  content: "";
  flex: none;
  width: 4px;
  height: 4px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- 1.8 Knoepfe: gefuellt nur in Kopf/Schluss, sonst Textlink mit Unterstrich --- */
.textlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  font-weight: 700;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  transition: .2s ease;
}

.textlink:hover { color: var(--accent); }
.textlink.accent { color: var(--accent); }

/* --- 1.9 Bilder: randabfallend mit weicher Kante auf dunklen Flaechen --- */
.split-bleed {
  position: relative;
  overflow: hidden;
}

.split-bleed .split-bleed-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: block;
}

.split-bleed .bleed-media {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42vw;
  max-width: 620px;
}

.split-bleed.media-left .bleed-media { left: 0; }
.split-bleed.media-right .bleed-media { right: 0; }

.split-bleed .bleed-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* weiche Kante zur Textseite hin, als Maske in der Seite (nicht im Bild) */
.split-bleed.media-left .bleed-media img {
  -webkit-mask-image: linear-gradient(to right, black 66%, transparent 100%);
          mask-image: linear-gradient(to right, black 66%, transparent 100%);
}
.split-bleed.media-right .bleed-media img {
  -webkit-mask-image: linear-gradient(to left, black 66%, transparent 100%);
          mask-image: linear-gradient(to left, black 66%, transparent 100%);
}

.split-bleed .bleed-text {
  position: relative;
  z-index: 1;
  width: 54%;
  padding: 70px 24px;
}

.split-bleed.media-left .bleed-text { margin-left: 42vw; max-width: calc(var(--max) * 0.54); padding-left: 48px; }
.split-bleed.media-right .bleed-text { margin-right: 42vw; max-width: calc(var(--max) * 0.54); padding-right: 48px; }

@media (max-width: 920px) {
  .split-bleed .split-bleed-inner { display: flex; flex-direction: column; }
  .split-bleed .bleed-media {
    position: static;
    order: -1;
    width: 100%;
    height: 72vw;
    max-height: 420px;
  }
  .split-bleed.media-left .bleed-media img,
  .split-bleed.media-right .bleed-media img {
    -webkit-mask-image: linear-gradient(to bottom, black 72%, transparent 100%);
            mask-image: linear-gradient(to bottom, black 72%, transparent 100%);
  }
  .split-bleed.media-left .bleed-text,
  .split-bleed.media-right .bleed-text {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 34px 20px 0;
  }
}

/* --- Karten mit rosa Balken links --- */
.tile {
  position: relative;
  padding: 24px 26px 24px 30px;
  background: rgba(255,255,255,.13);
}
.tile::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}
.tile h3,
.tile strong.tile-title {
  display: block;
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}
.tile p { margin: 0; line-height: 1.65; color: var(--text-petrol); }

.tile.on-light { background: var(--card-bg); }
.tile.on-light::before { background: var(--accent); }
.tile.on-light h3,
.tile.on-light strong.tile-title { color: var(--text); }
.tile.on-light p { color: var(--text-body); }

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.tile-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

/* --- Icon-Karten (z.B. Entwicklungsraum) --- */
.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.icon-card {
  padding: 26px 26px 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}

.icon-card .alo-icon { margin-bottom: 16px; }

.icon-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.icon-card p { margin: 0; line-height: 1.6; color: var(--text-petrol); font-size: 15px; }

/* --- Icon-Zeilen (zweispaltige Liste mit kleinem Icon vor jeder Zeile) --- */
.icon-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  margin-top: 8px;
}

.icon-list-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.icon-list-item .alo-icon { margin-top: 2px; }
.icon-list-item p { margin: 0; line-height: 1.65; }

/* --- Infoblock (abgesetzte Flaeche, 3 Spalten x 2 Reihen) --- */
.infoblock {
  background: var(--panel-bg);
  padding: clamp(28px, 4vw, 44px);
  margin-top: 44px;
}

.infoblock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}

.infoblock-field strong.label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--kicker-light);
}

.infoblock-field span { display: block; font-size: 16px; line-height: 1.5; color: var(--text); }

/* --- Nummerierte Schritte mit grossen rosa Ziffern --- */
.step-list { display: grid; gap: 26px; margin-top: 34px; }

.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
}

.step .step-num {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

.step h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.step p { margin: 0; line-height: 1.7; }

/* --- Zitat / Testimonial-Balken --- */
.quote-block {
  position: relative;
  padding-left: 26px;
}
.quote-block::before {
  content: "";
  position: absolute;
  left: 0; top: 2px; bottom: 2px;
  width: 3px;
  background: var(--accent);
}
.quote-block p.quote-text {
  margin: 0 0 16px;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.5;
  font-style: italic;
  color: var(--white);
}
.quote-block .quote-signature { font-weight: 700; color: var(--text-petrol); font-style: normal; }

/* --- Karten (Preise, Referenzen) --- */
.card-plain {
  background: var(--card-bg);
  padding: 30px;
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* --- V25 Preiskarten (Programmseite, Abschnitt 3.8) --- */
.v25-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 44px;
}

.v25-price-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-top: 3px solid var(--dark);
  padding: 30px 28px;
}

.v25-price-card.featured {
  border-image: linear-gradient(90deg, #16333C, #F35E79, #16333C) 1;
  border-top-width: 3px;
  border-top-style: solid;
}

.v25-price-card .price-flag {
  margin: -6px 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.v25-price-card .price-weeks {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--kicker-light);
}

.v25-price-card h3 {
  margin: 6px 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.v25-price-card hr {
  margin: 0 0 16px;
  border: none;
  border-top: 1px solid var(--hair-2);
}

.v25-price-card .price-for {
  min-height: 66px;
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
}

.v25-price-card .price-checks {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  flex: 1;
}

.v25-price-card .price-checks li {
  padding-left: 22px;
  text-indent: -22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
}

.v25-price-card .price-checks li::before {
  content: "✓";
  display: inline-block;
  width: 22px;
  text-indent: 0;
  color: var(--accent);
  font-weight: 700;
}

.v25-price-card .price-amount {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--hair-2);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
}

.v25-price-card .price-amount span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

/* --- Anwendungsbloecke (Vortraege, Abschnitt 4.4) --- */
.application-grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.application-list { display: grid; gap: 26px; }

.application-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}

.application-item .adressat {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--kicker-petrol);
}

.application-item strong.bezeichnung {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  white-space: normal;
}

.application-item p { margin: 0; line-height: 1.6; color: var(--text-petrol); }

.qualifications-box {
  align-self: stretch;
  background: var(--card-bg);
  padding: 28px 26px;
  border-top: 3px solid var(--accent);
}

.qualifications-box h3 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
}

.qualifications-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.qualifications-box li {
  padding: 12px 0;
  border-top: 1px solid var(--hair-2);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-body);
}

.qualifications-box li:first-child { border-top: none; }

/* --- Formate (3 Spalten, Icon oben) --- */
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.format-item .alo-icon { margin-bottom: 14px; }
.format-item strong { display: block; margin-bottom: 4px; font-size: 18px; font-weight: 700; color: var(--text); }
.format-item span { color: var(--text-body); }

/* --- V30 (Ticket 606), Abschnitt 1.4: Formate untereinander statt
   nebeneinander, Icon links wie bei den Anwendungsbereichen, daneben in
   eigener Spalte die Frage "Dein Rahmen sieht anders aus?". --- */
.format-split {
  display: flex;
  gap: 34px;
  align-items: flex-start;
}
.format-split .format-list-col { width: 56%; }
.format-split .format-aside { width: 44%; align-self: center; }
/* V31 (Ticket 638), Abschnitt 1.5: beide Spalten groesser gesetzt - der
   Block wirkte zu leer fuer die Flaeche. In der Vorlage: Formattitel 16,
   Zeitzeile 13, Satz rechts 16,5 (vorher 14,5 / 12 / 15 bei uns). */
.format-split .format-aside p {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
  color: var(--kicker-light);
}

.format-list { display: flex; flex-direction: column; gap: 18px; margin-top: 6px; }
.format-list .format-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  align-items: start;
}
.format-list .format-row strong { display: block; font-size: 22px; font-weight: 500; color: var(--text); }
.format-list .format-row span { color: var(--text-body); font-size: 17px; }

@media (max-width: 780px) {
  .format-split { flex-direction: column; }
  .format-split .format-list-col,
  .format-split .format-aside { width: 100%; }
}

/* --- Referenzen / Kundenstimmen, gleiche Hoehe --- */
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }

.testi-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-top: 4px solid var(--dark);
  padding: 24px;
}

.testi-card p { flex: 1; margin: 0 0 14px; line-height: 1.6; color: var(--text-body); font-size: 15px; }
.testi-card strong { color: var(--text); font-size: 14px; }

/* --- Fragezeilen (Vortraege 4.3) --- */
.question-list { display: grid; gap: 20px; margin-top: 34px; }
.question-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: baseline;
}
.question-item .q-mark { font-size: 20px; font-weight: 800; color: var(--accent); }
.question-item p { margin: 0; font-size: 18px; line-height: 1.6; color: var(--text-petrol); }

@media (max-width: 1040px) {
  .tile-grid,
  .icon-card-grid,
  .v25-price-grid,
  .card-grid,
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .application-grid { grid-template-columns: 1fr; }
  .infoblock-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .icon-list { grid-template-columns: 1fr; }
  .tile-grid,
  .icon-card-grid,
  .v25-price-grid,
  .card-grid,
  .format-grid,
  .testi-grid { grid-template-columns: 1fr; }
  .infoblock-grid { grid-template-columns: 1fr; }
  .head-block { max-width: none; }
}