/* =====================================================================
   COLORS — change these two lines and the WHOLE site's color scheme
   updates, because every other rule below points back to these variables
   instead of typing the color out again.
   ===================================================================== */
:root {
  --navy: #0e498d;
  --navy-light: #1660b5;
  --yellow: #fdff00;
  --white: #ffffff;
  --text-dark: #1a2333;
  --text-muted: #5b6b82;
  --card-bg: #ffffff;
  --radius: 16px;
  --btn-radius: 10px;
  --max-width: 1160px;
  --font: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

img, svg { max-width: 100%; }

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

.center { text-align: center; }

h1, h2, h3 { font-weight: 700; line-height: 1.2; margin: 0 0 16px; }
h1 { font-size: clamp(28px, 5vw, 44px); }
h2 { font-size: clamp(24px, 4vw, 34px); text-align: center; }
h3 { font-size: 20px; }

.highlight { color: var(--yellow); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  color: var(--navy);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--btn-radius);
  padding: 12px 24px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary {
  background: var(--yellow);
  color: #111;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(253,255,0,.35); }
.btn-large { padding: 16px 32px; font-size: 17px; }
.btn-small {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--yellow);
  padding: 8px 18px;
  font-size: 14px;
}
.btn-small:hover { background: rgba(253,255,0,.1); }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
}
.logo-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border: 2px solid var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.logo-icon svg { width: 14px; height: 14px; }

.logo-image { height: 34px; width: auto; display: block; }
.logo-image-footer { height: 44px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.main-nav a:hover { color: var(--yellow); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-sub { font-size: 18px; color: #d7e0ee; max-width: 46ch; margin: 0 0 10px; }
.hero-note { font-weight: 700; font-size: 17px; color: var(--white); margin: 0 0 24px; }

/* Badge band sits between the hero and the "problem" section, its own strip */
.badges { background: var(--navy); padding: 0 0 40px; }
.badge-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.badge-row li {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--white);
}

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.hero-bolt { width: 48px; height: 48px; color: var(--yellow); }
.hero-card-stat { font-size: 40px; font-weight: 800; color: var(--yellow); margin: 8px 0 0; }
.hero-card-label { color: #d7e0ee; margin: 0; }

/* =====================================================================
   PROBLEM SECTION
   ===================================================================== */
.problem { background: var(--navy); color: var(--white); padding: 20px 0 70px; }
.problem-illustration {
  max-width: 220px;
  margin: 0 auto 32px;
  background: var(--navy-light);
  border-radius: var(--radius);
  padding: 24px;
}
.problem-list {
  list-style: none;
  padding: 0;
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.problem-list li {
  background: var(--white);
  color: var(--text-dark);
  padding: 16px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* =====================================================================
   ADVANTAGES
   ===================================================================== */
.advantages { background: var(--navy); padding-bottom: 80px; }
.advantage-grid {
  display: grid;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto;
}
.advantage-card {
  background: var(--white);
  border-radius: 999px;
  padding: 16px 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.advantage-card .icon { font-size: 20px; }

/* =====================================================================
   PROCESS (3 STEPS)
   ===================================================================== */
.process { padding: 80px 0; background: var(--white); }
.process-steps {
  list-style: none;
  padding: 0;
  max-width: 720px;
  margin: 40px auto 0;
  display: grid;
  gap: 20px;
}
.process-steps li {
  background: #f4f7fb;
  border-radius: var(--radius);
  padding: 24px 24px 24px 76px;
  position: relative;
}
.step-number {
  position: absolute;
  left: 20px;
  top: 24px;
  width: 40px;
  height: 40px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}
.process-steps h3 { margin-bottom: 6px; }
.process-steps p { margin: 0; color: var(--text-muted); }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonials { background: #f4f7fb; padding: 80px 0; }
.section-note { text-align: center; color: var(--text-muted); font-size: 14px; margin-top: -8px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 6px 20px rgba(11,42,82,.06);
}
.stars { color: var(--yellow); letter-spacing: 2px; margin: 0 0 8px; }
.testimonial-name { font-weight: 700; margin: 12px 0 0; }

/* =====================================================================
   FAQ / ACCORDION
   ===================================================================== */
.faq { padding: 80px 0; }
.accordion { max-width: 720px; margin: 30px auto 0; }
.accordion-item {
  border-bottom: 1px solid #e3e8f0;
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--text-dark);
}
.accordion-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f4f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform .2s ease;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); background: var(--yellow); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.accordion-panel p { margin: 0 0 18px; color: var(--text-muted); }

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.cta-final { background: var(--yellow); padding: 70px 0; }
.cta-final h2 { color: var(--navy); }
.cta-final p { margin-bottom: 24px; color: var(--navy); }
.cta-final .btn-primary { background: var(--navy); color: var(--white); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--navy); color: var(--white); padding: 50px 0 30px; }
.logo-footer { justify-content: center; margin-bottom: 20px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; }
.footer-links a { color: var(--white); text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-contact a { color: var(--white); text-decoration: none; }
.site-footer hr { border: none; border-top: 1px solid rgba(255,255,255,.15); margin: 0 0 20px; }
.footer-copy { font-size: 13px; color: #a9b7cc; margin: 0; }

/* =====================================================================
   RESPONSIVE BREAKPOINTS
   - Desktop first values above are for screens 1024px and up.
   - Below we adjust things for tablets, then phones.
   ===================================================================== */
@media (max-width: 1024px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 24px;
    gap: 16px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 20px; }
}

@media (max-width: 640px) {
  h1 { font-size: 28px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .process-steps li { padding: 20px 20px 20px 66px; }
  .step-number { width: 34px; height: 34px; font-size: 15px; left: 16px; top: 20px; }
  .footer-contact { flex-direction: column; gap: 10px; }
}

/* Transition line between the "problem" list and the advantages section */
.transition-line {
  text-align: center;
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  margin: 24px 0 0;
}

/* Small label above a section heading, e.g. "Noch Fragen?" above the FAQ title */
.eyebrow {
  text-align: center;
  color: var(--navy-light);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

/* Contact form in the final CTA section */
.contact-form {
  max-width: 420px;
  margin: 32px auto 0;
  text-align: left;
  display: grid;
  gap: 14px;
}
.form-row { display: grid; gap: 6px; }
.form-row label { font-weight: 700; font-size: 14px; color: var(--navy); }
.form-row input,
.form-row textarea {
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid rgba(14,73,141,.3);
  border-radius: 10px;
  background: var(--white);
  color: var(--text-dark);
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus { outline: 2px solid var(--navy); outline-offset: 1px; }
.contact-form .btn { justify-self: start; }
.form-note { color: var(--navy); font-weight: 700; margin-top: 4px; }
