/* ===== RESET & VARIABLES (ersatz-pilot.de style) ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --primary: #014c94;
  --primary-dark: #002950;
  --ep-blue: #003399;
  --accent: #f5c518;
  --ep-yellow: #FFE314;
  --text: #1e293b;
  --muted: #64748b;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;
  --green: #16a34a;
  --red: #dc2626;
  --shadow-card: 0 4px 24px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.1);
  --shadow-btn: 0 4px 16px rgba(1,76,148,.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 50px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

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

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

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV (glassmorphism) ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-cta {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  box-shadow: var(--shadow-btn);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(1,76,148,.3);
}

.nav-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ===== ANIMATIONS ===== */
@keyframes nIn { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes nOut { from { transform: translateY(0); opacity: 1; } to { transform: translateY(-30px); opacity: 0; } }
@keyframes blink { 50% { opacity: 0; } }

/* Hero mobile logo – hidden on desktop */
.hero-logo-mobile { display: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 110vh;
  overflow: visible;
  background: #fff;
}

/* Full-width background photo */
.hero-bg {
  position: absolute;
  inset: 0 0 -4px 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: calc(100% + 4px);
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Soft overlay on the left side for text readability */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(210, 230, 248, .88) 0%,
    rgba(210, 230, 248, .78) 25%,
    rgba(210, 230, 248, .45) 45%,
    rgba(210, 230, 248, .1) 60%,
    transparent 75%
  );
  z-index: 2;
}

/* Fade to white at the bottom */
.hero-fade {
  position: absolute;
  bottom: -4px;
  left: -1px;
  right: -1px;
  height: 285px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,255,255,.08) 15%,
    rgba(255,255,255,.25) 35%,
    rgba(255,255,255,.5) 55%,
    rgba(255,255,255,.78) 72%,
    rgba(255,255,255,.95) 86%,
    #fff 94%,
    #fff 100%
  );
  z-index: 8;
  pointer-events: none;
}

/* Content layer */
.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 24px 60px;
}

/* Text block – left side */
.hero-text {
  max-width: 520px;
}
.hero-text h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-text h1 .highlight { color: var(--primary); }

.hero-subtitle {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.section-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ep-blue);
  margin-bottom: 8px;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(1,76,148,.25);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(1,76,148,.3); }
.btn-secondary {
  background: rgba(255,255,255,.7);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,.9); }

.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 500; color: #475569; }
.trust-stars { color: var(--accent); font-size: .95rem; letter-spacing: 1px; }
.trust-sep { width: 1px; height: 16px; background: rgba(100,116,139,.3); }

/* ===== GLASS PHONE FRAME ===== */
.hero-phone {
  position: absolute;
  z-index: 7;
  right: 12%;
  bottom: 8%;
  width: 320px;
  height: 560px;
  border-radius: 36px 36px 0 0;
  background: rgba(0, 15, 40, .12);
  border: 1.5px solid rgba(255,255,255,.35);
  border-bottom: none;
  box-shadow: 0 0 80px rgba(0,0,0,.1), inset 0 0 0 1px rgba(255,255,255,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
}

.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 0;
  min-height: 0;
  overflow: hidden;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  opacity: .85;
}
.phone-status .icons { display: flex; gap: 4px; }

