/* ================================================================
   FAHRSCHULE PEACH – Globales Design-System
   Zielgruppe: Premium, ruhig, professionell
   Palette: Anthrazit/Schwarz + Orange/Pfirsich (Logo-Farben)
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Hintergrund-Palette */
  --bg-base:      #141414;   /* tiefstes Schwarz */
  --bg-surface:   #1c1c1c;   /* Karten-Hintergrund */
  --bg-elevated:  #242424;   /* erhöhte Elemente */
  --bg-border:    #2e2e2e;   /* subtile Trennlinien */

  /* Logo-Farben */
  --peach:        #FF8C42;   /* Orange */
  --peach-light:  #FFB07C;   /* helles Orange */
  --peach-rose:   #E8635A;   /* Pfirsich-Rosa */
  --peach-green:  #7CB87A;   /* Blatt-Grün (Akzent) */

  /* Gradient */
  --grad-peach:   linear-gradient(135deg, #FF8C42 0%, #E8635A 100%);
  --grad-subtle:  linear-gradient(135deg, #FF8C42 0%, #FFB07C 100%);

  /* Text */
  --text-primary:   #F0EDE8;   /* warm-weiß */
  --text-secondary: #A09890;   /* gedämpftes Beige */
  --text-muted:     #6A6260;   /* sehr gedämpft */
  --text-accent:    #FF8C42;   /* Orange */

  /* Typografie */
  --font-body:    'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Abstände & Radien */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Schatten */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.5);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 32px rgba(255,140,66,0.18);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* Anthrazit + subtile weißliche Noise-Textur + sanfte Farbakzente */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 20% 0%, rgba(255,140,66,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(232,99,90,0.04) 0%, transparent 60%);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── TYPOGRAFIE ──────────────────────────────────────────────── */
.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 14px;
}
.text-center { text-align: center; }
.text-gradient {
  background: var(--grad-peach);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--grad-peach);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,140,66,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,140,66,0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--bg-border);
}
.btn-ghost:hover {
  border-color: var(--peach);
  color: var(--peach);
  transform: translateY(-2px);
}
.btn-outline-peach {
  background: transparent;
  color: var(--peach);
  border-color: var(--peach);
}
.btn-outline-peach:hover {
  background: rgba(255,140,66,0.1);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }

/* ── STICKY CTA BAR (auf jeder Seite) ───────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.sticky-cta .btn { box-shadow: var(--shadow-lg); }

/* ── NAVIGATION ──────────────────────────────────────────────── */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 800;
  background: rgba(20,20,20,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bg-border);
}
nav.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  overflow: visible;
}
.nav-logo img {
  height: 44px;
  width: auto;
  max-width: 44px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  overflow: visible;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  white-space: nowrap;
}
.nav-logo-text span {
  color: var(--peach);
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--peach);
  background: rgba(255,140,66,0.08);
}
.nav-cta { display: flex; gap: 10px; }
.nav-hamburger { display: none; cursor: pointer; }

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: rgba(255,140,66,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.card-icon {
  width: 52px; height: 52px;
  background: rgba(255,140,66,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,140,66,0.2);
}

/* ── DIVIDER ─────────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--bg-border);
  margin: 0;
}

/* ── HIGHLIGHT BOX ───────────────────────────────────────────── */
.highlight-box {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(255,140,66,0.09) 0%, rgba(232,99,90,0.07) 100%);
  border: 1px solid rgba(255,140,66,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
}

/* ── PRICE TAG ───────────────────────────────────────────────── */
.price-tag {
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--grad-peach);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.price-tag-sm {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--peach);
}

