/* ============================================================
   PVT Schweiz – Design System
   Farben, Typografie, Komponenten gemäss DESIGN.md
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

/* ── CSS-Variablen ── */
:root {
  --navy:       #236892;
  --navy-dark:  #1F4E6D;
  --navy-deep:  #1A3D57;
  --sky:        #2EA3F2;
  --cyan:       #AADDDD;
  --cyan-dark:  #99CCCC;
  --teal:       #2EA2CC;

  --text-primary:   #333333;
  --text-secondary: #666666;
  --text-muted:     #767676;
  --text-disabled:  #999999;

  --white:      #FFFFFF;
  --light-gray: #E5E5E5;
  --pale:       #E9E6ED;
  --surface:    #F5F5F5;
  --border:     #BBBBBB;
  --mid-gray:   #CCCCCC;

  --success:    #7AD03A;
  --warning:    #FFBA00;
  --error:      #CF2E2E;

  --radius-btn: 50px;
  --radius-card: 0px;
  --radius-input: 3px;

  --shadow-raised:   0 1px 0 rgba(0,0,0,.10);
  --shadow-elevated: 0 2px 5px rgba(0,0,0,.10);
  --shadow-high:     0 4px 12px rgba(0,0,0,.15);
  --shadow-deep:     0 2px 18px rgba(0,0,0,.30);

  --max-width: 1440px;
  --gap: 16px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  color: var(--text-secondary);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy-dark); text-decoration: underline; }
ul { list-style: none; }

/* ── Typografie ── */
h1, h2, h3, h4 { color: var(--navy); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(32px, 5vw, 47px); line-height: 1.2; }
h2 { font-size: 20px; font-weight: 600; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
p  { margin-bottom: 1em; }
strong { font-weight: 600; }

/* ── Container ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 1023px) { .container { padding: 0 32px; } }
@media (max-width: 599px)  { .container { padding: 0 16px; } }

/* ── Sektions-Spacing ── */
.section { padding: 64px 0; }
.section--alt { background: var(--surface); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--pale { background: var(--pale); }
@media (max-width: 599px) { .section { padding: 40px 0; } }

.section-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  padding: 10px 28px;
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, color .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  color: var(--white);
  text-decoration: none;
}
.btn-primary:active { background: var(--navy-deep); }

.btn-secondary {
  background: var(--cyan);
  color: var(--navy);
}
.btn-secondary:hover {
  background: var(--cyan-dark);
  color: var(--navy-dark);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--sky);
  border-color: var(--sky);
}
.btn-ghost:hover {
  background: rgba(46,163,242,.08);
  border-color: var(--navy-dark);
  color: var(--navy-dark);
  text-decoration: none;
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--light-gray);
  color: var(--navy-dark);
  text-decoration: none;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-raised);
  transition: box-shadow .2s;
}
.card:hover { box-shadow: var(--shadow-high); }

.card-elevated {
  background: var(--white);
  border-radius: 4px;
  padding: 32px;
  box-shadow: var(--shadow-elevated);
  transition: box-shadow .2s;
}
.card-elevated:hover { box-shadow: var(--shadow-high); }

/* ── Grids ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}
@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 599px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ── Formulare ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 14px;
}
.form-control {
  width: 100%;
  height: 50px;
  padding: 14px 19px;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  background: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: border .2s, box-shadow .2s;
}
.form-control::placeholder { color: var(--text-disabled); }
.form-control:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 2px rgba(46,163,242,.10);
}
textarea.form-control {
  height: auto;
  min-height: 140px;
  resize: vertical;
  line-height: 23px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.form-check input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--navy);
  cursor: pointer;
}

/* ── Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-elevated);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo span {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-menu a {
  display: flex;
  align-items: center;
  height: 47px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.nav-menu a:hover {
  color: var(--navy);
  border-bottom-color: var(--sky);
  text-decoration: none;
}
.nav-menu a.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  box-shadow: var(--shadow-deep);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--light-gray);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--surface);
  color: var(--navy);
  text-decoration: none;
}
.mobile-nav .btn { margin: 16px 20px; }
.mobile-nav .btn-primary { color: var(--white); }

@media (max-width: 1100px) {
  .nav-inner { padding: 0 24px; }
  .nav-menu a { padding: 0 10px; }
}
@media (max-width: 900px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #0d2d40 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35,104,146,.75);
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-label {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p { font-size: 16px; color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 560px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 599px) {
  .hero { min-height: 480px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
}

/* ── USP-Leiste ── */
.usp-bar {
  background: var(--navy);
  padding: 28px 0;
}
.usp-bar .container {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}
.usp-item svg { width: 22px; height: 22px; flex-shrink: 0; fill: var(--cyan); }

/* ── Service-Kacheln ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: 3px solid var(--navy);
  padding: 32px 24px;
  box-shadow: var(--shadow-raised);
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-high);
  transform: translateY(-4px);
}
.service-card .icon {
  width: 52px;
  height: 52px;
  background: var(--pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card .icon svg { width: 26px; height: 26px; fill: var(--navy); }
.service-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }

/* ── Video-Sektion ── */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.video-grid video, .video-grid .video-thumb {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-elevated);
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}
.video-main { grid-column: span 2; }
@media (max-width: 599px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-main { grid-column: span 1; }
}