/* Lock screen – hidden on desktop, shown on mobile */
.lock-screen { display: none; }
.phone-status .icons svg { width: 13px; height: 13px; fill: #fff; }

/* Hero inbox (glass phone style) */
.hero-inbox {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 14px 14px 10px;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  margin-bottom: 10px;
}
.hero-inbox-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.hero-inbox-count {
  background: var(--ep-blue);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.hero-inbox-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-mail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 6px;
  border-radius: 8px;
}
.hero-mail-blur {
  opacity: .4;
  filter: blur(.5px);
}
.hero-mail-highlight {
  background: rgba(0,51,153,.05);
  border: 1px solid rgba(0,51,153,.1);
}
.hero-mail-dot {
  width: 7px; height: 7px; min-width: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,.1);
  margin-top: 5px;
}
.hero-mail-dot-active {
  background: var(--ep-blue);
}
.hero-mail-content { flex: 1; min-width: 0; }
.hero-mail-from {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  color: var(--text);
}
.hero-mail-subject {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  color: var(--text);
  margin: 1px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-mail-preview {
  display: block;
  font-size: .64rem;
  color: var(--muted);
}
.hero-mail-time {
  font-size: .58rem;
  color: var(--muted);
  white-space: nowrap;
  margin-top: 4px;
}
.hero-mail-tags {
  display: flex;
  gap: 5px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.hero-tag {
  font-size: .58rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.hero-tag-warn {
  background: #fef2f2;
  color: #dc2626;
}
.hero-tag-money {
  background: #f0fdf4;
  color: #16a34a;
}
.hero-ghost-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}
.ghost-bar {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(0,0,0,.06);
}

/* Hero phone push notification */
.hero-notif-card {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.hero-notif-icon {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 10px;
  background: var(--ep-blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-notif-icon svg { width: 20px; height: 20px; }
.hero-notif-body { flex: 1; min-width: 0; }
.hero-notif-app {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero-notif-title {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin: 2px 0;
}
.hero-notif-amount {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #16a34a;
}

/* ===== BENTO TRUST GRID ===== */
.bento-section {
  padding: 80px 24px;
  background: #fff;
  position: relative;
  z-index: 10;
}
.bento-section .section-title {
  text-align: center;
  margin-bottom: 8px;
}
.bento-section .section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
  max-width: 540px;
  margin: 0 auto 32px;
}
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.bento-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
}
/* Row 1: Kundenbewertungen (volle Breite) */
.bento-rating {
  grid-column: 1 / 3;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 36px 40px;
}
.bento-rating .rating-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 90px;
}
.bento-rating .big-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--ep-blue);
  line-height: 1;
}
.bento-rating .stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #f59e0b;
}
.bento-rating .source-label {
  font-size: .68rem;
  color: var(--muted);
  margin-top: 2px;
}
.bento-rating .source-label a {
  color: var(--ep-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bento-rating .bar-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  max-width: 300px;
}
.bento-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  color: var(--muted);
}
.bento-bar-row .bar-star { min-width: 10px; text-align: right; }
.bento-bar-row .pct { min-width: 32px; text-align: right; font-size: .65rem; }
.bento-bar-track {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(0,0,0,.04);
}
.bento-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--ep-blue);
}
/* Google Reviews block */
.bento-rating .google-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 90px;
}
.bento-rating .google-block .big-number { font-size: 3.4rem; }
.bento-rating .google-block .stars { color: #fbbc04; }
.google-icon {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.google-icon svg { width: 14px; height: 14px; }
.google-icon a {
  font-size: .68rem;
  color: var(--ep-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* Row 2 links: Direkte Auszahlung */
.bento-instant {
  grid-column: 1 / 2;
  text-align: center;
  align-items: center;
  gap: 10px;
  background: var(--ep-blue);
  color: #fff;
  padding: 36px 24px;
}
.bento-instant .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-instant h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
}
.bento-instant p {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
/* Row 2 rechts: Provision */
.bento-fee {
  grid-column: 2 / 3;
  text-align: center;
  align-items: center;
  gap: 4px;
  padding: 36px 24px;
}
.bento-fee .fee-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: .02em;
}
.bento-fee .big-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--ep-blue);
  line-height: 1;
  margin: 4px 0 2px;
}
.bento-fee .fee-prefix {
  font-size: .75rem;
  font-weight: 500;
  color: var(--muted);
}
.bento-fee .fee-sub {
  font-size: .8rem;
  color: var(--text);
  font-weight: 600;
}
.bento-fee .fee-note {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 2px;
}
/* Row 3: Testsieger (volle Breite, flach) */
.bento-award {
  grid-column: 1 / 3;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
}
.bento-award .award-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: var(--ep-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-award .award-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bento-award .award-content { flex: 1; }
.bento-award h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 3px;
}
.bento-award p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5;
}
.bento-award a {
  color: var(--ep-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== BUTTONS (pill style) ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  box-shadow: var(--shadow-btn);
}

.cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(1,76,148,.3);
  color: var(--white);
}

