﻿/* css/style.css - KONSISTENT FÜR ALLE SEITEN */
:root {
  --primary: #1e3a5f;
  --primary-light: #2c5282;
  --accent: #d4a373;
  --accent-hover: #b88a5e;
  --bg-light: #f8f9fa;
  --bg-warm: #fdfbf7;
  --text-dark: #2d3748;
  --text-light: #718096;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --max-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

/* --- Header --- */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.logo span { color: var(--accent); }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 0.5rem 0;
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
}
.dropdown-content a:hover { background: var(--bg-light); color: var(--primary); }

.cta-button {
  background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.925rem !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 15px rgba(99,102,241,0.35);
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99,102,241,0.5);
}
.cta-button:hover { background: var(--accent-hover); }

.hamburger { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--primary); }

/* --- Hero mit Bildern --- */
.hero {
  background: linear-gradient(rgba(30, 58, 95, 0.85), rgba(30, 58, 95, 0.7)), url('img/ferienwohnung-website.webp') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; line-height: 1.2; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-secondary:hover { background: var(--white); color: var(--primary); }

/* --- Demo Vorschau Grid mit Bildern --- */
.demo-preview {
  padding: 4rem 1.5rem;
  background: var(--bg-light);
}
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 2rem auto;
}
.demo-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.demo-card:hover { transform: translateY(-5px); }
.demo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--accent);
}
.demo-card-content { padding: 1.5rem; }
.demo-card h3 { color: var(--primary); margin-bottom: 0.5rem; }
.demo-card .price { 
  font-size: 1.5rem; 
  font-weight: 700; 
  color: var(--accent); 
  margin: 1rem 0;
}
.demo-card p { color: var(--text-light); margin-bottom: 1rem; font-size: 0.95rem; }

/* --- Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.feature-card {
  background: var(--bg-warm);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid #e2e8f0;
}
.feature-card h3 { color: var(--primary); margin-bottom: 0.5rem; }
.feature-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  object-fit: contain;
}

/* --- Allgemeine Sections --- */
section { padding: 4rem 1.5rem; }
.container { max-width: var(--max-width); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { color: var(--primary); margin-bottom: 1rem; font-size: 2rem; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* --- Forms --- */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-warm);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cbd5e0;
  border-radius: var(--radius);
  font-size: 1rem;
}
.submit-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}
.submit-btn:hover { background: var(--primary-light); }

/* ===================== FOOTER (verfeinert) ===================== */
footer {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  color: rgba(255,255,255,0.85);
  padding: 5rem 2rem 2rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

/* Dekorative Licht-Effekte im Footer */
footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
footer::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
  margin-top: 1rem;
  color: rgba(255,255,255,0.8);
}
.footer-col h5 {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.footer-contact-item .icon {
  color: #fff;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.9;
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.7);
}
.footer-bottom a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 1.5rem; }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    gap: 0;
  }
  .nav-menu.active { display: flex; }
  .nav-menu li { width: 100%; text-align: center; }
  .nav-menu a { display: block; padding: 1rem; border-bottom: 1px solid var(--bg-light); }
  .hero h1 { font-size: 1.8rem; }
  .form-container { padding: 1.5rem; }
}
/* --- ABLAUF / STEPS (einfach) --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  border-top: 4px solid var(--accent);
}
.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.step-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Info-Boxen */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.info-box {
  background: var(--bg-warm);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.info-box h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.info-box ul {
  list-style: none;
  padding: 0;
}
.info-box li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.info-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
/* --- MEGA MENU --- */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 600px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  z-index: 100;
}
.nav-menu > li:hover .mega-menu,
.nav-menu > li:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-col {
  padding: 1rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.mega-col:hover {
  background: var(--bg-light);
}
.mega-col h4 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mega-col p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.mega-col a {
  display: block;
  padding: 0.5rem 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.mega-col a:hover {
  text-decoration: underline;
}

/* Responsive Mega Menu */
@media (max-width: 768px) {
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 1rem;
    display: none;
    opacity: 1;
    visibility: visible;
    background: var(--bg-light);
    margin-top: 0.5rem;
  }
  .nav-menu > li:focus-within .mega-menu,
  .nav-menu > li:hover .mega-menu {
    display: grid;
    transform: none;
  }
  .mega-col {
    padding: 0.75rem;
  }
}
/* ============================================
   STARTSEITE – MODERNES DESIGN 2026
   Alle Klassen mit .s- Präfix (keine Kollision)
   ============================================ */

/* --- Dark Hero --- */
.s-hero {
  background: #0f172a;
  color: #fff;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.s-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.s-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.s-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.s-hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #818cf8;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.s-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #fff;
}
.s-hero h1 .s-gradient {
  background: linear-gradient(135deg, #818cf8, #c084fc, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.s-hero-text {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.s-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.s-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(99,102,241,0.4);
}
.s-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99,102,241,0.5);
}
.s-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #e2e8f0;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s;
}
.s-btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.3);
}