/* ── Testimonials Scroll ── */
.testimonials-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.testimonials-scroll::-webkit-scrollbar { height: 4px; }
.testimonials-scroll::-webkit-scrollbar-track { background: var(--light-gray); border-radius: 2px; }
.testimonials-scroll::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 2px; }
.testimonial-card {
  flex: 0 0 calc(50% - 10px);
  scroll-snap-align: start;
}
@media (max-width: 899px) { .testimonial-card { flex: 0 0 calc(75% - 10px); } }
@media (max-width: 599px) { .testimonial-card { flex: 0 0 calc(90% - 10px); } }

.testimonials-wrap { position: relative; }
.ts-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--white); border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-raised); border-radius: 50%;
  width: 44px; height: 44px; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; line-height: 1; color: var(--navy);
  transition: background .2s, color .2s, box-shadow .2s;
}
.ts-arrow:hover { background: var(--navy); color: #fff; box-shadow: var(--shadow-elevated); }
.ts-arrow-left  { left: -22px; }
.ts-arrow-right { right: -22px; }
@media (max-width: 699px) { .ts-arrow { display: none; } }

/* ── Partner-Strip ── */
.partner-strip { padding: 48px 0; background: var(--surface); }
.partner-strip h2 { text-align: center; margin-bottom: 32px; }
.partner-logos {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.partner-logo-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  min-width: 200px;
  box-shadow: var(--shadow-raised);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo-item img { max-height: 64px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.partner-logo-item:hover { box-shadow: var(--shadow-high); transform: translateY(-2px); }

/* ── CTA-Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); font-size: 28px; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 28px; font-size: 16px; }

/* ── Highlight-Box ── */
.highlight-box {
  background: var(--pale);
  border-left: 4px solid var(--navy);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 4px 4px 0;
}
.highlight-box p { margin: 0; font-size: 15px; color: var(--text-primary); }
.highlight-box strong { color: var(--navy); }

/* ── Feature-Liste ── */
.feature-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
.feature-item .check {
  width: 22px;
  height: 22px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.feature-item .check svg { width: 12px; height: 12px; fill: white; }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--sky); }
.breadcrumb span { margin: 0 6px; }

/* ── Page-Header ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 60px 0 50px;
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.85); font-size: 16px; max-width: 600px; }

/* ── Referenzen-Grid ── */
.ref-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-raised);
  transition: box-shadow .25s, transform .25s;
}
.ref-card:hover { box-shadow: var(--shadow-high); transform: translateY(-3px); }
.ref-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--pale) 0%, var(--cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}
.ref-card-body { padding: 20px; }
.ref-card-body h3 { font-size: 16px; margin-bottom: 6px; color: var(--navy); }
.ref-card-body p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ── Footer ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 48px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-col p { color: rgba(255,255,255,.65); line-height: 1.7; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--cyan); text-decoration: none; }
.footer-logo img { height: 44px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-logo span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--cyan); text-decoration: none; }
.footer-legal { display: flex; gap: 20px; }

@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 599px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── WhatsApp Floating Button ── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
  text-decoration: none;
}
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }

/* ── Tabellen ── */
.info-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.info-table th, .info-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--light-gray);
  font-size: 14px;
}
.info-table th {
  background: var(--surface);
  font-weight: 600;
  color: var(--navy);
}
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: rgba(46,163,242,.04); }

/* ── Tag / Badge ── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.badge-navy  { background: var(--navy);   color: white; }
.badge-cyan  { background: var(--cyan);   color: var(--navy); }
.badge-green { background: var(--success); color: white; }

/* ── Alert-Box (z.B. Förderhinweis) ── */
.alert {
  padding: 16px 20px;
  border-radius: 4px;
  margin: 20px 0;
  font-size: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.alert-info { background: rgba(46,163,242,.08); border-left: 4px solid var(--sky); color: var(--text-primary); }
.alert-success { background: rgba(122,208,58,.1); border-left: 4px solid var(--success); color: var(--text-primary); }
.alert-warning { background: rgba(255,186,0,.1); border-left: 4px solid var(--warning); color: var(--text-primary); }

/* ── Utility ── */
.text-center { text-align: center; }
.text-navy   { color: var(--navy); }
.text-sky    { color: var(--sky); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── Kontakt-Seite ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: var(--pale);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item .icon svg { width: 20px; height: 20px; fill: var(--navy); }
.contact-info-item strong { display: block; color: var(--navy); font-size: 14px; margin-bottom: 2px; }
.contact-info-item span { font-size: 14px; color: var(--text-secondary); }
@media (max-width: 899px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── Enphase-Seite Brandschutz ── */
.fire-icon { color: #e74c3c; }
.insurance-badge {
  background: linear-gradient(135deg, var(--success) 0%, #5db82e 100%);
  color: white;
  padding: 20px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  margin: 20px 0;
}

/* ── Förderung ── */
.foerder-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.foerder-step .step-num {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.foerder-step div h4 { color: var(--navy); margin-bottom: 4px; }

/* ── Sonstiges ── */
.divider {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin: 40px 0;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 4px 24px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 28px 16px 0;
  font-weight: 600;
  color: var(--navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 20px;
  font-weight: 400;
  color: var(--sky);
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-secondary); padding-bottom: 18px; margin: 0; }

/* ── Cookie-Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--navy-dark);
  color: var(--white);
  padding: 14px 24px;
  font-size: 13px;
  box-shadow: 0 -2px 12px rgba(0,0,0,.2);
}
.cookie-banner p { margin: 0; line-height: 1.5; color: rgba(255,255,255,.85); }
.cookie-banner a { color: var(--cyan); text-decoration: underline; }
.cookie-close {
  flex-shrink: 0;
  background: var(--cyan);
  color: var(--navy-dark);
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
}
.cookie-close:hover { background: var(--cyan-dark); }
@media (max-width: 599px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
