/* ==========================================================================
   FahrSmart Fahrschule - Stylesheet
   ========================================================================== */

:root {
  --c-green: #5CA000;
  --c-green-light: #78C000;
  --c-blue: #1565C0;
  --c-blue-light: #1E88E5;
  --c-dark: #0B0E11;
  --c-dark-2: #14181D;
  --c-text: #1A1D21;
  --c-muted: #5B6572;
  --c-bg: #FFFFFF;
  --c-bg-alt: #F4F6F8;
  --c-border: #E2E6EA;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(11, 14, 17, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 14, 17, 0.16);
  --max-width: 1160px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.5em; font-weight: 800; }
p { margin: 0 0 1em; color: var(--c-muted); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 10px;
}

.section {
  padding: 88px 0;
}

.section--alt { background: var(--c-bg-alt); }
.section--dark { background: var(--c-dark); color: #fff; }
.section--dark p { color: #A7B0BA; }
.section--dark h2, .section--dark h3 { color: #fff; }

.section-head {
  max-width: 620px;
  margin-bottom: 48px;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.96); }
.btn:focus-visible { outline: 3px solid var(--c-blue-light); outline-offset: 2px; }

.btn--primary { background: var(--c-blue); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--c-blue-light); }

.btn--accent { background: var(--c-green); color: #fff; box-shadow: var(--shadow); }
.btn--accent:hover { background: var(--c-green-light); }

.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn--outline { background: transparent; border-color: var(--c-blue); color: var(--c-blue); }
.btn--outline:hover { background: var(--c-blue); color: #fff; }

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--full { width: 100%; }

.btn--price {
  background: #fff;
  color: var(--c-text);
  border-color: var(--c-border);
  box-shadow: var(--shadow);
}
.btn--price:hover { border-color: var(--c-blue); }
.btn--price-divider { color: var(--c-border); font-weight: 400; }
.btn--price-value { color: var(--c-blue); font-weight: 800; }

/* ---- Top announcement bar ---- */
.announce {
  background: linear-gradient(90deg, var(--c-green) 0%, var(--c-blue) 100%);
  color: #fff;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 16px;
}
.announce a { text-decoration: underline; text-underline-offset: 2px; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font);
}
.logo-word {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-style: italic;
  transform: skewX(-4deg);
}
.logo-word .fahr { color: var(--c-green-light); }
.logo-word .smart { color: var(--c-blue-light); }
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--c-muted);
  margin-top: 4px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--c-muted);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--c-text); }
.nav-links a.active { position: relative; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -18px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-green-light), var(--c-blue-light));
  border-radius: 3px;
}

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--c-text);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--c-border); }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn--outline-hide { display: none; }
  .logo { margin-left: 8px; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--c-bg-alt);
  color: var(--c-text);
  overflow: hidden;
  padding: 90px 0 100px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -10%;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(120,192,0,0.14), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(30,136,229,0.16), transparent 50%);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .hero::before { animation: heroGlow 14s ease-in-out infinite; }
}
@keyframes heroGlow {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 1; }
  50% { transform: scale(1.08) translate(1.5%, -1.5%); opacity: 0.82; }
}

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

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
}
.hero h1 .accent-green { color: var(--c-green); }
.hero h1 .accent-blue { color: var(--c-blue); }

.hero p.lead {
  font-size: 1.1rem;
  color: var(--c-muted);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-badges {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--c-muted);
  font-weight: 600;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 8px rgba(92,160,0,0.5);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background:
    linear-gradient(160deg, rgba(120,192,0,0.35), rgba(30,136,229,0.35)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px),
    #0F1216;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.hero-visual img { border-radius: calc(var(--radius) - 4px); }
.hero-visual .caption {
  background: rgba(11,14,17,0.75);
  backdrop-filter: blur(6px);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
  width: 100%;
}
.hero-visual .caption span { display: block; color: #A7B0BA; font-weight: 500; font-size: 0.78rem; margin-top: 2px; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual {
    order: -1;
    display: block;
    aspect-ratio: auto;
    padding: 0;
  }
  .hero-visual img {
    position: static !important;
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .hero-visual .caption {
    position: static;
    width: auto;
    background: #fff;
    backdrop-filter: none;
    border-radius: 0 0 var(--radius) var(--radius);
    color: var(--c-text);
  }
  .hero-visual .caption span { color: var(--c-muted); }
  .hero-visual svg {
    top: auto !important;
    bottom: 24px !important;
  }
}

/* ---- Opening teaser strip ---- */
.teaser-strip {
  background: linear-gradient(90deg, rgba(92,160,0,0.08), rgba(21,101,192,0.08));
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 18px 0;
}
.teaser-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
  color: var(--c-text);
  font-weight: 600;
  font-size: 0.95rem;
}
.teaser-strip strong { color: var(--c-green); }

.countdown-timer { display: flex; gap: 14px; }
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 46px;
  padding: 6px 4px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--c-border);
}
.countdown-value {
  font-size: 1.1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--c-text);
  line-height: 1.1;
}
.countdown-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ---- Feature grid ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 880px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(120,192,0,0.15), rgba(30,136,229,0.15));
}