/* Hero Bild */
.s-hero-visual {
  position: relative;
}
.s-hero-visual img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.s-hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: rgba(15,23,42,0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: s-float 4s ease-in-out infinite;
}
@keyframes s-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.s-hero-badge .s-badge-num {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #818cf8, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.s-hero-badge .s-badge-label {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.3;
}
.s-hero-badge2 {
  position: absolute;
  top: -12px;
  right: -12px;
  background: rgba(15,23,42,0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #34d399;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- Bento Intro --- */
.s-intro {
  padding: 6rem 2rem;
  background: #fff;
}
.s-intro-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.s-intro-head {
  text-align: center;
  margin-bottom: 4rem;
}
.s-intro-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.s-intro-head p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.s-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.s-bento-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.s-bento-card:hover {
  border-color: #c7d2fe;
  box-shadow: 0 8px 30px rgba(99,102,241,0.08);
  transform: translateY(-3px);
}
.s-bento-card.span2 { grid-column: span 2; }
.s-bento-card.span3 { grid-column: span 3; }
.s-bento-card.dark {
  background: #0f172a;
  border-color: rgba(255,255,255,0.06);
  color: #fff;
}
.s-bento-card.dark:hover {
  border-color: rgba(99,102,241,0.3);
}
.s-bento-card.dark h3 { color: #fff; }
.s-bento-card.dark p { color: #94a3b8; }
.s-bento-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.s-bento-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.s-bento-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}
.s-bento-card img {
  width: 100%;
  border-radius: 8px;
  margin-top: 1rem;
}
.s-bento-price {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #818cf8, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.5rem 0;
}
.s-bento-price span {
  font-size: 0.9rem;
  font-weight: 400;
  -webkit-text-fill-color: #94a3b8;
}

/* --- Demo Showcase --- */
.s-demos {
  padding: 6rem 2rem;
  background: #f8fafc;
}
.s-demos-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.s-demos-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.s-demos-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.s-demos-head a {
  color: #6366f1;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s;
}
.s-demos-head a:hover { gap: 0.6rem; }
.s-demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.s-demo-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.35s;
  position: relative;
}
.s-demo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: #c7d2fe;
}
.s-demo-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.s-demo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.s-demo-card:hover .s-demo-card-img img {
  transform: scale(1.05);
}
.s-demo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.s-demo-card:hover .s-demo-card-overlay { opacity: 1; }
.s-demo-card-overlay a {
  background: #fff;
  color: #0f172a;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s;
}
.s-demo-card-overlay a:hover { background: #e2e8f0; }
.s-demo-card-body {
  padding: 1.5rem;
}
.s-demo-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}
.s-demo-card-body p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.s-demo-card-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: #6366f1;
}

