:root {
  --green-950: #0d2b22;
  --green-900: #17392d;
  --green-800: #16786f;
  --green-700: #4f7d71;
  --green-600: #7aa66d;
  --green-100: #eef2e8;
  --sand-100: #f6f2e8;
  --sand-200: #ece3d0;
  --sand-300: #dccdaf;
  --gold: #c5b25e;
  --gold-soft: #dfd399;
  --lime: #d7dc41;
  --petrol: #16948a;
  --marine: #23394e;
  --ink: #18211d;
  --muted: #5e675f;
  --line: rgba(24, 33, 29, 0.14);
  --paper: #fbf8f1;
  --mist: #eef2e8;
  --panel: rgba(255, 252, 245, 0.84);
  --dark-line: rgba(255, 255, 255, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: #fff;
  color: var(--green-950);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 248, 241, 0.94);
  border-bottom: 1px solid rgba(184, 154, 99, 0.24);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(17, 33, 24, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(12, 31, 24, 0.18);
}

.brand-copy {
  display: grid;
  gap: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy strong {
  font-weight: 800;
  color: currentColor;
}

.brand-copy span {
  opacity: 0.66;
  color: rgba(255, 248, 238, 0.78);
}

.site-header.is-scrolled .brand-copy span,
.site-header.is-open .brand-copy span {
  color: rgba(35, 57, 78, 0.7);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 10px 12px;
  font: inherit;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--lime);
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-open .nav-links a:hover {
  color: var(--petrol);
}

.nav-cta {
  border: 1px solid rgba(255, 252, 245, 0.36);
  padding: 11px 16px;
  background: rgba(255, 252, 245, 0.08);
  border-radius: 999px;
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  border-color: rgba(22, 148, 138, 0.24);
  background: rgba(22, 148, 138, 0.08);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--green-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(215, 220, 65, 0.22), rgba(215, 220, 65, 0) 22%),
    radial-gradient(circle at 88% 32%, rgba(22, 148, 138, 0.18), rgba(22, 148, 138, 0) 18%),
    linear-gradient(90deg, rgba(13, 43, 34, 0.94) 0%, rgba(13, 43, 34, 0.76) 42%, rgba(13, 43, 34, 0.28) 100%),
    linear-gradient(180deg, rgba(13, 43, 34, 0.28) 0%, rgba(13, 43, 34, 0.72) 100%),
    url("Bilder/Blick%20aufs%20Gr%C3%BCn.webp") center / cover;
  transform: scale(1.03);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 138px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--petrol);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 5.7vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 4rem);
}

h3 {
  margin: 0;
  font-size: 1.06rem;
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 248, 238, 0.84);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #eef0a4, #d9df53);
  color: var(--marine);
  box-shadow: 0 18px 32px rgba(11, 31, 24, 0.2);
}

.button-primary:hover {
  background: #fffdf8;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 248, 238, 0.42);
  background: rgba(255, 248, 238, 0.06);
}

.button-secondary:hover {
  border-color: #fff;
}

.button-secondary.dark {
  color: #fff;
}

.hero-proof {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px;
  max-width: 1020px;
  margin: 32px 0 0;
  grid-column: 1 / -1;
  box-shadow: 0 22px 50px rgba(11, 31, 24, 0.18);
}

.hero-proof div {
  padding: 20px;
  background: rgba(15, 40, 31, 0.5);
  border-radius: 24px;
  backdrop-filter: blur(8px);
}

.hero-proof dt {
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin-top: 24px;
  max-width: 780px;
}

.hero-trust span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  background: rgba(255, 248, 238, 0.1);
  border: 1px solid rgba(216, 195, 155, 0.26);
  color: rgba(255, 248, 238, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
  border-radius: 999px;
}

.hero-check {
  align-self: end;
  position: relative;
  padding: 26px 28px 28px;
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 249, 238, 0.12), rgba(255, 249, 238, 0.04));
  border: 1px solid rgba(216, 195, 155, 0.28);
  border-radius: 26px;
  box-shadow: 0 24px 44px rgba(8, 26, 19, 0.18);
  backdrop-filter: blur(16px);
}

.hero-check::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 96px;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--gold-soft));
}

.hero-check-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-check strong {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.hero-check p {
  margin: 14px 0 0;
  max-width: 300px;
  color: rgba(255, 248, 238, 0.72);
  line-height: 1.55;
}

.hero-check ul {
  display: grid;
  gap: 1px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(216, 195, 155, 0.18);
}

.hero-check li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(216, 195, 155, 0.18);
  font-weight: 850;
  color: rgba(255, 248, 238, 0.86);
}