.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p { margin: 0; font-size: 0.94rem; }

/* ---- Languages ---- */
.lang-row { display: flex; flex-wrap: wrap; gap: 12px; }
.lang-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
}
.section--dark .lang-pill {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

/* ---- License classes ---- */
.class-row { display: flex; flex-wrap: wrap; gap: 14px; }
.class-chip {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  background: var(--c-bg-alt);
  border: 2px solid var(--c-border);
  color: var(--c-text);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.class-chip:hover { border-color: var(--c-blue); color: var(--c-blue); transform: translateY(-2px); }

/* ---- Course date cards (interactive) ---- */
.date-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }

.date-card {
  position: relative;
  display: block;
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-align: left;
}
.date-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-blue-light);
  box-shadow: var(--shadow);
}
.date-card .month-tag {
  position: absolute;
  top: -12px; left: 20px;
  background: var(--c-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.date-card .range {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 10px 0 4px;
}
.date-card .range .arrow { color: var(--c-muted); font-weight: 400; margin: 0 6px; }
.date-card .meta { font-size: 0.85rem; color: var(--c-muted); margin-bottom: 18px; }
.date-card .cta-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.85rem; font-weight: 700; color: var(--c-blue);
}
.date-card .cta-row .arrow-icon { transition: transform 0.2s ease; }
.date-card:hover .cta-row .arrow-icon { transform: translateX(4px); }

.date-card.is-placeholder {
  cursor: default;
  border-style: dashed;
  background: var(--c-bg-alt);
}
.date-card.is-placeholder:hover { transform: none; box-shadow: none; border-color: var(--c-border); }

/* ---- Stats (experience counters) ---- */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px 24px;
}
.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--c-blue);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--c-border);
  margin: 16px 0;
  overflow: hidden;
}
.stat-bar span {
  display: block;
  position: relative;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c-green), var(--c-blue));
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.stat-card.is-counted .stat-bar span { width: 100%; }
.stat-bar span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.75), transparent);
  transform: translateX(-100%);
}
@media (prefers-reduced-motion: no-preference) {
  .stat-card.is-counted .stat-bar span::after {
    animation: statShimmer 1.5s ease-in-out;
  }
}
@keyframes statShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}
.stat-label { font-size: 0.92rem; color: var(--c-muted); font-weight: 600; }
.google-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--c-border);
  color: var(--c-text);
  font-weight: 700;
  font-size: 0.92rem;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.google-link:hover { border-color: var(--c-blue-light); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---- FAQ accordion ---- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-text);
  cursor: pointer;
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--c-blue);
  font-weight: 400;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 22px;
}
.faq-answer p { padding-bottom: 20px; margin: 0; }
.faq-item.is-open .faq-answer { max-height: 300px; }

/* ---- Cost calculator ---- */
.cost-calculator {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
@media (max-width: 640px) { .cost-calculator { padding: 28px 20px; } }

.cost-savings-badge {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  background: linear-gradient(120deg, rgba(92,160,0,0.1), rgba(21,101,192,0.1));
  border: 1.5px solid var(--c-border);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 0.92rem;
  font-weight: 600;
}
.cost-old-price { text-decoration: line-through; color: var(--c-muted); font-weight: 700; }

.cost-stepper { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 36px; }
.cost-stepper-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  border: 2.5px solid var(--c-border);
  color: var(--c-muted);
  background: #fff;
  cursor: default;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.cost-stepper-dot.is-active { border-color: var(--c-blue); color: var(--c-blue); background: rgba(30,136,229,0.08); }
.cost-stepper-dot.is-done { border-color: var(--c-green); color: #fff; background: var(--c-green); cursor: pointer; }
.cost-stepper-dot.is-done:hover { transform: scale(1.08); }
.cost-stepper-line { width: 40px; height: 2px; background: var(--c-border); flex-shrink: 0; }

.cost-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-blue);
  padding: 0;
  margin-bottom: 20px;
}
.cost-back-btn:hover { text-decoration: underline; }

.cost-step-title { font-size: 1.05rem; margin: 0 0 18px; text-align: center; }

.cost-icon-choice { margin-bottom: 8px; }
.cost-icon-card {
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 22px 16px;
  flex: 1 1 160px;
}
.cost-icon {
  width: 100px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.cost-icon svg { width: 100%; height: auto; display: block; }
.cost-icon-wide { width: 100%; max-width: 220px; }

.cost-slider-field { margin: 28px 0; }
.cost-slider-field > label { font-weight: 700; font-size: 0.88rem; display: block; margin-bottom: 14px; }
.cost-slider-row { display: flex; align-items: center; gap: 18px; }
.cost-hours-value {
  min-width: 48px;
  text-align: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--c-blue);
  font-variant-numeric: tabular-nums;
}

input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c-green), var(--c-blue));
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--c-blue);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.15s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--c-blue);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.15s ease;
}
input[type="range"]::-moz-range-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-track { background: transparent; }

