/* =========================================================
   Ladestellenbonus.at — Design System
   ========================================================= */

:root {
  --green:       #2E8B57;
  --green-light: #3DAA6D;
  --green-dark:  #1F6B40;
  --blue:        #1A6FA8;
  --blue-light:  #2589CC;
  --amber:       #F0A500;
  --amber-dark:  #D08F00;
  --bg:          #F8F9FA;
  --bg-dark:     #EAECEF;
  --text:        #1E1E1E;
  --text-muted:  #5A6472;
  --white:       #FFFFFF;
  --radius:      10px;
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

/* ---- Typography ---- */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { color: var(--text-muted); }
a  { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Layout ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--green-dark); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-dark h2 { color: var(--white); }

/* ---- Nav ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--blue); }
.brand-green { color: var(--green); }
.brand-blue { color: #7ec8e3; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--text); }
.nav-links a:hover { color: var(--green); text-decoration: none; }
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s;
  white-space: nowrap;
  font-size: 0.92rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--green-dark) !important; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text);
  cursor: pointer;
  padding: 4px 8px;
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #0F4C2A 0%, #1A6FA8 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero-brand {
  font-size: clamp(1.6rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-brand-seal {
  position: relative;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(255,230,120,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 75%, rgba(80,50,0,0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, #daa520 0%, #b8860b 40%, #8b6914 70%, #6b4e0a 100%);
  box-shadow:
    inset 0 3px 8px rgba(255,235,140,0.5),
    inset 0 -4px 10px rgba(80,50,0,0.6),
    inset 2px 0 6px rgba(255,220,100,0.2),
    inset -2px 0 6px rgba(80,50,0,0.3),
    0 6px 20px rgba(100,70,0,0.5),
    0 2px 8px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.hero-brand-seal:hover {
  transform: scale(1.05);
  box-shadow:
    inset 0 3px 8px rgba(255,235,140,0.5),
    inset 0 -4px 10px rgba(80,50,0,0.6),
    inset 2px 0 6px rgba(255,220,100,0.2),
    inset -2px 0 6px rgba(80,50,0,0.3),
    0 8px 28px rgba(100,70,0,0.6),
    0 3px 12px rgba(0,0,0,0.3);
}
/* Raised inner rim */
.hero-brand-seal::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 2px solid rgba(255,225,100,0.4);
  box-shadow:
    inset 0 1px 2px rgba(255,240,160,0.5),
    inset 0 -1px 3px rgba(80,50,0,0.4),
    0 1px 2px rgba(80,50,0,0.3);
}
/* Highlight / gloss */
.hero-brand-seal::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 14px;
  width: 36px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(170deg, rgba(255,250,200,0.35) 0%, transparent 100%);
  transform: rotate(-15deg);
}
/* Embossed car logo */
.hero-brand-seal img {
  position: relative;
  z-index: 1;
  height: 52px;
  width: 52px;
  object-fit: contain;
  background: none;
  border-radius: 0;
  padding: 0;
  filter: brightness(0) invert(1) opacity(0.25) drop-shadow(1px 1px 0px rgba(80,50,0,0.6)) drop-shadow(-1px -1px 0px rgba(255,230,140,0.4));
  mix-blend-mode: luminosity;
  box-shadow: none;
}
.hero h1 { color: var(--white); max-width: 700px; }
.hero p   { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin: 20px 0 40px; max-width: 580px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none !important;
  border: none;
}
.btn-green  { background: var(--green);  color: var(--white); }
.btn-green:hover  { background: var(--green-dark); }
.btn-blue   { background: var(--blue);   color: var(--white); }
.btn-blue:hover   { background: #155d8f; }
.btn-amber  { background: linear-gradient(135deg, #d4a017, #e6b800, #d4a017);  color: var(--white); border: 1px solid #b8860b; }
.btn-amber:hover  { background: linear-gradient(135deg, #b8860b, #d4a017, #b8860b); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }

/* ---- Stats bar ---- */
/* ---- Stats Kacheln ---- */
.stats-bar {
  background: var(--bg);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-tile {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 28px 16px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.stat-tile:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  display: block;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* ---- Section header ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-tag.blue { background: var(--blue); }

/* ---- Benefit cards ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.card h3 { margin-bottom: 8px; color: var(--text); overflow-wrap: break-word; word-break: break-word; hyphens: auto; }

/* Dark section cards */
.section-dark .card {
  background: rgba(255,255,255,0.1);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.15);
}
.section-dark .card h3 { color: var(--white); }
.section-dark .card p  { color: rgba(255,255,255,0.75); }

/* ---- Calculator ---- */
.calculator {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 560px;
  margin: 0 auto;
}
.calculator h3 { margin-bottom: 24px; color: var(--text); text-align: center; }
.calc-toggle {
  display: flex;
  background: var(--bg);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 28px;
}
.calc-toggle button {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}
.calc-toggle button.active {
  background: var(--green);
  color: var(--white);
}
.calc-slider-wrap { margin-bottom: 24px; }
.calc-slider-wrap label {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.calc-slider-wrap label span { color: var(--green); font-size: 1rem; }
input[type=range] {
  width: 100%;
  accent-color: var(--green);
  height: 6px;
  cursor: pointer;
}
.calc-result {
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  color: var(--white);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin-bottom: 16px;
}
.calc-result .result-num {
  font-size: 3rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.calc-result .result-label { font-size: 0.9rem; opacity: 0.85; margin-top: 6px; }
.calc-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ---- How it works ---- */
.steps { display: flex; gap: 0; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.6% + 16px);
  right: calc(16.6% + 16px);
  height: 2px;
  background: var(--bg-dark);
}
.step { flex: 1; text-align: center; padding: 0 16px; position: relative; }
.step-num {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step h3 { margin-bottom: 8px; }

/* ---- Contact form ---- */
.contact-form { max-width: 640px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid #D1D9E0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* ---- Footer ---- */
footer {
  background: #0F1F13;
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-desc { font-size: 0.88rem; line-height: 1.6; }
.footer-col h4 { color: var(--white); font-size: 0.88rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }

/* ---- FAQ ---- */
.faq-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 2px solid #E2E8F0;
  padding-bottom: 0;
}
.faq-tab {
  padding: 12px 28px;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.faq-tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
}
.faq-item {
  border-bottom: 1px solid #E2E8F0;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q span {
  font-size: 1.4rem;
  color: var(--green);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 20px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-a p { margin-bottom: 12px; }
.faq-a ul { padding-left: 20px; margin-bottom: 12px; }
.faq-a li { margin-bottom: 6px; }
.faq-item.open .faq-a { display: block; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-tile { padding: 20px 12px 18px; }
  .stat-num { font-size: 1.5rem; }
  /* Center the 5th (orphan) tile */
  .stat-tile:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 50%; justify-self: center; }
  .steps { flex-direction: column; gap: 32px; }
  .steps::before { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 2px solid #E2E8F0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 16px 24px;
    border-bottom: 1px solid #F0F2F5;
    font-size: 1rem;
  }
  .nav-cta {
    padding: 6px 14px;
    font-size: 0.82rem;
    margin-left: auto;
    margin-right: 12px;
  }
  .hero-brand {
    gap: 8px;
  }
  .hero-brand-seal {
    width: 56px;
    height: 56px;
  }
  .hero-brand-seal img {
    height: 32px;
    width: 32px;
  }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
}

/* ---- Partner Offers (Angebote) ---- */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 0;
}
.filter-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-right: 8px;
}
.filter-btn {
  padding: 8px 16px;
  border: 1.5px solid #D1D9E0;
  background: var(--white);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.partner-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.partner-logo-wrap {
  min-width: 72px;
  min-height: 72px;
  max-width: 160px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  padding: 8px;
}
.partner-logo-wrap img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-logo-placeholder {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.2;
  padding: 4px;
}
.partner-card-header h3 { font-size: 1.1rem; margin-bottom: 2px; }
.partner-subtitle { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

.partner-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--bg);
  color: var(--text-muted);
  border: 1px solid #E2E8F0;
}
.tag-green {
  background: #E8F5EC;
  color: var(--green);
  border-color: #C4E4CF;
}

.partner-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #F0F2F5;
}
.partner-card-footer .btn {
  padding: 10px 20px;
  font-size: 0.88rem;
}
.partner-more {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
}

/* Direct registration fallback */
.direct-fallback {
  margin-top: 16px;
}
.fallback-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #FFF8E7 0%, #FFF3D1 100%);
  border: 2px solid var(--amber);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.fallback-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}
.fallback-inner h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text);
}
.fallback-inner p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}
.fallback-inner .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .filter-bar { justify-content: center; }
  .partner-grid { grid-template-columns: 1fr; }
  .fallback-inner { flex-direction: column; text-align: center; gap: 16px; }
}

/* ---- Document list (Ladestellen) ---- */
.doc-list {
  max-width: 720px;
  margin: 0 auto;
}
.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #E2E8F0;
}
.doc-item:last-child { border-bottom: none; }
.doc-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.doc-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.doc-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ---- Download cards (elSa) ---- */
.download-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none !important;
  color: var(--text);
  border: 2px solid transparent;
}
.download-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.download-icon { font-size: 1.6rem; flex-shrink: 0; }
.download-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.download-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.download-ext {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  background: #E8F5EC;
  padding: 4px 10px;
  border-radius: 12px;
  flex-shrink: 0;
}