.hero-check a {
  display: inline-flex;
  margin-top: 22px;
  font-weight: 850;
  color: var(--lime);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero-proof dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

section {
  position: relative;
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(32px, 8vw, 110px);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(66px, 9vw, 120px) 0;
}

.intro-statement h2 {
  font-size: clamp(2rem, 3.6vw, 3.9rem);
  color: var(--green-950);
}

.audience-strip {
  align-self: end;
  display: grid;
  gap: 0;
  padding: 18px 24px 0;
  background: linear-gradient(180deg, rgba(236, 227, 208, 0.58), rgba(236, 227, 208, 0));
  border-top: 2px solid rgba(22, 148, 138, 0.3);
}

.audience-strip span {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.08rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.trust-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(48px, 6vw, 72px);
}

.trust-heading {
  width: min(720px, 100%);
}

.trust-heading p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.trust-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(22, 148, 138, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 239, 227, 0.9));
  box-shadow: 0 14px 34px rgba(16, 34, 26, 0.06);
}

.trust-card h3 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.08rem, 1.6vw, 1.26rem);
  line-height: 1.24;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.trust-card-premium {
  background: linear-gradient(180deg, rgba(233, 246, 242, 0.92), rgba(255, 255, 255, 0.98));
  border-color: rgba(22, 148, 138, 0.2);
  box-shadow: 0 18px 42px rgba(16, 34, 26, 0.08);
}

.mobile-card-slider-block {
  position: relative;
}

.mobile-card-slider-nav {
  display: none;
}

.mobile-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(22, 148, 138, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green-950);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(16, 34, 26, 0.08);
}

.mobile-card-arrow:disabled {
  opacity: 0.42;
  cursor: default;
}

.reason-section {
  padding: clamp(64px, 9vw, 118px) 0;
  background:
    linear-gradient(180deg, rgba(236, 227, 208, 0.34), rgba(236, 227, 208, 0)),
    var(--mist);
}

.section-kicker,
.reason-layout,
.process-heading,
.process-list,
.faq-section,
.final-cta-inner {
  width: min(var(--max), calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.reason-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(34px, 8vw, 108px);
  align-items: center;
}

.reason-copy p,
.coverage-content p,
.calc-copy p,
.day-copy p,
.specialist-copy p,
.final-cta p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.72;
}

.image-slab {
  margin: 0;
}

.image-slab img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(26, 40, 31, 0.12);
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.coverage-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  background: linear-gradient(90deg, #18392e 0%, #112820 100%);
  color: #fff;
}

.coverage-gallery {
  min-height: 460px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.coverage-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  padding: 26px 18px;
  cursor: pointer;
  overflow: hidden;
  transition: flex 320ms ease, transform 320ms ease, filter 320ms ease;
}

.coverage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 360ms ease, filter 320ms ease;
}

.coverage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 43, 34, 0.12), rgba(13, 43, 34, 0.78));
}

.coverage-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 248, 238, 0.18);
  background: rgba(13, 43, 34, 0.4);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.coverage-card-car::before {
  background-image: url("Bilder/HiO%20Preise.webp");
  background-position: 20% center;
}

.coverage-card-cash::before {
  background-image: url("Bilder/HiO%20Preise.webp");
  background-position: 48% center;
}

.coverage-card-travel::before {
  background-image: url("Bilder/HiO%20Preise.webp");
  background-position: 80% center;
}

.coverage-gallery:hover .coverage-card,
.coverage-gallery:focus-within .coverage-card {
  flex: 0.85 1 0;
}

.coverage-card:hover,
.coverage-card:focus-visible {
  flex: 1.45 1 0;
  outline: none;
}

.coverage-card:hover::before,
.coverage-card:focus-visible::before {
  transform: scale(1.08);
}

.coverage-card:not(:hover):not(:focus-visible) {
  filter: saturate(0.9);
}

.coverage-content {
  align-self: center;
  max-width: 650px;
  padding: clamp(52px, 8vw, 116px) clamp(24px, 7vw, 96px);
}

.coverage-content h2 {
  font-size: clamp(2rem, 3.7vw, 3.9rem);
}

.coverage-content p {
  color: rgba(255, 255, 255, 0.72);
}

.coverage-lines {
  margin-top: 40px;
  border-top: 1px solid var(--dark-line);
}

.coverage-lines p {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--dark-line);
}

.coverage-lines strong {
  color: #fff;
}

.calculation-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(68px, 10vw, 138px) 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: clamp(36px, 9vw, 120px);
  align-items: center;
}