/* ── TABLE ───────────────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.data-table thead tr {
  background: rgba(255,140,66,0.1);
  border-bottom: 1px solid rgba(255,140,66,0.25);
}
.data-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  color: var(--peach);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.data-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--bg-border);
  color: var(--text-secondary);
}
.data-table td:first-child { color: var(--text-primary); font-weight: 500; }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.data-table .val { color: var(--peach); font-weight: 700; }
.data-table .incl { color: var(--peach-green); font-weight: 600; }
.data-table .free { color: var(--peach-green); font-weight: 600; }

/* ── FORM ────────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--bg-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--peach); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--bg-elevated); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--bg-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  border-top: 1px solid var(--bg-border);
  padding: 56px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo img { height: 60px; width: auto; max-width: 200px; object-fit: contain; margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--peach); }
.footer-bottom {
  border-top: 1px solid var(--bg-border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--peach); }

/* ── SOCIAL MEDIA ────────────────────────────────────────────── */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  color: var(--text-secondary);
  transition: all 0.25s ease;
  font-size: 0;
}
.social-links a:hover {
  border-color: var(--peach);
  background: rgba(255,140,66,0.12);
  color: var(--peach);
  transform: translateY(-2px);
}
.social-links a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.social-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  padding: 56px 0;
}
.social-section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.social-section-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.social-section-text p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.social-section-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.social-btn-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(220,39,67,0.3);
}
.social-btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220,39,67,0.45);
}
.social-btn-tiktok {
  background: #010101;
  color: #fff;
  border-color: #333;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.social-btn-tiktok:hover {
  transform: translateY(-2px);
  border-color: #69C9D0;
  box-shadow: 0 8px 28px rgba(105,201,208,0.3);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url('images/hero_driving.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,14,0.88) 0%, rgba(14,14,14,0.70) 50%, rgba(14,14,14,0.55) 100%);
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,140,66,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,99,90,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── PAGE HERO (Unterseiten) ─────────────────────────────────── */
.page-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--bg-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,140,66,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── GRID HELPERS ────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── BADGE ───────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,140,66,0.1);
  border: 1px solid rgba(255,140,66,0.25);
  color: var(--peach);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* ── QUOTE ───────────────────────────────────────────────────── */
.quote-block {
  border-left: 3px solid var(--peach);
  padding: 16px 24px;
  background: rgba(255,140,66,0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.75;
}

/* ── STEP LIST ───────────────────────────────────────────────── */
.step-list { list-style: none; counter-reset: steps; }
.step-list li {
  counter-increment: steps;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--bg-border);
}
.step-list li:last-child { border-bottom: none; }
.step-list li::before {
  content: counter(steps);
  min-width: 36px; height: 36px;
  background: var(--grad-peach);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── CHECK LIST ──────────────────────────────────────────────── */
.check-list { list-style: none; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.check-list li::before {
  content: '✓';
  color: var(--peach);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-list.negative li::before { content: '✕'; color: var(--peach-rose); }

/* ── CALENDLY WRAPPER ────────────────────────────────────────── */
.calendly-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */

/* Hamburger Icon */
.nav-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14,14,14,0.98);
  backdrop-filter: blur(20px);
  z-index: 799;
  overflow-y: auto;
  padding: 32px 24px 48px;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--bg-border);
  transition: color 0.2s;
  text-decoration: none;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--peach); }
.mobile-menu .mobile-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu .mobile-cta a {
  text-align: center;
  border-bottom: none;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 1rem;
}

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta { gap: 6px; }
  .nav-cta .btn-ghost { display: none; }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  /* Über-mich: sticky Foto-Container auf Mobile deaktivieren */
  [style*="position:sticky"], [style*="position: sticky"],
  .profile-sticky { position: relative !important; top: auto !important; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 40px 0; }
  .display-title { font-size: 2.4rem; line-height: 1.15; }
  .section { padding: 56px 0; }
  .page-hero { padding: 56px 0 40px; }
  .page-hero-img { padding: 80px 0 56px; }
  .social-section { padding: 40px 0; }
  .social-section-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .social-section-buttons { width: 100%; }
  .social-btn { flex: 1; justify-content: center; }
}