.cost-breakdown { margin: 24px 0; display: flex; flex-direction: column; }
.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.92rem;
}
.cost-row:last-child { border-bottom: none; }
.cost-row span:first-child { color: var(--c-text); }
.cost-row span:last-child { font-weight: 700; white-space: nowrap; }
.cost-row em { color: var(--c-green); font-style: normal; font-weight: 600; font-size: 0.8rem; }

.cost-total {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: linear-gradient(120deg, var(--c-green) 0%, var(--c-blue) 100%);
  border-radius: 16px;
  padding: 30px 26px;
  color: #fff;
  font-weight: 700;
  margin-top: 8px;
}
.cost-total-value {
  font-size: 2.6rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}
.cost-disclaimer { font-size: 0.78rem; color: var(--c-muted); margin-top: 16px; }

/* ---- Steps ---- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 46px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-green), var(--c-blue));
  color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step h4 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.9rem; margin: 0; }

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(120deg, var(--c-green) 0%, var(--c-blue) 100%);
  border-radius: 24px;
  padding: 56px 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-banner .btn--primary { background: #fff; color: var(--c-dark); }
.cta-banner .btn--primary:hover { background: #F4F6F8; }

/* ---- Forms ---- */
.form-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: 0.88rem; }
.form-field .hint { font-size: 0.78rem; color: var(--c-muted); font-weight: 400; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--c-border);
  background: var(--c-bg-alt);
  color: var(--c-text);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-blue-light);
  background: #fff;
}
.form-field input[readonly] { color: var(--c-muted); cursor: not-allowed; }

/* ---- Clickable choice groups (cards / pills) ---- */
.choice-group { display: flex; flex-wrap: wrap; gap: 12px; }
.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 150px;
  min-width: 140px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid var(--c-border);
  background: var(--c-bg-alt);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.choice-card:hover { border-color: var(--c-blue-light); transform: translateY(-1px); }
.choice-card input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.choice-card-title { font-weight: 700; font-size: 0.95rem; color: var(--c-text); }
.choice-card-sub { font-size: 0.8rem; color: var(--c-muted); }
.choice-card.is-selected {
  border-color: var(--c-blue);
  background: linear-gradient(120deg, rgba(120,192,0,0.1), rgba(30,136,229,0.12));
}
.choice-card.is-selected .choice-card-title { color: var(--c-blue); }
.choice-card input:focus-visible ~ .choice-card-title { outline: 2px solid var(--c-blue-light); }

.choice-pill {
  position: relative;
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--c-border);
  background: var(--c-bg-alt);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--c-text);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.choice-pill:hover { border-color: var(--c-blue-light); }
.choice-pill input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.choice-pill.is-selected { border-color: var(--c-blue); background: var(--c-blue); color: #fff; }

.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--c-muted); }
.form-checkbox input { margin-top: 4px; flex-shrink: 0; }
.form-checkbox span { min-width: 0; }
.selected-course-banner {
  background: linear-gradient(120deg, rgba(120,192,0,0.12), rgba(30,136,229,0.12));
  border: 1.5px solid var(--c-border);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 0.92rem;
  font-weight: 600;
}
.selected-course-banner span { display: block; font-weight: 400; color: var(--c-muted); font-size: 0.82rem; margin-top: 2px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .icon { font-size: 2.6rem; margin-bottom: 12px; }

/* ---- Contact info list ---- */
.info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 22px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .ico {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--c-bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.info-list strong { display: block; margin-bottom: 2px; }
.info-list span, .info-list a { color: var(--c-muted); font-size: 0.92rem; }
.info-list a:hover { color: var(--c-blue); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  aspect-ratio: 16/11;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---- Team / values ---- */
.value-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.96rem; color: var(--c-text); }
.value-list .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--c-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

/* ---- Job card (Karriere) ---- */
.job-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  scroll-margin-top: 110px;
}
@media (prefers-reduced-motion: no-preference) {
  .job-card.is-highlighted { animation: highlightPulse 1.8s ease; }
}
@keyframes highlightPulse {
  0% { box-shadow: 0 0 0 0 rgba(30,136,229,0.45), var(--shadow); border-color: var(--c-blue); }
  70% { box-shadow: 0 0 0 16px rgba(30,136,229,0), var(--shadow); border-color: var(--c-blue); }
  100% { box-shadow: var(--shadow); border-color: var(--c-border); }
}
.job-tag {
  display: inline-block;
  background: var(--c-bg-alt);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-muted);
  margin-bottom: 14px;
}
.job-card ul { padding-left: 20px; color: var(--c-muted); }
.job-card ul li { margin-bottom: 8px; }

/* ---- Footer ---- */
.site-footer {
  background: var(--c-dark);
  color: #A7B0BA;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid > div { min-width: 0; }
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h4 { color: #fff; font-size: 0.9rem; margin-bottom: 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: 0.88rem; overflow-wrap: anywhere; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 0.8rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: #fff; }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: var(--c-bg-alt);
  color: var(--c-text);
  padding: 64px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}
.page-hero .eyebrow { color: var(--c-green); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 12px; }
.page-hero p { color: var(--c-muted); max-width: 560px; margin: 0 auto; }

/* ---- Scroll reveal ---- */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- utils ---- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.badge-soon {
  display: inline-block;
  background: var(--c-blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}