.calc-number {
  padding: 34px 30px;
  background: linear-gradient(180deg, rgba(236, 227, 208, 0.56), rgba(255, 255, 255, 0.48));
  border: 1px solid rgba(184, 154, 99, 0.2);
  border-radius: 24px;
}

.calc-number span {
  display: block;
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.08em;
  font-size: clamp(4.8rem, 12vw, 8.5rem);
  line-height: 0.98;
  color: var(--petrol);
}

.calc-number p {
  max-width: 220px;
  margin: 18px 0 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.78rem;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--green-900);
  font-weight: 820;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.calculator-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(36px, 8vw, 112px);
  align-items: center;
  padding: clamp(64px, 8vw, 118px) max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(17, 48, 38, 0.96), rgba(28, 61, 48, 0.92)),
    url("Bilder/turnierathmosph%C3%A4re.webp") center / cover;
  color: #fff;
}

.calculator-intro h2 {
  max-width: 620px;
}

.calculator-intro p {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.72;
}

.calculator-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.calculator-notes span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(215, 220, 65, 0.24);
  color: rgba(255, 248, 238, 0.82);
  font-size: 0.84rem;
  font-weight: 760;
  border-radius: 999px;
}

.premium-calculator {
  width: 100%;
}

.calculator-card {
  position: relative;
  padding: clamp(20px, 3.4vw, 34px);
  background: rgba(255, 250, 243, 0.1);
  border: 1px solid rgba(216, 195, 155, 0.26);
  border-left: 3px solid var(--lime);
  border-radius: 24px;
  backdrop-filter: blur(18px);
}

.calculator-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.calculator-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.calculator-card-head span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calculator-card-head strong {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.calc-field {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.calc-field span {
  font-weight: 820;
  letter-spacing: -0.01em;
}

.calc-field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-950);
  font: inherit;
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.calc-field input:focus {
  outline: 0;
  border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(22, 148, 138, 0.18);
  background: #fff;
}

.calc-field input::placeholder {
  color: rgba(6, 31, 25, 0.44);
}

.calc-field small {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.currency-input {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
}

.currency-input b {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: rgba(6, 31, 25, 0.1);
  color: var(--green-950);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.currency-input input {
  min-height: 54px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.currency-input:focus-within {
  box-shadow: 0 0 0 3px rgba(22, 148, 138, 0.18);
}

.calc-error {
  display: none;
  color: #ffb6b6;
  font-style: normal;
  font-size: 0.88rem;
}

.calc-field.has-error input,
.calc-field.has-error .currency-input {
  border-color: #ffb6b6;
}

.calc-field.has-error .calc-error {
  display: block;
}

.calculator-submit {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 56px;
  margin-top: 26px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #eef0a4, #d9df53);
  color: var(--marine);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease;
}

.calculator-submit:hover {
  transform: translateY(-2px);
  background: #fffdf8;
}

.calculator-fineprint {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  line-height: 1.6;
}

.calculator-result {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(216, 195, 155, 0.26);
  border-radius: 18px;
  background: rgba(8, 32, 26, 0.28);
}

.calculator-result-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.calculator-result-head span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calculator-result-head strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.calculator-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.calculator-result-grid div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.calculator-result-grid span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calculator-result-grid strong {
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.25;
}

.calculator-result-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  line-height: 1.55;
}


.process-section {
  padding: clamp(70px, 9vw, 130px) 0;
  background:
    linear-gradient(180deg, rgba(216, 195, 155, 0.08), rgba(216, 195, 155, 0)),
    var(--green-900);
  color: #fff;
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
  gap: clamp(24px, 7vw, 96px);
  align-items: end;
}

.process-heading h2 {
  max-width: 760px;
}

.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 58px;
  padding: 0;
  background: var(--dark-line);
}

  .process-list li {
    min-height: 300px;
    padding: 24px 22px;
    background: var(--green-900);
  }


.process-list span {
  display: block;
  margin-bottom: 80px;
  color: var(--lime);
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: 2rem;
}

.process-list p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.day-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(68px, 10vw, 136px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

.day-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--green-900);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.9));
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 52px rgba(26, 40, 31, 0.08);
}

.day-board div {
  padding: 26px 24px;
  border-bottom: 1px solid var(--line);
}

.day-board div + div {
  border-left: 1px solid var(--line);
}

.day-board ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  color: var(--muted);
}

.day-board li {
  padding-left: 20px;
  position: relative;
}

.day-board li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  background: var(--petrol);
}

.specialist-section {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(36px, 8vw, 100px);
  align-items: center;
  padding: clamp(68px, 9vw, 124px) max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(236, 227, 208, 0.2), rgba(236, 227, 208, 0)),
    var(--mist);
}