/* ---- Email CTA (Ladestellen) ---- */
.email-cta {
  text-align: center;
  margin-bottom: 16px;
}
.email-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  color: var(--white) !important;
  padding: 20px 40px;
  border-radius: var(--radius);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.email-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.email-icon { font-size: 1.5rem; }
.email-addr { letter-spacing: 0.3px; }
.email-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Document evidence box ---- */
.doc-section-intro {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}
.doc-section-intro p {
  font-size: 0.92rem;
  color: var(--text-muted);
}
.doc-evidence {
  max-width: 720px;
  margin: 24px auto 0;
  background: #F0F7F3;
  border: 1px solid #C4E4CF;
  border-radius: var(--radius);
  padding: 20px 24px;
}
.doc-evidence h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.doc-evidence ul {
  padding-left: 20px;
  margin: 0;
}
.doc-evidence li {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.6;
}
.doc-evidence li:last-child { margin-bottom: 0; }

/* ---- Legal pages (AGB, Datenschutz) ---- */
.legal-page {
  max-width: 760px;
}
.legal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.legal-cpi-logo {
  height: 44px;
  width: auto;
}
.legal-service-note {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

.legal-toc {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
  border: 1px solid #E2E8F0;
}
.legal-toc h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--text);
}
.legal-toc ol {
  padding-left: 20px;
  margin: 0;
}
.legal-toc li {
  margin-bottom: 6px;
  font-size: 0.88rem;
}
.legal-toc a {
  color: var(--blue);
  font-weight: 500;
}
.legal-toc a:hover {
  color: var(--green);
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid #E2E8F0;
  color: var(--text);
}
.legal-page h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-page p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal-page li {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.legal-footer {
  margin-top: 48px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #E2E8F0;
}
.legal-footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.legal-footer-logo {
  height: 36px;
  width: auto;
}
.legal-footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 2px;
}