.cta-btn-filled {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  box-shadow: var(--shadow-btn);
}

.cta-btn-filled:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(1,76,148,.3);
}

/* ===== SECTION SHARED ===== */
.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 56px;
}

/* ===== HOW IT WORKS ===== */
.section-hiw {
  padding: 100px 0 80px;
  position: relative;
  z-index: 2;
  margin-top: -4px;
  background: #fff;
}

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

.hiw-card {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hiw-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hiw-card-img {
  background: var(--gray-50);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.hiw-image {
  max-width: 90%;
  height: auto;
  transform: scale(1.15);
}

.hiw-card-content {
  padding: 28px;
}

.hiw-card-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.hiw-card-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== ARTICLE SECTION ===== */
.section-article {
  padding: 60px 0;
  background: var(--gray-50);
}

.article-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(0,0,0,.08);
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.article-card h2 {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 32px;
}

.article-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.article-author {
  text-align: center;
}

.article-author-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  background: var(--gray-200);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-author h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.article-author p {
  font-size: 12px;
  color: var(--muted);
}

.article-text p {
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.7;
}

.article-text ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.article-text li {
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 4px;
}

/* ===== COMPARISON ===== */
.section-comparison {
  padding: 100px 0 80px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.comparison-card.is-positive {
  border: 2px solid var(--primary);
  background: rgba(0,51,153,.02);
  position: relative;
}

.comparison-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 24px;
}

.comparison-card h3.text-red {
  color: var(--red);
}

.comparison-card h3.text-blue {
  color: var(--primary);
}

.comparison-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.comparison-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.comparison-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.comparison-note {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 8px;
}

.comparison-note h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.comparison-note p {
  font-size: 13px;
  color: var(--gray-700);
}

.comparison-note .underline-bold {
  font-weight: 700;
  text-decoration: underline;
}

/* ===== TABS / OFFER ===== */
.section-offer {
  padding: 60px 0 100px;
  background: var(--gray-50);
}

.tabs-menu {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,.08);
  border-radius: var(--radius-pill);
  padding: 5px;
  width: fit-content;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.tab-link {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--muted);
  border: none;
  background: transparent;
  text-align: center;
}

.tab-link.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.tab-content {
  text-align: center;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-graphic {
  max-width: 700px;
  margin: 0 auto;
}

/* ===== REVIEWS SLIDER ===== */
.section-reviews {
  padding: 80px 24px;
  background: var(--gray-50);
}

.section-reviews .section-title {
  margin-bottom: 8px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-trustpilot-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.reviews-rating-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.reviews-slider-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.reviews-slider-wrap::before,
.reviews-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 1;
  pointer-events: none;
}

.reviews-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--gray-50), transparent);
}

.reviews-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--gray-50), transparent);
}

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.review-author {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.review-date {
  font-size: 13px;
  color: var(--muted);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin: 12px 0;
}

.review-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.review-text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.08);
  background: var(--white);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s;
  color: var(--gray-700);
  flex-shrink: 0;
}

.reviews-arrow:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%) scale(1.05);
}

.reviews-arrow--left {
  left: -22px;
}

.reviews-arrow--right {
  right: -22px;
}

/* ===== FAQ ===== */
.section-faq {
  padding: 100px 0 80px;
  background: #fff;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
}

.faq-question h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--muted);
  border-radius: 1px;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  transition: transform 0.3s;
}

.faq-item.is-active .faq-icon {
  border-color: var(--primary);
}

.faq-item.is-active .faq-icon::before,
.faq-item.is-active .faq-icon::after {
  background: var(--primary);
}

.faq-item.is-active .faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s;
  opacity: 0;
}

.faq-item.is-active .faq-answer {
  opacity: 1;
}

.faq-answer-content {
  padding-bottom: 22px;
}

.faq-answer-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

