/* ── Tokens ── */
:root {
  --bg:         #f5f7fb;
  --bg-2:       #edf1f8;
  --surface:    #ffffff;
  --surface-2:  #f8fbff;
  --surface-3:  #f0f5fc;
  --text:       #172033;
  --muted:      #65708a;
  --border:     #dfe6f0;
  --border-2:   #c8d4e8;
  --green:      #86c23a;
  --green-d:    #4d7220;
  --green-glow: rgba(134,194,58,0.12);
  --gold:       #d48a10;
  --gold-glow:  rgba(212,138,16,0.10);
  --dark-bar:   #0b1120;
  --max:        1200px;
  --r:          0px;
  --r-lg:       0px;
  --shadow:     0 8px 28px rgba(23,32,51,0.09);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; }
a { text-decoration: none; color: inherit; }

/* ── Base ── */
body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 40% at 15% 0%, rgba(90,184,22,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 85% 100%, rgba(90,184,22,0.03) 0%, transparent 55%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
  font-size: clamp(52px, 7.5vw, 102px);
}
h1 .accent {
  background: linear-gradient(90deg, #86c23a 0%, #4d7220 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 {
  font-family: 'Barlow Condensed', ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-wrap: balance;
  font-size: clamp(38px, 5.5vw, 72px);
}
h3 { font-size: 18px; font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; text-wrap: balance; }
p { line-height: 1.65; }

/* ── Layout ── */
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 80px 0; }
.section__head { margin-bottom: 44px; }
.section__head h2 { margin-bottom: 12px; }
.section__sub { font-size: 18px; color: var(--muted); max-width: 680px; }

/* ── Tag/Chip ── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green-glow);
  color: var(--green);
  border: 1px solid rgba(77,204,110,0.22);
  margin-bottom: 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, #86c23a 0%, #4d7220 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #93cc42 0%, #5a8427 100%);
  box-shadow: 0 4px 16px rgba(77,114,32,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--green);
}
.btn--outline:hover { background: var(--green-glow); border-color: var(--green-d); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn--ghost:hover { background: var(--surface); }
.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }
.btn--gold {
  background: var(--gold);
  color: #060a10;
  box-shadow: 0 6px 24px rgba(245,181,49,0.25);
}
.btn--gold:hover { background: #fac442; box-shadow: 0 10px 32px rgba(245,181,49,0.4); }

/* ════════════════════
   HEADER
════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,247,251,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 66px;
}
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--text);
  flex-shrink: 0;
  text-transform: uppercase;
}
.logo span { color: var(--green); }
.nav {
  display: flex;
  gap: 28px;
  margin-right: auto;
}
.nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav a:hover { color: var(--text); }
.burger {
  display: none;
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; }

/* ════════════════════
   HERO
════════════════════ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('../images/stadion-bg.jpg') center center / cover no-repeat;
  background-color: #0b1120;
}

/* Green tint */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 5% -5%, rgba(90,184,22,0.10) 0%, transparent 55%);
  pointer-events: none;
}

/* Signature element: giant watermark */
.hero__watermark {
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(120px, 22vw, 360px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.06);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0 64px;
}

/* Hero text */
.hero__text { display: flex; flex-direction: column; min-width: 0; }
.hero h1 { color: #ffffff; margin-bottom: 14px; font-size: clamp(48px, 6.2vw, 76px); }
.hero__sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero__lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: rgba(255,255,255,0.70);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero__lead strong { color: #ffffff; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.80);
  font-weight: 700;
}
.live-badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
}
.hero__img-wrap::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100px;
  background: radial-gradient(ellipse, rgba(77,204,110,0.22) 0%, transparent 70%);
  filter: blur(12px);
  z-index: 0;
}
.hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.6));
}

/* Ghost button on dark hero */
.hero .btn--ghost {
  color: #ffffff;
  border-color: rgba(255,255,255,0.35);
}
.hero .btn--ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.55);
}

