/* Self-hosted fonts (DSGVO-konform, kein Google-Request) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --hero: #FF6B35;
  --hero-hover: #FF8555;
  --hero-glow: rgba(255,107,53,0.12);
  --gold: #F0C040;
  --bg: #09090B;
  --bg-2: #0F1115;
  --bg-card: #12151C;
  --border: #1E2230;
  --border-hover: #2A2F40;
  --text: #F0F2F5;
  --text-sub: #A0A8B8;
  --text-muted: #5C6478;
  --green: #34D399;
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hero);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--hero);
  border-radius: 2px;
}

h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(30,34,48,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo .lo { color: var(--hero); }
.nav-logo .kal { color: var(--text); }

.nav-shield {
  width: 28px;
  height: 28px;
  background: var(--hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--hero) !important;
  color: white !important;
  padding: 0.55rem 1.3rem;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--hero-hover) !important; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--hero-glow) 0%, transparent 60%);
  top: 30%;
  right: -10%;
  animation: drift 8s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: var(--hero-glow);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--hero);
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 750px;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--hero) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-sub);
  margin-top: 1.5rem;
  max-width: 540px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--hero);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--hero-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,53,0.3); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.03); }

/* ─── PRICE BANNER ─── */
.price-banner {
  margin-top: 3.5rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 600px;
}

.price-banner-item {
  text-align: center;
}

.price-banner-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--hero);
  line-height: 1;
}

.price-banner-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.price-banner-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── WARUM ICH ─── */
.why {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-header {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.why-photo {
  width: 160px;
  height: 160px;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid var(--border);
  flex-shrink: 0;
}

.why-intro {
  color: var(--text-sub);
  font-size: 1.1rem;
  max-width: 650px;
  line-height: 1.8;
}

.why-intro strong { color: var(--text); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hero), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--hero-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.why-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.why-card p { color: var(--text-sub); font-size: 0.9rem; }

/* ─── WIE GEHT DAS ─── */
.how {
  padding: 7rem 0;
}

.how-explanation {
  color: var(--text-sub);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.how-explanation strong { color: var(--text); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.how-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--hero);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.how-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.how-card p { color: var(--text-sub); font-size: 0.88rem; }

/* ─── WAS DU KRIEGST ─── */
.what {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.what-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 800px;
}

.what-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.what-check {
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.what-item p { color: var(--text-sub); font-size: 0.9rem; }
.what-item strong { color: var(--text); }

/* ─── PRICING ─── */
.pricing { padding: 7rem 0; }

.pricing-box {
  max-width: 650px;
  margin-top: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--hero);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hero), var(--gold));
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.pricing-main {}

.pricing-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.3rem;
}

.pricing-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-amount .currency { font-size: 1.8rem; vertical-align: top; }
.pricing-amount .period { font-size: 1rem; font-weight: 400; color: var(--text-muted); }

.pricing-setup {
  font-family: 'Space Grotesk', sans-serif;
}

.pricing-setup-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.pricing-setup-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.2rem;
}

.pricing-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.promise-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-sub);
}

.promise-tag .check { color: var(--green); font-weight: 700; }

.pricing-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--hero);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}
.pricing-cta:hover { background: var(--hero-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,53,0.3); }

.pricing-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ─── BEISPIELE ─── */
.examples {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.example-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}
.example-card:hover { border-color: var(--hero); transform: translateY(-4px); }