/* ===== FINAL CTA ===== */
.section-final-cta {
  padding: 80px 24px;
  background: var(--gray-50);
}
.final-cta-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--ep-blue);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0,51,153,.2);
}
.final-cta-content h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.final-cta-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.final-cta-desc {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-card .cta-btn {
  background: #fff;
  color: var(--ep-blue);
  font-size: 1.05rem;
  padding: 18px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.final-cta-card .cta-btn:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,.2);
}
.final-cta-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  flex-wrap: wrap;
}
.final-cta-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.25);
}
@media (max-width: 768px) {
  .final-cta-card { padding: 48px 24px; border-radius: 20px; }
  .final-cta-card .cta-btn { padding: 16px 28px; font-size: .95rem; }
  .final-cta-trust { gap: 10px; font-size: .75rem; }
  .final-cta-sep { display: none; }
  .final-cta-trust span:not(.final-cta-sep) { background: rgba(255,255,255,.1); padding: 4px 10px; border-radius: 6px; }
}

/* ===== FOOTER (dark blue) ===== */
.footer {
  background: var(--ep-blue);
  padding: 48px 0 32px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

/* Widerrufsbutton (§ 356a BGB) – hervorgehoben, klar abgegrenzt von den Legal-Links */
.footer-widerruf {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.footer-widerruf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--ep-blue);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 999px;
  border: 2px solid var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.20);
  transition: background 0.15s, color 0.15s;
}

.footer-widerruf-btn:hover {
  background: transparent;
  color: var(--white);
}

.footer-widerruf-btn:focus-visible {
  outline: 3px solid #ffd633;
  outline-offset: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-phone { right: 8%; width: 290px; height: 500px; }
}

@media (max-width: 1024px) {
  .hero-phone { right: 4%; width: 260px; height: 460px; }
  .hero-text { max-width: 460px; }
}