/* ---- Cookie consent banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(15,31,19,0.97);
  color: var(--white);
  backdrop-filter: blur(12px);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.cookie-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
}
.cookie-text h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white);
}
.cookie-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0 0 16px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.cookie-btn {
  padding: 10px 20px !important;
  font-size: 0.88rem !important;
}
.cookie-settings-link {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 8px 12px;
}
.cookie-settings-link:hover { color: var(--white); }
.cookie-details {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
}
.cookie-option input[type=checkbox] {
  accent-color: var(--green);
  width: 18px;
  height: 18px;
}
.cookie-option span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.cookie-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}
.cookie-legal a { color: rgba(255,255,255,0.6); }
.cookie-legal a:hover { color: var(--white); }

@media (max-width: 768px) {
  .legal-header { flex-direction: column; text-align: center; }
  .legal-footer-inner { flex-direction: column; text-align: center; }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { width: 100% !important; }
}

/* Registration tile selector (/angebote/registrieren) */
.reg-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.reg-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.reg-tile:hover {
  border-color: var(--primary, #22c55e);
  box-shadow: 0 4px 16px rgba(34,197,94,0.15);
  text-decoration: none;
}
.reg-tile-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.reg-tile h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}
.reg-tile p {
  font-size: 0.9rem;
  color: var(--text-muted, #6b7280);
  margin: 0 0 12px;
}