/* Entry animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__text  { animation: fadeUp 0.85s cubic-bezier(0.2,0,0,1) both 0.05s; }
.hero__visual { animation: fadeUp 0.85s cubic-bezier(0.2,0,0,1) both 0.15s; }

/* ════════════════════
   PROOF BAR (dark stats strip — same as original)
════════════════════ */
.proof-bar {
  background: var(--dark-bar);
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.012) 3px,
    rgba(255,255,255,0.012) 4px
  );
  border-top: none;
  border-bottom: none;
  padding: 0;
}
.proof-bar__inner {
  display: flex;
  align-items: stretch;
}
.proof-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.proof-stat:last-child { border-right: none; }
.proof-stat__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: 0.02em;
  color: #edf1fb;
  line-height: 1;
}
.proof-stat__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(237,241,251,0.48);
}

/* ════════════════════
   FEATURES
════════════════════ */
.features-section { padding: 80px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.feat-card {
  display: flex;
  gap: 18px;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feat-card:hover { border-color: var(--border-2); box-shadow: var(--shadow); }
.feat-card__icon {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: var(--green-glow);
  border: 1px solid rgba(77,204,110,0.18);
  color: var(--green);
}
.feat-card h3 { font-size: 16px; margin-bottom: 6px; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ════════════════════
   EINBINDUNG
════════════════════ */
.embed-section {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.embed-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.embed-section__text h2 { margin-bottom: 16px; }
.embed-section__text p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.check-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 900;
  color: var(--green);
}
.check-list--new { color: var(--green) !important; }
.check-list--new::before { color: var(--green) !important; }
.embed-img {
  width: 100%; height: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow);
}

/* ════════════════════
   PROCESS / SO GEHT'S
════════════════════ */
.so-gehts-section { padding: 80px 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 44px;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}
.step {
  background: var(--surface);
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.step:hover { background: var(--surface-2); }
.step__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 140px;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(90,184,22,0.07);
  position: absolute;
  bottom: -14px;
  right: -8px;
  pointer-events: none;
  user-select: none;
}
.step__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: 0.02em;
  color: var(--green-d);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ════════════════════
   VORTEILE / BENEFITS
════════════════════ */
.benefits-section {
  padding: 80px 0;
  background: var(--surface);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
  margin-top: 44px;
}
.benefit {
  padding-top: 20px;
  border-top: 2px solid var(--border);
  transition: border-color 0.2s;
}
.benefit:hover { border-top-color: var(--green); }
.benefit h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; line-height: 1.25; }
.benefit p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ════════════════════
   INLINE CTA
════════════════════ */
.cta-inline-section { padding: 48px 0; }
.cta-inline-card {
  background: linear-gradient(135deg, #0e2b18 0%, #081910 100%);
  border: 1px solid rgba(77,204,110,0.2);
  border-radius: var(--r-lg);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.cta-inline-trophy { font-size: 48px; flex-shrink: 0; }
.cta-inline-text { flex: 1; }
.cta-inline-text h3 { font-size: 24px; margin-bottom: 8px; color: #edf1fb; }
.cta-inline-text p { color: rgba(237,241,251,0.6); font-size: 16px; }

/* ════════════════════
   DEMO
════════════════════ */
.demo-section { padding: 80px 0; }
.demo-placeholder {
  margin-top: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  min-height: 320px;
  display: grid;
  place-items: center;
}
.demo-placeholder__inner { text-align: center; }
.demo-placeholder__icon { font-size: 48px; margin-bottom: 16px; }
.demo-placeholder__title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 32px; letter-spacing: 0.02em; margin-bottom: 6px; }
.demo-placeholder__sub { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.demo-placeholder__bars { display: flex; gap: 8px; justify-content: center; }
.demo-placeholder__bars span {
  width: 32px; height: 4px;
  background: var(--border-2);
  border-radius: 999px;
  animation: bar-pulse 1.4s ease infinite;
}
.demo-placeholder__bars span:nth-child(2) { animation-delay: 0.2s; }
.demo-placeholder__bars span:nth-child(3) { animation-delay: 0.4s; }
.demo-placeholder__bars span:nth-child(4) { animation-delay: 0.6s; }
.demo-placeholder__bars span:nth-child(5) { animation-delay: 0.8s; }
@keyframes bar-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; background: var(--green); }
}

/* ════════════════════
   PRICING
════════════════════ */
.pricing-section {
  padding: 80px 0;
  background:
    linear-gradient(to bottom, rgba(11,17,32,0.80) 0%, rgba(11,17,32,0.75) 100%),
    url('../images/pricing-bg.jpg') center center / cover no-repeat;
  background-color: #0b1120;
}
/* Dark section: text + element overrides */
.section--pricing .section__head h2,
.section--pricing .section__head { color: #edf1fb; }
.section--pricing .section__sub { color: rgba(237,241,251,0.55); }
.section--pricing .tag {
  background: rgba(90,184,22,0.14);
  border-color: rgba(90,184,22,0.28);
  color: #7fd840;
}
.pricing-bg-trophy {
  position: absolute;
  font-size: 400px;
  line-height: 1;
  opacity: 0.018;
  pointer-events: none;
  user-select: none;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
}
.section--pricing { position: relative; overflow: hidden; }

.pricing-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(90,184,22,0.12);
  border: 1px solid rgba(90,184,22,0.25);
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  color: #7fd840;
  margin-bottom: 28px;
  width: fit-content;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: end;
}

.price-card {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s;
}
.price-card:hover { border-color: rgba(255,255,255,0.22); }
.price-card--flex { flex: 1; }

.price-card__top { padding: 28px 24px 0; }
.price-card__top h3 { font-size: 19px; margin-bottom: 4px; color: var(--text); }
.tier-icon { margin-right: 6px; }
.price-card__tagline { font-size: 14px; color: var(--muted); margin-top: 4px; }
.price-card__amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 58px;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1;
  padding: 16px 24px 0;
}
.price-card__amount span { font-size: 20px; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 600; margin-right: 4px; }
.price-card__amount small { font-size: 22px; font-family: 'Inter', sans-serif; }

.price-card .check-list { padding: 20px 24px; flex: 1; }
.price-card .check-list li { color: var(--text); }
.price-card .check-list--new { color: var(--green) !important; }

.price-card > .btn { margin: auto 24px 24px; width: calc(100% - 48px); }

/* Featured card — gold accent */
.price-card--featured-highlight {
  background: #ffffff;
  border: 2px solid var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  position: relative;
}
.price-card__badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: #060a10;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 var(--r-lg) 0 10px;
}
.price-card--featured-highlight .price-card__amount { color: var(--gold); }
.price-card--featured-highlight .check-list li { color: var(--text); }