@media (max-width: 768px) {
  /* Hero responsive */
  .hero { min-height: auto; overflow: visible; }

  .hero-bg img {
    object-position: center 15%;
  }
  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(210, 230, 248, .92) 0%,
      rgba(210, 230, 248, .75) 20%,
      rgba(210, 230, 248, .2) 38%,
      transparent 48%
    );
  }

  /* Hide nav on mobile by default, JS adds nav-visible-mobile after hero scroll */
  .nav { transform: translateY(-100%); opacity: 0; pointer-events: none; transition: transform .3s ease, opacity .3s ease; }
  .nav.nav-visible-mobile { transform: translateY(0); opacity: 1; pointer-events: auto; }

  .nav-cta {
    font-size: 12px;
    padding: 10px 18px;
    white-space: nowrap;
  }

  /* Hero mobile logo */
  .hero-logo-mobile {
    display: block;
    position: relative;
    z-index: 20;
    text-align: center;
    padding: 14px 0 16px;
  }
  .hero-logo-mobile img {
    height: 26px;
    width: auto;
  }

  .hero-inner {
    padding: 0 20px 0;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-text .section-label { margin-bottom: 4px; font-size: .72rem; }
  .hero-text h1 {
    font-size: 1.45rem;
    line-height: 1.15;
    margin-bottom: 8px;
  }
  .hero-subtitle {
    font-size: .88rem;
    line-height: 1.45;
    margin-bottom: 14px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons { justify-content: center; margin-bottom: 10px; }
  .btn-secondary { display: none; }
  .btn-primary { padding: 13px 28px; font-size: .92rem; }

  .hero-trust {
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
    margin-bottom: 16px;
  }
  .trust-badge { font-size: .75rem; gap: 3px; }
  .trust-stars { font-size: .75rem; letter-spacing: 0; }
  .trust-sep { height: 12px; }

  /* Mobile phone frame */
  .hero-phone {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 10;
    width: calc(100% - 56px);
    max-width: 300px;
    aspect-ratio: 9 / 16;
    height: auto;
    margin: 20px auto 0;
    border-radius: 28px;
    border: 2px solid rgba(100,110,120,.4);
    border-bottom: 2px solid rgba(100,110,120,.4);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 8px 40px rgba(0,0,0,.15), inset 0 0 0 1px rgba(255,255,255,.1);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .phone-screen {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    height: 100%;
  }
  .phone-status { display: none; }

  /* Lock screen – centered in free space above messages */
  .lock-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    pointer-events: none;
    z-index: 2;
  }
  .lock-time {
    font-family: 'DM Sans', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: rgba(255,255,255,.85);
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 2px 16px rgba(0,0,0,.15);
  }
  .lock-date {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.6);
    margin-top: 4px;
    text-shadow: 0 1px 8px rgba(0,0,0,.12);
  }

  /* Show inbox + notification on mobile */
  .hero-inbox {
    margin: 0 12px 6px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 10px 10px 6px;
    border: 1px solid rgba(255,255,255,.5);
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
  }
  .hero-inbox-header {
    font-size: .75rem;
    margin-bottom: 6px;
    color: var(--primary-dark);
  }
  .hero-inbox-count { width: 16px; height: 16px; font-size: .55rem; }
  .hero-mail { padding: 5px 4px; }
  .hero-mail-from { font-size: .7rem; }
  .hero-mail-subject { font-size: .65rem; }
  .hero-mail-preview { font-size: .6rem; }
  .hero-mail-time { font-size: .55rem; }
  .hero-tag { font-size: .52rem; padding: 2px 6px; }
  .ghost-bar { height: 5px !important; }
  .hero-mail-dot { width: 5px; height: 5px; min-width: 5px; }

  .hero-notif-card {
    margin: 0 12px 12px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.5);
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    padding: 10px 12px;
    border-radius: 12px;
  }
  .hero-notif-app { color: var(--muted) !important; font-size: .55rem !important; }
  .hero-notif-title { color: var(--text) !important; font-size: .75rem !important; }
  .hero-notif-amount { font-size: .9rem !important; color: #16a34a !important; }
  .hero-notif-icon { width: 32px !important; height: 32px !important; min-width: 32px !important; background: var(--ep-blue) !important; border: none !important; border-radius: 8px !important; }
  .hero-notif-icon svg { width: 16px !important; height: 16px !important; stroke: #fff !important; }

  .hero-fade { height: 180px; }

  /* Bento responsive */
  .bento-section { padding: 48px 20px; }
  .bento { gap: 12px; }
  .bento-rating {
    grid-column: 1 / 3;
    flex-direction: row;
    padding: 24px 20px;
    gap: 20px;
  }
  .bento-rating .big-number { font-size: 2.4rem; }
  .bento-rating .stars { font-size: 1rem; }
  .bento-rating .bar-group { max-width: 100%; flex: 1; }
  .bento-rating .google-block { display: none; }
  .bento-instant { padding: 24px 16px; }
  .bento-instant h3 { font-size: 1rem; }
  .bento-instant p { font-size: .72rem; }
  .bento-instant .icon-circle { width: 40px; height: 40px; }
  .bento-fee { padding: 24px 16px; }
  .bento-fee .big-number { font-size: 2.4rem; }
  .bento-fee .fee-sub { font-size: .72rem; }
  .bento-fee .fee-note { font-size: .65rem; }
  .bento-award { grid-column: 1 / 3; padding: 20px 20px; }

  /* Article card responsive */
  .section-article { padding: 40px 0; }
  .article-card { padding: 24px 20px; }
  .article-card h2 { font-size: 1.35rem; margin-bottom: 24px; }

  /* Other responsive */
  .hiw-grid {
    grid-template-columns: 1fr;
  }

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

  .article-content {
    grid-template-columns: 1fr;
  }

  .article-author {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .article-author-img {
    margin: 0;
    width: 70px;
    height: 70px;
  }

  .tab-graphic {
    max-width: none;
    margin-left: -24px;
    margin-right: -24px;
  }

  .tab-graphic img {
    width: 100%;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .faq-question h3 {
    font-size: 14px;
  }

  .faq-question {
    padding: 16px 0;
  }

  .reviews-trustpilot-link {
    flex-direction: column;
    gap: 8px;
  }

  .review-card {
    flex: 0 0 calc(100% - 16px);
  }

  .reviews-arrow {
    display: none;
  }

  .reviews-track {
    padding: 0 4px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .hero-inner { padding: 0 16px 0; }
  .hero-text h1 { font-size: 1.45rem; }
  .btn-primary { width: 100%; justify-content: center; }

  .hero-phone {
    width: calc(100% - 32px);
    max-width: 320px;
    border-radius: 28px;
  }
}