.specialist-photo {
  margin: 0;
  position: relative;
}

.specialist-photo img {
  width: 100%;
  min-height: 680px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 32%;
  border-radius: 30px;
  box-shadow: 0 34px 70px rgba(26, 40, 31, 0.16);
}

.specialist-photo figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  margin: 0;
  padding: 14px 16px;
  color: rgba(255, 248, 238, 0.92);
  background: rgba(13, 43, 34, 0.58);
  border: 1px solid rgba(223, 211, 153, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.specialist-copy {
  padding-right: 18px;
}

.specialist-copy h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.9rem);
}

.format-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 136px) 0;
}

.format-copy {
  max-width: 860px;
}

.format-copy h2 {
  max-width: 900px;
}

.format-copy p,
.premium-package-copy p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.72;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.format-card {
  padding: 26px 24px;
  background: linear-gradient(180deg, rgba(236, 227, 208, 0.5), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(22, 148, 138, 0.14);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(26, 40, 31, 0.06);
}

.format-card span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--petrol);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.format-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.premium-highlight-section {
  padding: 0 max(18px, calc((100vw - var(--max)) / 2)) clamp(52px, 6vw, 78px);
}

.premium-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 52px);
  align-items: stretch;
  padding: clamp(28px, 4.4vw, 42px);
  border: 1px solid rgba(22, 148, 138, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(215, 220, 65, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 251, 243, 0.98), rgba(240, 248, 244, 0.9));
  box-shadow: 0 26px 70px rgba(10, 29, 22, 0.1);
}

.premium-highlight-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.premium-highlight-copy h2 {
  margin: 0;
  max-width: 640px;
}

.premium-highlight-lead {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.premium-highlight-copy p:last-of-type {
  margin: 0;
  color: var(--muted);
}

.premium-highlight-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.premium-highlight-points span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(22, 148, 138, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-950);
  font-weight: 700;
}

.premium-highlight .button {
  width: auto;
}

.premium-highlight-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, #18392e 0%, #10251e 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 238, 0.08);
}

.premium-highlight-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-highlight-panel h3,
.premium-highlight-panel p {
  margin: 0;
  color: rgba(255, 248, 238, 0.92);
}

.package-section {
  padding: clamp(64px, 8vw, 112px) max(18px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at top right, rgba(22, 148, 138, 0.14), transparent 28%),
    linear-gradient(180deg, #f6f3eb 0%, #fffaf2 100%);
}

.package-heading {
  width: min(760px, 100%);
}

.package-heading p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
  align-items: stretch;
}

.package-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 239, 227, 0.92));
  border: 1px solid rgba(22, 148, 138, 0.14);
  border-radius: 26px;
  box-shadow: 0 18px 46px rgba(17, 34, 28, 0.08);
}

.package-card h3 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.26rem, 2vw, 1.58rem);
  line-height: 1.2;
}

.package-card p {
  margin: 0;
  color: var(--muted);
}

.package-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(22, 148, 138, 0.12);
  color: var(--petrol);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-flag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 238, 0.18);
  color: rgba(255, 248, 238, 0.88);
  font-size: 0.78rem;
  font-weight: 780;
}

.package-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-points li {
  position: relative;
  padding-left: 20px;
  color: var(--green-950);
  line-height: 1.65;
}

.package-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-700);
  transform: translateY(-50%);
}

.package-card-accent {
  background: linear-gradient(180deg, rgba(226, 245, 240, 0.92), rgba(255, 255, 255, 0.98));
  border-color: rgba(22, 148, 138, 0.22);
}

.package-card-dark {
  position: relative;
  background: linear-gradient(180deg, #18392e 0%, #112820 100%);
  border-color: rgba(255, 248, 238, 0.12);
  box-shadow: 0 30px 72px rgba(9, 26, 20, 0.28);
  transform: translateY(-4px);
}

.package-card-dark h3,
.package-card-dark p,
.package-card-dark .package-points li {
  color: rgba(255, 248, 238, 0.92);
}

.package-card-dark .package-badge {
  background: rgba(255, 248, 238, 0.12);
  color: #fff;
}

.package-card-dark .package-points li::before {
  background: var(--lime);
}

.faq-section {
  padding: clamp(68px, 9vw, 126px) 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 104px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 42px 22px 0;
  font-weight: 850;
  list-style: none;
  position: relative;
}

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

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 20px;
  color: var(--petrol);
  font-size: 1.4rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
  line-height: 1.72;
}