@media (max-width: 680px) {
  /* Navigation */
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-hamburger { display: flex; }
  nav.main-nav { height: 60px; }
  .nav-logo img { height: 38px; max-width: 38px; }
  .nav-logo-text { font-size: 0.9rem; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Typography */
  .display-title { font-size: 2rem; line-height: 1.15; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.15rem; }

  /* Sections */
  .section { padding: 48px 0; }
  .page-hero { padding: 48px 0 32px; }
  .page-hero-img { padding: 64px 0 48px; }

  /* Hero */
  .hero { min-height: 85vh; background-attachment: scroll; }
  .hero-content { padding: 32px 0; }

  /* Cards */
  .card { padding: 24px 20px; }

  /* Sticky CTA */
  .sticky-cta {
    bottom: 12px;
    right: 12px;
    flex-direction: column;
    gap: 8px;
  }
  .sticky-cta .btn { font-size: 0.78rem; padding: 10px 14px; }

  /* Buttons */
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }

  /* Section titles */
  .section-label { font-size: 0.7rem; }
  .section-title { font-size: 1.5rem; }

  /* Announcement bar */
  .announcement-bar { font-size: 0.78rem; padding: 10px 16px; }
  .announcement-bar a { display: none; }

  /* Footer */
  .footer-logo img { height: 48px; }
  .footer-col h4 { margin-top: 8px; }

  /* Social section */
  .social-section { padding: 36px 0; }
  .social-section-text h3 { font-size: 1.2rem; }
  .social-section-inner { flex-direction: column; align-items: flex-start; }
  .social-btn { width: 100%; justify-content: center; }

  /* Images */
  .img-section { height: 220px; }
  .img-section-full { height: 200px; }

  /* Kontakt-Karten */
  .contact-grid { grid-template-columns: 1fr !important; }

  /* Preistabellen */
  .price-table { font-size: 0.85rem; }
  /* Datentabelle scrollbar auf Mobil */
  .table-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    position: relative;
  }
  .data-table {
    min-width: 560px;
  }
  .data-table th, .data-table td {
    padding: 10px 10px;
    font-size: 0.8rem;
  }
  /* Erste Spalte (Leistung) fixiert beim horizontalen Scrollen */
  .data-table td:first-child,
  .data-table th:first-child {
    position: sticky;
    left: 0;
    background: var(--bg-surface);
    z-index: 2;
    box-shadow: 2px 0 6px rgba(0,0,0,0.25);
  }
  .data-table thead th:first-child {
    background: var(--bg-surface);
  }
  /* Scroll-Hinweis */
  .table-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
    opacity: 0.7;
  }
}

/* ── SCROLL-TO-TOP ───────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 850;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-peach);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,140,66,0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top-btn:hover {
  box-shadow: 0 6px 24px rgba(255,140,66,0.55);
  transform: translateY(-2px);
}
.scroll-top-btn svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── BILD-KARTEN ─────────────────────────────────────────────── */
.card-img { padding: 0; overflow: hidden; }
.card-img .card-thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.card-img .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-img:hover .card-thumb img { transform: scale(1.05); }
.card-img .card-body { padding: 24px; }

/* ── PAGE-HERO BILD-VERSIONEN ────────────────────────────────── */
.page-hero-img {
  position: relative;
  padding: 120px 0 80px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,14,0.90) 0%, rgba(14,14,14,0.65) 100%);
  z-index: 1;
}
.page-hero-img .container { position: relative; z-index: 2; }

/* ── BILD-SEKTION ────────────────────────────────────────────── */
.img-section {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.img-section-full {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}


/* ── PREISKACHELN (Bronze / Gold / Platin) ───────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}
/* Bronze */
.pricing-card.tier-bronze { border-color: rgba(180,120,60,0.35); }
.pricing-card.tier-bronze .tier-badge { background: linear-gradient(135deg,#cd7f32,#a0522d); color:#fff; }
.pricing-card.tier-bronze .tier-price { color: #cd7f32; }
/* Gold */
.pricing-card.tier-gold { border-color: rgba(196,150,20,0.45); }
.pricing-card.tier-gold .tier-badge { background: linear-gradient(135deg,#c8900a,#a06808); color:#fff; }
.pricing-card.tier-gold .tier-price { color: #d4a017; }
/* Platin */
.pricing-card.tier-platin {
  border-color: rgba(180,190,220,0.55);
  background: linear-gradient(160deg,rgba(30,32,45,1) 0%,rgba(22,24,36,1) 100%);
  box-shadow: 0 0 0 1px rgba(180,190,220,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.pricing-card.tier-platin .tier-badge { background: linear-gradient(135deg,#8898c8,#5566a8); color:#fff; }
.pricing-card.tier-platin .tier-price {
  background: linear-gradient(135deg,#c8d0f0,#8898c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Badge */
.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  width: fit-content;
}
/* Price */
.tier-price {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.tier-price-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
/* Feature list */
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex: 1;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li .feat-icon { flex-shrink: 0; width: 16px; margin-top: 2px; }
.tier-features li.feat-incl { color: var(--text-primary); }
.tier-features li.feat-incl .feat-icon { color: #4ade80; }
.tier-features li.feat-extra .feat-icon { color: var(--peach); }
.tier-features li.feat-note { color: var(--text-muted); font-size: 0.82rem; }
.tier-features li.feat-note .feat-icon { color: var(--text-muted); }
/* Footnote */
.tier-footnote {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.7;
  border-top: 2px solid rgba(255,140,66,0.2);
  padding-top: 14px;
  display: block;
  background: rgba(255,140,66,0.05);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 14px 16px;
  margin-left: -4px;
  margin-right: -4px;
}
/* Popular tag */
.pricing-card .popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-peach);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
