/* ═══════════════════════════════════════════════
   KRISEN-SPARPLAN — STYLESHEET
   Brand Colors:
   --navy:   #1B2A4A
   --blue:   #2D4A7A
   --orange: #E86B35
   --green:  #2ECC71
   --red:    #E74C3C
   --light:  #F4F6F9
   --dark:   #2C3E50
   --white:  #FFFFFF
═══════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #2C3E50;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

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

/* ── BUTTONS ── */
.btn-cta {
  display: inline-block;
  background: #E86B35;
  color: #fff;
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
  line-height: 1.2;
}

.btn-cta:hover { background: #cf5a27; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,107,53,0.4); }
.btn-cta:active { transform: translateY(0); }

.btn-cta--large { font-size: 1.05rem; padding: 18px 36px; }
.btn-cta--xl    { font-size: 1.15rem; padding: 22px 44px; }
.btn-cta--sticky { font-size: 0.95rem; padding: 14px 28px; width: 100%; }

.btn-cta--pulse {
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,107,53,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(232,107,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,107,53,0); }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1B2A4A;
  color: #fff;
  z-index: 9999;
  padding: 16px 20px;
  border-top: 3px solid #E86B35;
  display: none; /* shown via JS */
}
.cookie-banner.visible { display: block; }
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p { flex: 1; font-size: 0.88rem; }
.cookie-inner a { color: #E86B35; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: #E86B35; color: #fff; border: none;
  padding: 9px 20px; border-radius: 6px; font-weight: 700;
  cursor: pointer; font-size: 0.88rem;
}
.btn-cookie-accept:hover { background: #cf5a27; }
.btn-cookie-decline {
  background: transparent; color: #aaa; border: 1px solid #aaa;
  padding: 9px 20px; border-radius: 6px; font-weight: 600;
  cursor: pointer; font-size: 0.88rem;
}
.btn-cookie-decline:hover { color: #fff; border-color: #fff; }

/* ════════════════════════════════════════════
   SEKTION 1: HERO
════════════════════════════════════════════ */
.hero-section {
  background: #1B2A4A;
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
}

/* Diagonal accent line */
.hero-diagonal {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(45,74,122,0.45) 40%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { color: #fff; }

.pre-headline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E86B35;
  margin-bottom: 14px;
}

.hero-text h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
}

.sub-headline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.trust-row span { display: flex; align-items: center; gap: 4px; }

.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ════════════════════════════════════════════
   SEKTION 2: STATISTIKEN
════════════════════════════════════════════ */
.stats-section {
  background: #F4F6F9;
  padding: 70px 0;
  text-align: center;
}

.stats-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #1B2A4A;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-top: 4px solid #E74C3C;
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #E74C3C;
  line-height: 1.1;
  margin-bottom: 12px;
}
.stat-number small { font-size: 0.5em; font-weight: 700; }

.stat-card p { font-size: 0.92rem; color: #2C3E50; line-height: 1.5; }

.source-note {
  font-size: 0.75rem;
  color: #999;
  margin-top: 16px;
}

/* ════════════════════════════════════════════
   SEKTION 3: SCHMERZPUNKTE
════════════════════════════════════════════ */
.pain-section {
  background: #fff;
  padding: 70px 0;
}

.pain-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #1B2A4A;
  margin-bottom: 36px;
  text-align: center;
}

.pain-list {
  list-style: none;
  max-width: 750px;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.02rem;
  color: #2C3E50;
  background: #fff8f6;
  border-left: 4px solid #E74C3C;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
}

.pain-x {
  color: #E74C3C;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.pain-conclusion {
  max-width: 750px;
  margin: 0 auto;
  background: #F4F6F9;
  border-radius: 10px;
  padding: 24px 28px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: #2C3E50;
}

/* ════════════════════════════════════════════
   SEKTION 4: 7-SCHRITTE-SYSTEM
════════════════════════════════════════════ */
.steps-section {
  background: #F4F6F9;
  padding: 70px 0;
  text-align: center;
}

.steps-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #1B2A4A;
  margin-bottom: 14px;
}

.section-subtext {
  font-size: 1rem;
  color: #555;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  text-align: left;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.step-card--highlight {
  border: 2px solid #E86B35;
  background: #fff8f4;
}

.step-number {
  position: absolute;
  top: -14px; left: 22px;
  background: #1B2A4A;
  color: #fff;
  font-weight: 900;
  font-size: 0.85rem;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  margin-top: 8px;
}

.step-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1B2A4A;
  margin-bottom: 6px;
}

.step-saving {
  font-size: 1rem;
  color: #2ECC71;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p:last-child {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}

.savings-total-box {
  background: linear-gradient(135deg, #1B2A4A 0%, #2D4A7A 100%);
  border-radius: 14px;
  padding: 32px 36px;
  color: #fff;
  margin-bottom: 36px;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.savings-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.savings-amount {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #2ECC71;
  margin-bottom: 8px;
}

.savings-monthly {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}

.cta-center { text-align: center; }

/* ════════════════════════════════════════════
   SEKTION 5: ÜBER STEFAN
════════════════════════════════════════════ */
.about-section {
  background: #fff;
  padding: 70px 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.12);
  object-fit: cover;
  max-height: 520px;
}

.about-text h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #1B2A4A;
  margin-bottom: 22px;
}

.about-text p {
  font-size: 0.98rem;
  color: #2C3E50;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-closing {
  font-size: 1.05rem !important;
  color: #1B2A4A !important;
  border-left: 4px solid #E86B35;
  padding-left: 16px;
  margin-top: 8px;
}

/* ════════════════════════════════════════════
   SEKTION 6: SOCIAL PROOF
════════════════════════════════════════════ */
.proof-section {
  background: #1B2A4A;
  padding: 70px 0;
  text-align: center;
}

.proof-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.proof-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px 20px;
}