.final-cta {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 43, 34, 0.92), rgba(13, 43, 34, 0.52)),
    url("Bilder/Blick%20aufs%20Gr%C3%BCn.webp") center / cover;
}

.final-cta-inner {
  padding: clamp(78px, 11vw, 150px) 0;
}

.final-cta h2 {
  max-width: 780px;
}

.final-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(180px, 0.7fr));
  gap: 34px;
  padding: 56px clamp(18px, 4vw, 54px) 34px;
  background: var(--green-950);
  color: rgba(255, 248, 238, 0.74);
  font-size: 0.92rem;
  border-top: 1px solid rgba(223, 211, 153, 0.16);
}

.site-footer-intro {
  max-width: 360px;
}

.site-footer-kicker {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer strong {
  display: block;
  color: #fff;
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.05;
}

.site-footer p {
  margin: 10px 0 0;
}

.site-footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer-column h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1rem;
}

.site-footer address {
  margin: 0;
  font-style: normal;
}

.site-footer-contact p {
  margin: 0;
}

.site-footer-bottom {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 248, 238, 0.12);
}

.site-footer-bottom p {
  margin: 0;
  color: rgba(255, 248, 238, 0.58);
}

.site-footer a:hover {
  color: #fff;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button,
  .site-header {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 18px;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open {
    display: flex;
  }

  .intro-panel,
  .reason-layout,
  .coverage-section,
  .calculation-section,
  .calculator-section,
  .process-heading,
  .day-section,
  .specialist-section,
  .format-grid,
  .faq-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .premium-highlight {
    grid-template-columns: 1fr;
  }

  .coverage-section {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 124px;
  }

  .hero-check {
    max-width: 520px;
    margin-top: 8px;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(2.55rem, 7.2vw, 4.7rem);
  }

  h2,
  .intro-statement h2,
  .coverage-content h2 {
    font-size: clamp(1.95rem, 5.4vw, 3.35rem);
    line-height: 1.08;
  }

  .coverage-gallery {
    min-height: 360px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list li {
    min-height: 260px;
  }

  .calculator-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .premium-highlight-section {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-copy {
    display: none;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    padding-bottom: 88px;
    padding-top: 116px;
  }

  h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.55rem);
    line-height: 1.03;
    letter-spacing: -0.035em;
  }

  h2,
  .intro-statement h2,
  .coverage-content h2 {
    font-size: clamp(1.8rem, 8.2vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-check {
    display: none;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .hero-proof div {
    padding: 16px;
  }

  .calc-number span {
    font-size: clamp(3.8rem, 22vw, 5.8rem);
  }

  .intro-panel,
  .section-kicker,
  .reason-layout,
  .process-heading,
  .process-list,
  .day-section,
  .trust-section,
  .faq-section,
  .final-cta-inner {
    width: min(100% - 28px, var(--max));
  }

  .coverage-content {
    padding: 46px 18px;
  }

  .specialist-photo img {
    min-height: 520px;
    aspect-ratio: 5 / 6;
  }

  .coverage-gallery {
    min-height: auto;
    flex-direction: column;
  }

  .coverage-card,
  .coverage-gallery:hover .coverage-card,
  .coverage-gallery:focus-within .coverage-card,
  .coverage-card:hover,
  .coverage-card:focus-visible {
    flex: auto;
  }

  .coverage-card {
    min-height: 180px;
  }

  .calculator-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .premium-highlight-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .trust-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
  }

  .package-grid,
  .format-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
  }

  .mobile-card-slider-block {
    margin-top: 28px;
  }

  .mobile-card-slider-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 12px;
  }

  .mobile-card-slider {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .mobile-card-slider::-webkit-scrollbar {
    display: none;
  }

  .mobile-card-slider > * {
    flex: 0 0 min(84vw, 320px);
    scroll-snap-align: start;
  }

  .premium-highlight,
  .premium-highlight-panel {
    padding: 20px 18px;
  }

  .calculator-card {
    padding: 18px;
  }

  .calculator-card-head {
    display: grid;
  }

  .calculator-result-grid {
    grid-template-columns: 1fr;
  }

  .process-list,
  .day-board {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: auto;
  }

  .process-list span {
    margin-bottom: 40px;
  }

  .day-board div + div {
    border-left: 0;
  }

  .specialist-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .specialist-photo img {
    min-height: 420px;
  }

  .specialist-photo figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .format-section,
  .package-section {
    width: min(100% - 28px, var(--max));
  }

  .package-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 6px;
    background: linear-gradient(135deg, #eef0a4, #d9df53);
    color: var(--marine);
    text-decoration: none;
    font-weight: 820;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  }
}