.example-preview {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.example-preview-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.example-card:nth-child(1) .example-preview-bg { background: linear-gradient(135deg, #0A0A0A, #1A1A1A); }
.example-card:nth-child(2) .example-preview-bg { background: linear-gradient(135deg, #1A2A1A, #0D1F1A); }
.example-card:nth-child(3) .example-preview-bg { background: linear-gradient(135deg, #1A1520, #251A2E); }

.preview-mockup {
  width: 85%;
  height: 85%;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.preview-browser-bar {
  height: 24px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.preview-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.preview-url { font-size: 0.55rem; color: rgba(255,255,255,0.2); margin-left: 6px; font-family: monospace; }

.preview-content { flex: 1; padding: 0.8rem; display: flex; flex-direction: column; gap: 0.4rem; }
.preview-line { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.06); }
.preview-line.title { width: 55%; height: 12px; }
.preview-line.short { width: 35%; }
.preview-line.medium { width: 70%; }

.example-card:nth-child(1) .preview-line.title { background: rgba(201,169,110,0.3); }
.example-card:nth-child(2) .preview-line.title { background: rgba(52,211,153,0.3); }
.example-card:nth-child(3) .preview-line.title { background: rgba(167,139,250,0.3); }

.example-info { padding: 1.5rem; }
.example-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hero);
  margin-bottom: 0.4rem;
}
.example-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.example-info p { color: var(--text-sub); font-size: 0.85rem; }

/* ─── REGIONEN ─── */
.regions { padding: 7rem 0; }

.regions-text {
  color: var(--text-sub);
  font-size: 1.05rem;
  max-width: 550px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.regions-map {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.region-tag {
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
}

.region-tag.active { background: var(--hero); color: white; }
.region-tag.soon {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-list { max-width: 700px; margin: 3rem auto 0; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--hero);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 250px; }

.faq-a p {
  padding-bottom: 1.3rem;
  color: var(--text-sub);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ─── CTA ─── */
.cta {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--hero-glow) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-content { position: relative; z-index: 1; }

.cta h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }

.cta p {
  color: var(--text-sub);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-contact {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.cta-contact a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.cta-contact a:hover { color: var(--hero); }

/* ─── FOOTER ─── */
footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.footer-logo .lo { color: var(--hero); }

footer p { color: var(--text-muted); font-size: 0.82rem; }

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-sub); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  /* Grid stacking */
  .why-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .what-list { grid-template-columns: 1fr; }
  .examples-grid { grid-template-columns: 1fr !important; }
  .pricing-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .price-banner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .price-banner-divider { width: 40px; height: 1px; }

  /* Nav */
  .nav-links { display: none; }

  /* About */
  .why-header { flex-direction: column; gap: 1.5rem; }
  .why-photo { width: 120px; height: 120px; }

  /* Section spacing — consistent 4rem on mobile */
  .hero { padding-top: 6.5rem; padding-bottom: 4rem; min-height: auto; }
  .why, .how, .what, .pricing, .examples, .regions, .faq, .cta {
    padding: 4rem 0;
  }

  /* Container padding */
  .container { padding: 0 1.25rem; }

  /* Typography — minimum 16px body text */
  .hero-sub, .why-intro, .how-explanation, .regions-text,
  .why-card p, .how-card p, .what-item p, .faq-a p {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* Headings */
  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Cards — adequate padding */
  .why-card, .how-card { padding: 1.5rem; }

  /* Touch targets — minimum 44px */
  .btn-primary, .btn-secondary, .nav-cta, .pricing-cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .faq-q {
    min-height: 48px;
    padding: 1rem 0;
  }

  /* Branchen cards — full width, no span 2 */
  .example-card[style*="grid-column"] {
    grid-column: span 1 !important;
  }

  /* CTA contact links — larger touch targets */
  .cta-contact a {
    padding: 0.75rem 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Footer links */
  .footer-links a {
    padding: 0.5rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Region tags */
  .region-tag {
    padding: 0.5rem 1rem;
    min-height: 40px;
  }
}

/* ─── PRICING CLARITY UPDATE (2026-02-21) ─── */

/* Price Banner: Arrow-Connector statt Divider */
.price-banner-arrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--hero);
  line-height: 1;
  flex-shrink: 0;
}

/* Pricing Sub-Headline */
.pricing-sub {
  color: var(--text-sub);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.75;
  margin-top: 0.5rem;
}

/* Pricing Box: breiteres Layout für Flow */
.pricing-box { max-width: 800px !important; }

/* Flow: zwei Karten nebeneinander */
.pricing-flow {
  display: flex;
  align-items: stretch;
  margin-bottom: 2rem;
}

.pricing-step {
  flex: 1;
  background: rgba(255,107,53,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-step-monthly {
  background: rgba(255,107,53,0.08);
  border-color: var(--hero);
}

.pricing-step-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.pricing-step-badge-monthly {
  background: rgba(255,107,53,0.15);
  border-color: rgba(255,107,53,0.3);
  color: var(--hero);
}

.pricing-step-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
}

.pricing-step-amount-monthly {
  color: var(--hero);
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.pricing-step-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-sub);
  margin-bottom: 0.8rem;
  margin-top: 0.2rem;
}

.pricing-step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.pricing-step-list li {
  font-size: 0.85rem;
  color: var(--text-sub);
}

/* Flow-Connector zwischen den Karten */
.pricing-flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  gap: 0.3rem;
  flex-shrink: 0;
}

.pricing-flow-plus {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--hero);
  line-height: 1;
}

.pricing-flow-then {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}

/* Responsive: Stack auf Mobile */
@media (max-width: 768px) {
  /* Flow: Cards untereinander */
  .pricing-flow {
    flex-direction: column;
    gap: 0;
  }

  /* Connector: horizontal mit weniger Padding */
  .pricing-flow-connector {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 0;
  }

  .pricing-flow-plus {
    font-size: 1.4rem;
  }

  /* Cards: weniger Padding, Ecken anpassen damit sie zusammengehören */
  .pricing-step {
    border-radius: 0;
    padding: 1.4rem;
  }

  /* Erste Card: nur oben abgerundet */
  .pricing-flow .pricing-step:first-child {
    border-radius: 14px 14px 0 0;
    border-bottom: none;
  }

  /* Zweite Card: nur unten abgerundet */
  .pricing-flow .pricing-step:last-child {
    border-radius: 0 0 14px 14px;
    border-top: 1px solid rgba(255,107,53,0.4);
  }

  /* Step-Betrag auf Mobile etwas kleiner */
  .pricing-step-amount {
    font-size: 2rem;
  }

  /* Price Banner: Pfeile inline bleiben */
  .price-banner-arrow {
    font-size: 1.2rem;
  }
}