.proof-number {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #2ECC71;
  margin-bottom: 10px;
  line-height: 1.1;
}

.proof-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.source-note--light { color: rgba(255,255,255,0.45); }

/* ════════════════════════════════════════════
   SEKTION 7: PRODUKT
════════════════════════════════════════════ */
.product-section {
  background: #F4F6F9;
  padding: 70px 0;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.product-mockup img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.18));
}

.product-details h2 {
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: #1B2A4A;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: #2C3E50;
  line-height: 1.5;
}

.check {
  color: #2ECC71;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.compare-box {
  background: #fff;
  border-radius: 10px;
  padding: 22px 24px;
  border: 1px solid #e0e4ea;
}

.compare-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.compare-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #888;
}

.compare-x { color: #E74C3C; font-weight: 900; }

.compare-highlight {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1B2A4A;
  border-top: 1px solid #e0e4ea;
  padding-top: 12px;
}

.compare-highlight strong { color: #E86B35; font-size: 1.2em; }

/* ════════════════════════════════════════════
   SEKTION 8: PREIS & CTA
════════════════════════════════════════════ */
.pricing-section {
  background: #fff;
  padding: 80px 0;
}

.pricing-card {
  max-width: 620px;
  margin: 0 auto;
  border: 2px solid #1B2A4A;
  border-radius: 18px;
  padding: 48px 44px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(27,42,74,0.1);
}

.pricing-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 20px;
}

.pricing-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 8px;
}

.price-old {
  font-size: 1.4rem;
  font-weight: 700;
  color: #bbb;
  text-decoration: line-through;
}

.price-new {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #E86B35;
}

.pricing-sub {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 28px;
}

.trust-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  font-size: 0.9rem;
  color: #555;
  align-items: center;
}

.stefan-quote {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  background: #F4F6F9;
  border-radius: 10px;
  padding: 20px 22px;
  text-align: left;
}

.stefan-quote-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #E86B35;
}

.stefan-quote blockquote {
  font-size: 0.92rem;
  color: #2C3E50;
  font-style: italic;
  line-height: 1.6;
}

.stefan-quote cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: #1B2A4A;
  margin-top: 6px;
  font-size: 0.85rem;
}

/* ════════════════════════════════════════════
   SEKTION 9: FAQ
════════════════════════════════════════════ */
.faq-section {
  background: #F4F6F9;
  padding: 70px 0;
}

.faq-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #1B2A4A;
  margin-bottom: 36px;
  text-align: center;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', Helvetica, sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: #1B2A4A;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.faq-question:hover { background: #f8f9fb; }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 700;
  color: #E86B35;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 24px;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   SEKTION 10: FINALER CTA
════════════════════════════════════════════ */
.final-cta-section {
  background: #1B2A4A;
  padding: 80px 0;
  text-align: center;
}

.final-cta-container { max-width: 720px; }

.final-cta-urgency {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  color: #E86B35;
  margin-bottom: 20px;
}

.final-cta-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 16px;
}

.final-cta-section .btn-cta { margin: 28px auto 0; display: inline-block; }

.final-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: #111D35;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.footer-links a:hover { color: #E86B35; }

/* ════════════════════════════════════════════
   STICKY MOBILE CTA
════════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8000;
  padding: 10px 16px 14px;
  background: rgba(27,42,74,0.97);
  border-top: 2px solid #E86B35;
  backdrop-filter: blur(4px);
}

/* ════════════════════════════════════════════
   EXIT-INTENT POPUP
════════════════════════════════════════════ */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9000;
}

.exit-popup {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  padding: 44px 40px;
  max-width: 520px;
  width: 90%;
  z-index: 9001;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.exit-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  font-size: 1.2rem;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
}
.exit-close:hover { color: #333; }

.exit-pre {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E86B35;
  margin-bottom: 12px;
}

.exit-popup h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1B2A4A;
  margin-bottom: 12px;
  line-height: 1.35;
}

.exit-popup p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 24px;
}

/* ════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 280px; margin: 0 auto; }
  .trust-row { justify-content: center; }

  .stats-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 20px; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  .about-container { grid-template-columns: 1fr; }
  .about-image img { max-height: 340px; max-width: 320px; margin: 0 auto; }

  .proof-grid { grid-template-columns: repeat(2, 1fr); }

  .product-container { grid-template-columns: 1fr; text-align: center; }
  .product-mockup img { max-width: 260px; }
  .feature-list li { text-align: left; }
  .compare-box { text-align: left; }

  .pricing-card { padding: 36px 24px; }

  .footer-inner { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
════════════════════════════════════════════ */
@media (max-width: 600px) {
  .hero-section { padding: 40px 0 36px; }
  .hero-text h1 { font-size: 1.55rem; }
  .sub-headline { font-size: 0.95rem; }
  .btn-cta--large { font-size: 0.9rem; padding: 15px 22px; }
  .btn-cta--xl { font-size: 0.95rem; padding: 16px 24px; }

  .stats-section, .pain-section, .steps-section,
  .about-section, .proof-section, .product-section,
  .pricing-section, .faq-section, .final-cta-section { padding: 50px 0; }

  .steps-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }

  .stefan-quote { flex-direction: column; text-align: center; }

  .trust-row { flex-direction: column; align-items: center; }

  /* Show sticky CTA on mobile after hero */
  .sticky-cta { display: block; }

  .final-trust { flex-direction: column; align-items: center; gap: 8px; }
}

/* ════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