/* --- Split Section (HTML vs WP) --- */
.s-split {
  padding: 6rem 2rem;
  background: #fff;
}
.s-split-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.s-split-head {
  text-align: center;
  margin-bottom: 4rem;
}
.s-split-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.s-split-head p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 550px;
  margin: 0 auto;
}
.s-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.s-split-card {
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.s-split-card.light {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.s-split-card.dark {
  background: #0f172a;
  color: #fff;
}
.s-split-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.s-split-card.dark h3 { color: #fff; }
.s-split-card.light h3 { color: #0f172a; }
.s-split-card .s-split-desc {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.s-split-card.dark .s-split-desc { color: #94a3b8; }
.s-split-card.light .s-split-desc { color: #64748b; }
.s-split-price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.s-split-card.dark .s-split-price {
  background: linear-gradient(135deg, #818cf8, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.s-split-card.light .s-split-price { color: #6366f1; }
.s-split-price-sub {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.s-split-card.dark .s-split-price-sub { color: #64748b; }
.s-split-card.light .s-split-price-sub { color: #94a3b8; }
.s-split-list {
  list-style: none;
  margin-bottom: 2rem;
}
.s-split-list li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.s-split-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.s-split-card.dark .s-split-list li { color: #cbd5e1; }
.s-split-card.dark .s-split-list li::before {
  background: rgba(99,102,241,0.2);
  color: #818cf8;
}
.s-split-card.light .s-split-list li { color: #475569; }
.s-split-card.light .s-split-list li::before {
  background: rgba(99,102,241,0.1);
  color: #6366f1;
}
.s-split-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* --- Final CTA --- */
.s-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #d4a373 0%, #e8c4a0 50%, #d4a373 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.s-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.s-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -0.02em;
}
.s-cta p {
  font-size: 1.15rem;
  color: #2d3748;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.s-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* --- Responsive Startseite --- */
@media (max-width: 1024px) {
  .s-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .s-hero-text { margin: 0 auto 2.5rem; }
  .s-hero-btns { justify-content: center; }
  .s-hero-visual { max-width: 550px; margin: 0 auto; }
  .s-bento { grid-template-columns: 1fr 1fr; }
  .s-bento-card.span3 { grid-column: span 2; }
  .s-split-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .s-hero { padding: 5rem 1.25rem 4rem; }
  .s-bento { grid-template-columns: 1fr; }
  .s-bento-card.span2,
  .s-bento-card.span3 { grid-column: span 1; }
  .s-demo-grid { grid-template-columns: 1fr; }
  .s-split-card { padding: 2rem; }
  .s-hero-badge { left: 8px; bottom: -12px; }
  .s-hero-badge2 { right: 8px; top: -8px; }
}
/* ===================== ICON SYSTEM ===================== */
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 28px; height: 28px; }

/* Icon-Box (für Bento/Features) */
.icon-box {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.bento-card.dark .icon-box { background: rgba(255,255,255,0.1); color: #fff; }
.bento-card.accent .icon-box { background: rgba(255,255,255,0.2); color: #fff; }

/* ===================== TABS (Vorlagen-Filter) ===================== */
.tabs {
  display: inline-flex;
  background: var(--surface-2);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 2.5rem;
}
.tab {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.tab:hover { color: var(--text); background: var(--surface); }
.tab.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

/* ===================== PREISE-TABELLE ===================== */
.price-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
}
.price-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.925rem;
  align-items: center;
}
.price-row:last-child { border-bottom: none; }
.price-row.head {
  background: var(--surface-2);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-2);
}
.price-row .price-val {
  text-align: right;
  font-weight: 700;
  color: var(--text);
}

/* ===================== FOOTER (verfeinert) ===================== */
footer {
  background: linear-gradient(135deg, #111827 0%, #1e3a5f 100%) !important;
  color: rgba(255,255,255,0.85);
  padding: 5rem 2rem 2rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

/* Dekorative Licht-Effekte im Footer */
footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
footer::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
  margin-top: 1rem;
  color: rgba(255,255,255,0.8);
}
.footer-col h5 {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.footer-contact-item .icon {
  color: #fff;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.9;
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.7);
}
.footer-bottom a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 1.5rem; }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
/* --- Final CTA --- */
.s-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #d4a373 0%, #e8c4a0 50%, #d4a373 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.s-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.s-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -0.02em;
}
.s-cta p {
  font-size: 1.15rem;
  color: #2d3748;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.s-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.s-cta .s-btn-primary {
  background: #1e3a5f;
  box-shadow: 0 4px 20px rgba(30,58,95,0.3);
}
.s-cta .s-btn-primary:hover {
  background: #0f172a;
  box-shadow: 0 8px 30px rgba(30,58,95,0.4);
}
.s-cta .s-btn-ghost {
  color: #1e3a5f;
  border-color: rgba(30,58,95,0.3);
}
.s-cta .s-btn-ghost:hover {
  background: rgba(30,58,95,0.08);
  border-color: rgba(30,58,95,0.5);
}
/* ============================================
   VORTEILE-SEITE: PREIS-/LEISTUNGSVERGLEICH
============================================ */
.s-plv {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #fdfbf7 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}
.s-plv::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,163,115,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.s-plv-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.s-plv-head {
  text-align: center;
  margin-bottom: 4rem;
}
.s-plv-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b88a5e;
  background: rgba(212,163,115,0.12);
  border: 1px solid rgba(212,163,115,0.25);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.s-plv-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #1e3a5f;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.s-plv-head p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid der Vorteile */
.s-plv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.s-plv-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s;
  position: relative;
}
.s-plv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(30,58,95,0.08);
  border-color: #d4a373;
}
.s-plv-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1e3a5f, #2c5282);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(30,58,95,0.2);
}
.s-plv-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.s-plv-text p {
  font-size: 0.925rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* CTA Buttons am Ende */
.s-plv-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.s-btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #1e3a5f;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid #1e3a5f;
  transition: all 0.3s;
}
.s-btn-ghost-dark:hover {
  background: #1e3a5f;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .s-plv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .s-plv { padding: 4rem 1.25rem; }
  .s-plv-grid { grid-template-columns: 1fr; }
  .s-plv-card { padding: 1.5rem; }
}
/* ============================================
   NAVIGATION – MIT ANIMATIONEN & INDIKATOR
============================================ */

/* Basis Nav-Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  position: relative;
}

.nav-menu > li {
  position: relative;
}

/* Nav Links */
.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.925rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Hover-Effekt */
.nav-menu a:hover {
  color: var(--primary);
  background: rgba(30, 58, 95, 0.06);
  transform: translateY(-1px);
}

/* Aktiver Link – Hintergrund + Punkt oben */
.nav-menu a.active {
  color: var(--primary);
  background: rgba(30, 58, 95, 0.08);
  font-weight: 600;
}

/* Der Punkt hinter dem aktiven Link */
.nav-menu a.active::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #6366f1;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  animation: navPulse 2s ease-in-out infinite;
  position: static;
  transform: none;
  top: auto;
  left: auto;
}

/* Pulse-Animation für den Punkt */
@keyframes navPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

/* Smooth Underline Animation (optional) */
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

/* CTA Button in Nav */
.nav-menu .cta-button {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white) !important;
  padding: 0.65rem 1.4rem !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(212, 163, 115, 0.3);
  transition: all 0.3s;
}

.nav-menu .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
  background: linear-gradient(135deg, var(--accent-hover), #a08260);
}

.nav-menu .cta-button::after {
  display: none; /* Keine Unterlinie beim CTA */
}

/* ============================================
   MOBILE NAVIGATION – OHNE AKTIVE INDIKATOREN
============================================ */

@media (max-width: 768px) {
  /* Hamburger anzeigen */
  .hamburger { 
    display: block; 
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
    padding: 0.5rem;
    z-index: 1001;
  }
  
  /* Mobile Menu Basis */
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    gap: 0;
    z-index: 999;
  }
  
  .nav-menu.active { 
    display: flex; 
  }
  
  .nav-menu li { 
    width: 100%; 
    text-align: center; 
  }
  
  .nav-menu a { 
    display: block; 
    padding: 1rem; 
    border-bottom: 1px solid var(--bg-light);
    /* KEINE aktiven Indikatoren im Mobile-Menü */
  }
  
  /* Aktiver Link – nur Textfarbe, kein Punkt, kein Hintergrund */
  .nav-menu a.active { 
    color: var(--primary);
    font-weight: 600;
    background: transparent; /* Kein Hintergrund */
  }
  
  /* Punkt deaktivieren im Mobile-Menü */
  .nav-menu a.active::before {
    display: none; /* Punkt ausblenden */
  }
  
  /* Unterlinie deaktivieren im Mobile-Menü */
  .nav-menu a::after {
    display: none; /* Unterlinie ausblenden */
  }
  
  /* CTA Button im Mobile-Menü */
  .nav-menu .cta-button {
    margin: 1rem;
    text-align: center;
  }
  
  /* Mega Menu im Mobile */
  .mega-menu {
    position: static;
    transform: none;
    width: auto;
    margin: 0 1rem;
    box-shadow: none;
    border: none;
    background: var(--bg-light);
    display: none;
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu > li:hover .mega-menu,
  .nav-menu > li:focus-within .mega-menu {
    display: grid;
  }
  
  .mega-col {
    padding: 0.75rem;
  }
}
/* Kontakt-Layout: Desktop 2 Spalten, Mobile 1 Spalte */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .kontakt-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
  
  /* Formular auf Mobile volle Breite nutzen */
  .kontakt-grid .form-container {
    max-width: 100% !important;
    margin: 0 !important;
  }
}
 /* GARANTIERT: Live-Demo Button sichtbar */
    .s-demo-card-link {
      display: inline-block;
      margin-top: 0.75rem;
      padding: 0.55rem 1.25rem;
      background: #6366f1;
      color: #fff;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.25s;
      box-shadow: 0 4px 12px rgba(99,102,241,0.3);
    }
    .s-demo-card-link:hover {
      background: #0f172a;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(15,23,42,0.3);
    }

    /* KORREKTER VERGLEICH: HTML vs WordPress (wie auf webseiten-fewo.de) */
    .compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 2rem;
    }
    .compare-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
    }
    .compare-card.dark {
      background: #0f172a;
      color: #fff;
      border-color: #0f172a;
    }
    .compare-card.dark h3, 
    .compare-card.dark .compare-price, 
    .compare-card.dark li {
      color: #fff;
    }
    .compare-card.dark .compare-subprice {
      color: #94a3b8;
    }
    .compare-card h3 {
      font-size: 1.5rem;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 1rem;
    }
    .compare-card p {
      color: #64748b;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }
    .compare-card.dark p {
      color: #cbd5e1;
    }
    .compare-price {
      font-size: 2.5rem;
      font-weight: 800;
      color: #1e3a5f;
      line-height: 1;
      margin-bottom: 0.25rem;
    }
    .compare-subprice {
      font-size: 0.9rem;
      color: #64748b;
      margin-bottom: 1.5rem;
      font-weight: 600;
    }
    .compare-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem 0;
      flex-grow: 1;
    }
    .compare-card li {
      padding: 0.5rem 0;
      padding-left: 1.5rem;
      position: relative;
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .compare-card li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #d4a373;
      font-weight: bold;
    }
    @media (max-width: 768px) {
      .compare-grid { grid-template-columns: 1fr; }
    }
	 /* INFO-HIGHLIGHT CARD */
    .info-highlight {
      background: linear-gradient(135deg, #f8fafc, #fff);
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 2rem;
      margin: 3rem auto 0;
      max-width: 900px;
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
    }
    .info-highlight-icon {
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #d4a373, #b8935a);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 4px 12px rgba(212,163,115,0.3);
    }
    .info-highlight-content h4 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 0.5rem;
    }
    .info-highlight-content p {
      color: #475569;
      line-height: 1.6;
      margin: 0 0 0.75rem 0;
    }
    .info-highlight-content ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .info-highlight-content li {
      padding: 0.3rem 0 0.3rem 1.5rem;
      position: relative;
      color: #475569;
      font-size: 0.95rem;
    }
    .info-highlight-content li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #d4a373;
      font-weight: bold;
    }
    @media (max-width: 640px) {
      .info-highlight { flex-direction: column; align-items: center; text-align: center; }
      .info-highlight-content li { text-align: left; }
    }
	    /* OPTIMIERTER INTRO-BLOCK */
    .intro-headline {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: #0f172a;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .intro-headline .s-gradient {
      background: linear-gradient(135deg, #1e3a5f, #d4a373);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .intro-lead {
      font-size: 1.15rem;
      color: #475569;
      line-height: 1.7;
      max-width: 780px;
      margin: 0 auto 3rem;
      text-align: center;
    }

    /* 3-SCHRITTE CARDS */
    .steps-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin: 3rem auto;
      max-width: 1000px;
    }
    @media (max-width: 768px) {
      .steps-row { grid-template-columns: 1fr; }
    }
    .step-item {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 2rem 1.5rem;
      text-align: center;
      position: relative;
      transition: all 0.3s;
    }
    .step-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(30,58,95,0.08);
      border-color: #d4a373;
    }
    .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #1e3a5f, #2c5282);
      color: #fff;
      font-size: 1.25rem;
      font-weight: 800;
      border-radius: 50%;
      margin-bottom: 1rem;
      box-shadow: 0 4px 12px rgba(30,58,95,0.2);
    }
    .step-item h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 0.5rem;
    }
    .step-item p {
      color: #64748b;
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0;
    }
	/* ============================================
   STEP-CARDS (für 3-Schritte-Anleitung)
============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}
.step-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(30,58,95,0.1);
  border-color: #d4a373;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e3a5f, #2c5282);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
.step-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
/* ============================================
   GLEICHE BREITE FÜR BENTO & STEPS
============================================ */

/* Beide Grids auf identisches 3-Spalten-Layout */
.s-bento,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Bento-Cards ohne span-Klassen zwingen */
.s-bento .s-bento-card {
  grid-column: span 1 !important;
}

/* Responsive */
@media (max-width: 900px) {
  .s-bento,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .s-bento .s-bento-card {
    grid-column: span 1 !important;
  }
}