/* Full Service card */
.fullservice-wrap { margin-top: 16px; }
.price-card--dashed {
  background: #ffffff;
  border: 1.5px dashed rgba(255,255,255,0.3);
}
.fullservice-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 24px 0;
}
.fullservice-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  padding: 0 24px;
}
.fullservice-cta { margin: 0 24px 24px; width: calc(100% - 48px); }

/* Pricing info grid */
.pricing-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.pricing-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
}
.pricing-info-item__icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.pricing-info-item h3 { font-size: 16px; margin-bottom: 4px; color: #edf1fb; }
.pricing-info-item p { font-size: 14px; color: rgba(237,241,251,0.55); }

/* CTA duo */
.cta-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.cta-duo__card {
  padding: 32px 36px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 160px;
}
.cta-duo__card h3 { font-size: 22px; color: #edf1fb; }
.cta-duo__card p { font-size: 15px; color: rgba(237,241,251,0.6); }
.cta-duo__card--dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.cta-duo__card--light {
  background: linear-gradient(135deg, #0e2b18 0%, #081910 100%);
  border: 1px solid rgba(77,204,110,0.2);
  position: relative;
  overflow: hidden;
}
.cta-duo__card--light h3 { color: #ffffff; }
.cta-duo__card--light p { color: rgba(255,255,255,0.65); }
.cta-duo__card--dark .btn--ghost {
  color: #edf1fb;
  border-color: rgba(255,255,255,0.3);
}
.cta-duo__card--dark .btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.cta-duo__card--light::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(77,204,110,0.07);
  right: -50px; bottom: -70px;
  pointer-events: none;
}

/* ════════════════════
   FAQ
════════════════════ */
.faq-section { padding: 80px 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.faq { display: flex; flex-direction: column; gap: 8px; margin-top: 44px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item:hover { border-color: var(--border-2); }
.faq__item[open] { border-color: rgba(77,204,110,0.25); }
.faq__item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--text);
  user-select: none;
  gap: 16px;
  transition: background 0.15s;
}
.faq__item summary:hover { background: var(--surface-2); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.2s;
  width: 22px;
  text-align: center;
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item > p {
  padding: 16px 24px 22px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  border-top: 1px solid var(--border);
}

/* ════════════════════
   CONTACT
════════════════════ */
.contact-section { padding: 80px 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  margin-top: 44px;
}

/* Form wrap card */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-form__field input,
.contact-form__field textarea {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 0;
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(134,194,58,0.12);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: var(--muted); opacity: 0.7; }
.contact-form__field textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

/* Package selector */
.pkg-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.pkg-option { cursor: pointer; }
.pkg-option__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 0;
  text-align: center;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  user-select: none;
}
.pkg-option:hover .pkg-option__inner {
  border-color: var(--green);
  background: rgba(134,194,58,0.06);
}
.pkg-option input:checked + .pkg-option__inner {
  border-color: var(--green);
  background: rgba(134,194,58,0.10);
  box-shadow: 0 0 0 3px rgba(134,194,58,0.15);
}
.pkg-option input:checked + .pkg-option__inner .pkg-option__name { color: var(--green-d); }
.pkg-option__name { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.2; }
.pkg-option__price { font-size: 11px; color: var(--muted); line-height: 1.2; }
.pkg-option--unsure { grid-column: 1 / -1; }
.pkg-option--unsure .pkg-option__inner { flex-direction: row; justify-content: center; gap: 8px; padding: 10px 8px; opacity: 0.7; }
.pkg-option--unsure:hover .pkg-option__inner,
.pkg-option--unsure input:checked + .pkg-option__inner { opacity: 1; }

.contact-form__note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.contact-form__note a { color: var(--green); }

/* Contact persons */
.contacts { display: flex; flex-direction: column; gap: 16px; }
.contact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 0.2s;
}
.contact:hover { border-color: var(--border-2); }
.contact__avatar {
  width: 96px; height: 96px;
  border-radius: 0;
  flex: 0 0 96px;
  object-fit: cover;
  filter: grayscale(20%);
}
.contact__info h3 { font-size: 16px; margin-bottom: 2px; }
.contact__info p { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.contact__info a { font-size: 14px; color: var(--green); font-weight: 600; transition: opacity 0.15s; }
.contact__info a:hover { opacity: 0.8; }

/* ════════════════════
   FOOTER
════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 40px 0 52px;
  text-align: center;
}
.footer p { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.footer a { color: var(--muted); transition: color 0.15s; }
.footer a:hover { color: var(--text); }
.footer__links { display: flex; justify-content: center; gap: 24px; margin-top: 12px; }
.footer__links a { font-size: 14px; font-weight: 500; }

/* ════════════════════
   DOT GRID PATTERN (features section)
════════════════════ */
.section--pattern {
  background-color: #f5f7fb;
  background-image:
    radial-gradient(rgba(134,194,58,0.11) 2px, transparent 2px),
    radial-gradient(rgba(134,194,58,0.05) 1.5px, transparent 1.5px);
  background-size: 32px 32px, 16px 16px;
  background-position: 0 0, 8px 8px;
  position: relative;
}
.section--pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(245,247,251,0.92) 0%, rgba(245,247,251,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.section--pattern .container { position: relative; z-index: 1; }

/* ════════════════════
   FIELD LINES (so geht's section)
════════════════════ */
.section--field { position: relative; overflow: hidden; }
.field-sketch {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.field-sketch svg { width: 100%; height: 100%; display: block; }
.section--field .container { position: relative; z-index: 1; }

/* ════════════════════
   WAVE DIVIDERS
════════════════════ */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
  margin-bottom: -2px;
  position: relative;
  z-index: 1;
}
.wave-divider svg { display: block; width: 100%; height: 60px; }
.wave-divider--bg-proof    { background: #0b1120; }
.wave-divider--bg-light    { background: #f5f7fb; }
.wave-divider--bg-pricing  { background: #0b1120; }

/* ════════════════════
   RESPONSIVE
════════════════════ */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; min-height: auto; padding-bottom: 48px; }
  .hero__visual { order: -1; max-width: 420px; margin: 0 auto; }
  .hero__text { align-items: flex-start; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .embed-section__inner { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr 1fr; }
  .price-card--featured-highlight { transform: none; }
  .fullservice-lists { grid-template-columns: 1fr; }
  .pricing-info-grid { grid-template-columns: 1fr 1fr; }
  .cta-duo { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; margin-top: 28px; }
  .contact-form-wrap { padding: 28px; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: rgba(245,247,251,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 20px 20px 24px;
    gap: 18px;
    z-index: 99;
  }
  .nav--open a { font-size: 16px; color: var(--text); }
  .burger { display: flex; }
  .header__inner .btn--primary { display: none; }
}
@media (max-width: 760px) {
  .section, .features-section, .embed-section,
  .so-gehts-section, .benefits-section, .demo-section,
  .pricing-section, .faq-section, .contact-section { padding: 48px 0; }
  h1 { font-size: clamp(40px, 11vw, 64px); }
  .section__sub { font-size: 16px; }
  .hero__inner { padding: 40px 0 36px; gap: 24px; }
  .hero__visual { max-width: 320px; }
  .features-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .pricing-info-grid { grid-template-columns: 1fr; }
  .proof-bar__inner { flex-wrap: wrap; }
  .proof-stat { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .proof-stat:nth-child(even) { border-right: none; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-layout { gap: 24px; margin-top: 24px; }
  .contact-form-wrap { padding: 20px; }
  .contact { padding: 16px; gap: 14px; }
  .contact__avatar { width: 72px; height: 72px; flex: 0 0 72px; }
  .pkg-selector { grid-template-columns: 1fr 1fr; }
  .cta-inline-card { flex-direction: column; padding: 28px 20px; }
  .cta-inline-trophy { font-size: 36px; }
  .step { padding: 28px 20px 24px; }
  .step__num { font-size: 100px; }
  .fullservice-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cta-duo__card { padding: 24px 20px; min-height: auto; }
  .footer__links { flex-wrap: wrap; gap: 10px 20px; justify-content: center; }
  .faq__item summary { font-size: 15px; padding: 16px 18px; }
  .faq__item > p { padding: 14px 18px 18px; }
}
@media (max-width: 540px) {
  h1 { font-size: clamp(34px, 9.5vw, 42px); }
  .hero__watermark { font-size: 100px; }
  .hero__visual { display: none; }
  .hero__inner { padding: 32px 0 28px; }
  .pkg-selector { grid-template-columns: 1fr; }
  .pkg-option--unsure .pkg-option__inner { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 20px 16px; }
  .cta-inline-card { padding: 20px 16px; }
  .price-card__amount { font-size: 46px; }
  .cta-duo__card { padding: 20px 16px; }
}
