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

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --primary: #2B3784;
  --secondary: #1F2864;
  --accent: #D32F2F;
  --accent-hover: #B71C1C;
  --accent-light: #FFEBEE;
  --primary-light: #EEF2FF;
  --text-main: #1A1F2E;
  --text-light: #5A6375;
  --bg-light: #F4F7FB;
  --bg-white: #FFFFFF;
  --border: #E2E8F0;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  line-height: 1.2;
}

a { text-decoration: none; color: var(--primary); transition: var(--transition); }

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

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section { padding: 90px 0; }
.section-bg { background-color: var(--bg-light); }
.section-white { background-color: var(--bg-white); }

.text-center { text-align: center; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

/* Section header block */
.section-header { margin-bottom: 60px; }
.section-header h2 { font-size: 42px; margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 18px; max-width: 640px; margin: 0 auto; }

/* Eyebrow label */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-eyebrow-blue {
  background: var(--primary-light);
  color: var(--primary);
}

/* Highlight span */
.highlight { color: var(--accent); }

/* ============================================================
   HEADER & NAVBAR
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 78px;
  transition: var(--transition);
}

.header.scrolled .nav-container { height: 62px; }

.logo-text { display: flex; flex-direction: column; justify-content: center; }

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.logo-subtitle i { font-size: 10px; }

.nav-links { display: flex; gap: 28px; align-items: center; }

.nav-link {
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-main);
  position: relative;
  cursor: pointer;
  user-select: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link:hover { color: var(--primary); }

.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > .nav-link { cursor: pointer; }

/* Chevron rotation */
.nav-item.open > .nav-link .fa-chevron-down,
.has-dropdown:hover > .nav-link .fa-chevron-down {
  transform: rotate(180deg);
}
.nav-link .fa-chevron-down { transition: transform 0.2s ease; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  border: 1px solid var(--border);
  z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--text-main);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--accent);
  padding-left: 26px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--primary);
  cursor: pointer;
  padding: 6px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(43, 55, 132, 0.25);
}
.btn-primary:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 55, 132, 0.4);
  color: white;
}

.btn-accent {
  background-color: var(--accent);
  color: white;
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.35);
}
.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.5);
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-outline-accent {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline-accent:hover {
  background-color: var(--accent);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
}

.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  background: linear-gradient(150deg, #EEF2FF 0%, #F8F9FF 50%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(43,55,132,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(211,47,47,0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero-content h1 {
  font-size: 54px;
  margin-bottom: 22px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-content h1 span { color: var(--accent); }

.hero-content > p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 92%;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-phone-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.hero-phone-line i { color: var(--accent); font-size: 16px; }
.hero-phone-line a { font-weight: 600; color: var(--primary); font-size: 15px; }
.hero-phone-line a:hover { color: var(--accent); }
.hero-phone-line .sep { color: var(--border); }

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: scale(1.01);
  transition: transform 0.5s ease;
}
.hero-image:hover img { transform: scale(1.03); }

.hero-badge {
  position: absolute;
  bottom: 28px;
  left: -32px;
  background: white;
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 6s ease-in-out infinite;
  border: 1px solid var(--border);
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
}

.hero-badge-text h4 { font-size: 14px; margin-bottom: 2px; }
.hero-badge-text p { font-size: 12px; color: var(--text-light); margin: 0; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--bg-light); }

.trust-item-icon {
  width: 46px;
  height: 46px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.trust-item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}
.trust-item-text span {
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================================
   FEATURES LIST
   ============================================================ */
.features-list { list-style: none; }

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.feature-check { color: var(--accent); font-size: 18px; margin-top: 2px; flex-shrink: 0; }

.feature-text h4 { font-size: 17px; margin-bottom: 3px; }
.feature-text p { color: var(--text-light); font-size: 14px; }

/* ============================================================
   SERVICES GRID & CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

/* Icon variant (no images) */
.service-icon-lg {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
  transition: var(--transition);
  flex-shrink: 0;
}

.service-card:hover .service-icon-lg {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { color: var(--text-light); margin-bottom: 24px; flex-grow: 1; font-size: 15px; line-height: 1.65; }

.service-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  margin-top: auto;
}
.service-link:hover { color: var(--accent); gap: 12px; }

/* FAQ card variant */
.faq-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary-light);
  transition: var(--transition);
}
.faq-card:hover { border-left-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-card h4 { font-size: 17px; margin-bottom: 10px; color: var(--primary); }
.faq-card p { color: var(--text-light); font-size: 15px; margin: 0; }

/* ============================================================
   SPLIT SECTION
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split-content h2 { font-size: 38px; margin-bottom: 20px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 39px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step { text-align: center; position: relative; z-index: 1; }

.step-number {
  width: 80px;
  height: 80px;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  margin: 0 auto 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step:hover .step-number {
  border-color: var(--accent);
  color: white;
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.3);
}

.process-step h4 { font-size: 18px; margin-bottom: 10px; }
.process-step p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

/* ============================================================
   FUNNEL / CTA SECTION
   ============================================================ */
.funnel-section {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.funnel-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.funnel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.funnel-content h2 { color: white; font-size: 38px; margin-bottom: 20px; }
.funnel-content p { color: rgba(255,255,255,0.8); font-size: 17px; line-height: 1.7; }
.funnel-content .features-list li { color: white; margin-bottom: 12px; }

.funnel-box {
  background: white;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-main);
  transition: var(--transition);
  background-color: var(--bg-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(43, 55, 132, 0.08);
}

.form-control::placeholder { color: #a0aec0; }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%232B3784%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 16px top 50%;
  background-size: 11px auto;
  cursor: pointer;
}

.checkbox-group { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 10px; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 500;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent);
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.page-header h1 { color: white; font-size: 46px; margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.82); font-size: 18px; max-width: 560px; margin: 0 auto; }
.page-header .section-eyebrow { margin-bottom: 20px; }

/* ============================================================
   PACKAGES / PRICING
   ============================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.package-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.package-card.highlighted {
  background: var(--primary);
  color: white;
  border: none;
  transform: scale(1.04);
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.package-card.highlighted:hover { transform: scale(1.04) translateY(-6px); }

.package-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.4);
}

.package-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.package-card.highlighted .package-header { border-bottom-color: rgba(255,255,255,0.2); }

.package-name { font-size: 22px; color: var(--primary); margin-bottom: 10px; font-family: 'Outfit', sans-serif; font-weight: 700; }
.package-card.highlighted .package-name { color: white; }

.package-title { font-size: 14px; color: var(--text-light); line-height: 1.5; min-height: 42px; }
.package-card.highlighted .package-title { color: rgba(255,255,255,0.85); }

.package-price { font-size: 40px; font-weight: 800; color: var(--primary); font-family: 'Outfit', sans-serif; line-height: 1; }
.package-card.highlighted .package-price { color: white; }

.package-price-label { font-size: 13px; color: var(--text-light); display: block; margin-bottom: 4px; }
.package-card.highlighted .package-price-label { color: rgba(255,255,255,0.8); }

.package-features { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.package-features li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; line-height: 1.4; }
.package-features i { color: var(--accent); font-size: 15px; margin-top: 2px; }
.package-card.highlighted .package-features i { color: #FFCDD2; }

.package-benefits { background: var(--bg-light); padding: 18px; border-radius: var(--radius); margin-bottom: 22px; }
.package-card.highlighted .package-benefits { background: rgba(255,255,255,0.1); }
.package-benefits h4 { font-size: 15px; margin-bottom: 10px; color: var(--text-main); }
.package-card.highlighted .package-benefits h4 { color: white; }
.package-benefits ul { list-style: none; }
.package-benefits li { position: relative; padding-left: 14px; margin-bottom: 6px; font-size: 13px; color: var(--text-main); }
.package-card.highlighted .package-benefits li { color: rgba(255,255,255,0.9); }
.package-benefits li::before { content: '•'; position: absolute; left: 0; color: var(--primary); font-weight: bold; }
.package-card.highlighted .package-benefits li::before { color: var(--accent); }

.package-option { text-align: center; margin-bottom: 20px; padding: 12px; border: 1px dashed var(--border); border-radius: var(--radius); font-size: 13px; font-weight: 600; color: var(--primary); }
.package-card.highlighted .package-option { border-color: rgba(255,255,255,0.3); color: white; }

.package-ideal { font-size: 13px; color: var(--text-light); text-align: center; margin-bottom: 22px; font-style: italic; min-height: 40px; }
.package-card.highlighted .package-ideal { color: rgba(255,255,255,0.75); }

.package-footer { margin-top: auto; text-align: center; }
.package-card .btn { width: 100%; }
.package-card.highlighted .btn-accent { background-color: white; color: var(--primary); box-shadow: none; }
.package-card.highlighted .btn-accent:hover { background-color: var(--bg-light); color: var(--primary); }

/* ============================================================
   CONTACT INFO BLOCKS
   ============================================================ */
.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-block h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info-block p, .contact-info-block a { color: var(--text-light); font-size: 15px; }
.contact-info-block a:hover { color: var(--accent); }

/* Google Maps consent */
.maps-consent {
  background: var(--bg-light);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 20px;
}
.maps-consent i { font-size: 48px; color: var(--text-light); }
.maps-consent h4 { font-size: 18px; }
.maps-consent p { color: var(--text-light); font-size: 14px; max-width: 320px; }
.maps-iframe-container { display: none; width: 100%; height: 100%; min-height: 480px; border-radius: var(--radius-lg); overflow: hidden; }
.maps-iframe-container.active { display: block; }

/* ============================================================
   REFERENZEN / ARTICLE CARDS
   ============================================================ */
.ref-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.ref-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.ref-card-img { height: 240px; overflow: hidden; }
.ref-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ref-card:hover .ref-card-img img { transform: scale(1.05); }
.ref-card-body { padding: 28px; }
.ref-tag { display: inline-block; background: var(--accent-light); color: var(--accent); padding: 4px 14px; border-radius: 100px; font-size: 12px; font-weight: 700; margin-bottom: 12px; }
.ref-card-body h3 { font-size: 18px; margin-bottom: 10px; }
.ref-card-body p { color: var(--text-light); font-size: 14px; margin: 0; }

/* Ratgeber article row */
.article-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.article-row:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.article-row-img { width: 220px; flex-shrink: 0; overflow: hidden; }
.article-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.article-row:hover .article-row-img img { transform: scale(1.05); }
.article-row-body { padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.article-row-body h3 { font-size: 19px; margin-bottom: 10px; }
.article-row-body p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.65; }
.article-soon-badge { display: inline-block; background: var(--bg-light); color: var(--text-light); padding: 4px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; }

/* ============================================================
   TESTIMONIALS / REVIEWS
   ============================================================ */
.review-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: var(--primary-light);
  border: 1px solid rgba(43,55,132,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  flex-wrap: wrap;
}
.review-strip .google-logo {
  font-size: 28px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.review-stars { color: #FBBC05; font-size: 22px; letter-spacing: 2px; }
.review-text { font-weight: 600; color: var(--primary); font-size: 16px; }
.review-sub { font-size: 13px; color: var(--text-light); }

/* ============================================================
   ÜBER UNS – TIMELINE & STATS
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  padding: 40px 30px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--accent); font-size: 0.65em; vertical-align: super; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 500; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.value-card h4 { font-size: 17px; margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 14px; line-height: 1.65; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary);
  color: white;
  padding: 80px 0 0;
  margin-top: 0;
}

.footer-top-border {
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 60%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-col h3 { color: white; font-size: 16px; font-weight: 700; margin-bottom: 22px; }
.footer-col p { color: rgba(255,255,255,0.65); margin-bottom: 14px; font-size: 14px; line-height: 1.7; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '→'; font-size: 12px; opacity: 0; transition: var(--transition); }
.footer-links a:hover { color: white; }
.footer-links a:hover::before { opacity: 1; }

.contact-info { list-style: none; }
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}
.contact-info i { color: var(--accent); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.contact-info a { color: rgba(255,255,255,0.65); }
.contact-info a:hover { color: white; }

.footer-bottom {
  text-align: center;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   IMPRESSUM / DATENSCHUTZ PAGE STYLES
   ============================================================ */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0 80px;
}
.legal-content h2 { font-size: 28px; margin: 40px 0 16px; padding-top: 20px; border-top: 1px solid var(--border); }
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content h3 { font-size: 20px; margin: 28px 0 12px; }
.legal-content p { color: var(--text-light); margin-bottom: 14px; font-size: 15px; line-height: 1.75; }
.legal-content a { color: var(--primary); text-decoration: underline; }
.legal-content ul { padding-left: 24px; margin-bottom: 14px; }
.legal-content li { color: var(--text-light); font-size: 15px; margin-bottom: 8px; line-height: 1.65; }

/* ============================================================
   DANKE (SUCCESS) PAGE
   ============================================================ */
.success-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.success-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  max-width: 560px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.success-icon {
  width: 80px;
  height: 80px;
  background: #E8F5E9;
  color: #2E7D32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 28px;
}
.success-card h2 { font-size: 30px; margin-bottom: 16px; }
.success-card p { color: var(--text-light); margin-bottom: 32px; font-size: 16px; line-height: 1.7; }

/* ============================================================
   FLOATING PHONE BUTTON
   ============================================================ */
.float-phone-btn {
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 6px 24px rgba(211,47,47,0.45);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}
.float-phone-btn:hover {
  background: var(--accent-hover);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(211,47,47,0.55);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1150px) {
  .nav-links {
    position: fixed;
    top: 78px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 78px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 24px;
    gap: 4px;
    transition: left 0.3s ease;
    overflow-y: auto;
    border-top: 1px solid var(--border);
  }

  .nav-links.active { left: 0; }
  .mobile-menu-btn { display: flex; }

  .nav-item { width: 100%; flex-direction: column; align-items: flex-start; }

  .nav-link { padding: 12px 0; font-size: 16px; width: 100%; display: flex; align-items: center; justify-content: space-between; }
  .nav-link::after { display: none; }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--accent-light);
    transform: none;
    opacity: 1;
    visibility: visible;
    background: var(--bg-light);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border-radius: 0 0 8px 8px;
    transition: max-height 0.3s ease;
  }

  .has-dropdown:hover .dropdown-menu { max-height: 0; }

  .has-dropdown.open .dropdown-menu {
    max-height: 500px;
    padding: 6px 0;
  }

  .dropdown-item { padding: 10px 20px; font-size: 15px; }
  .dropdown-item:hover { padding-left: 28px; }

  .float-phone-btn { display: flex; }

  .packages-grid { grid-template-columns: 1fr; }
  .package-card.highlighted { transform: scale(1); }
  .package-card.highlighted:hover { transform: translateY(-6px); }
}

@media (max-width: 1024px) {
  .hero-content h1 { font-size: 46px; }
  .split-section { gap: 48px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row .stat-item:nth-child(2) { border-right: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding-top: 110px; padding-bottom: 60px; }
  .hero-grid, .split-section, .funnel-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 38px; }
  .hero-content { text-align: center; }
  .hero-content > p { max-width: 100%; }
  .hero-buttons { justify-content: center; flex-direction: column; }
  .hero-phone-line { justify-content: center; flex-wrap: wrap; }
  .hero-badge { display: none; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child, .trust-item:nth-child(even) { border-right: none; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  .section { padding: 60px 0; }
  .section-header h2 { font-size: 32px; }
  .funnel-section { padding: 40px 24px; }
  .funnel-content h2 { font-size: 28px; }

  .process-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }

  .article-row { flex-direction: column; }
  .article-row-img { width: 100%; height: 200px; }

  .split-section .split-image img { height: 280px; object-fit: cover; }

  .page-header { padding: 120px 0 60px; }
  .page-header h1 { font-size: 34px; }

  .legal-content { padding: 40px 0 60px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content h1 { font-size: 32px; }
  .btn-lg { padding: 15px 24px; font-size: 15px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }
}

/* Added from wallbox-zuhause.html */

        /* ── Hero ───────────────────────────────────────────── */
        .wb-hero {
            padding: 72px 0 56px;
            background: var(--bg-light);
            border-bottom: 1px solid var(--border);
        }
        .wb-hero-eyebrow {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 18px;
        }
        .wb-hero h1 {
            font-size: clamp(32px, 5vw, 52px);
            line-height: 1.15;
            margin-bottom: 22px;
        }
        .wb-hero p {
            font-size: 18px;
            color: var(--text-light);
            max-width: 620px;
            line-height: 1.7;
        }

        /* ── Dunkle Feature-Cards ───────────────────────────── */
        .dark-card {
            background: var(--primary);
            color: white;
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            border: 1px solid rgba(255,255,255,0.08);
            transition: var(--transition);
        }
        .dark-card:hover {
            background: var(--secondary);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.25);
        }
        .dark-card .card-icon {
            font-size: 26px;
            margin-bottom: 14px;
            color: var(--accent);
        }
        .dark-card h4 { color: white; font-size: 16px; margin-bottom: 8px; }
        .dark-card p  { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.65; margin: 0; }

        /* ── Easee Empfehlung-Card ──────────────────────────── */
        .recommendation-card {
            background: var(--secondary);
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 32px;
        }
        .recommendation-badge {
            display: inline-block;
            background: #4CAF50;
            color: white;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 5px 14px;
            border-radius: 100px;
            margin-bottom: 16px;
        }
        .recommendation-card h3 { color: white; font-size: 26px; margin-bottom: 14px; }
        .recommendation-card > p { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
        .feature-cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 30px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .feature-cols li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.85);
            font-size: 14px;
            padding: 9px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .feature-cols li i { color: #4CAF50; font-size: 13px; flex-shrink: 0; }

        /* ── PV-Überschussladen Split ───────────────────────── */
        .pv-box {
            background: #f4f7f2;
            border: 1px solid #d4e6cc;
            border-radius: var(--radius-lg);
            padding: 32px;
            margin-top: 32px;
        }
        .pv-box-title {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-light);
            margin-bottom: 20px;
        }
        .pv-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .pv-col { }
        .pv-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            padding: 4px 12px;
            border-radius: 100px;
            margin-bottom: 12px;
        }
        .pv-badge.manual { background: rgba(43,55,132,0.12); color: var(--primary); }
        .pv-badge.smart  { background: rgba(60,150,60,0.15); color: #2d7a2d; }
        .pv-col h4 { font-size: 15px; margin-bottom: 10px; color: var(--text); }
        .pv-col p  { font-size: 14px; color: var(--text-light); line-height: 1.7; margin: 0; }

        /* ── Komplettpaket Card ─────────────────────────────── */
        .komplettpaket-card {
            background: var(--primary);
            border-radius: var(--radius-lg);
            padding: 40px;
            color: white;
        }
        .komplettpaket-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
        }
        .komplettpaket-header h3 { color: white; font-size: 22px; margin: 0; }
        .all-inclusive-badge {
            background: var(--accent);
            color: white;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 16px;
            border-radius: 100px;
            white-space: nowrap;
        }
        .paket-step {
            display: flex;
            gap: 18px;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .paket-step:last-child { border-bottom: none; }
        .paket-step-num {
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 800;
            color: white;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .paket-step-content h4 { color: white; font-size: 15px; margin-bottom: 4px; }
        .paket-step-content p  { color: rgba(255,255,255,0.68); font-size: 14px; line-height: 1.6; margin: 0; }

        /* ── Brand Tags ─────────────────────────────────────── */
        .brand-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
        .brand-tag {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 100px;
            padding: 6px 18px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
        }

        /* ── Einzugsgebiet Tags ─────────────────────────────── */
        .location-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
        .location-tag {
            background: rgba(43,55,132,0.08);
            border: 1px solid rgba(43,55,132,0.18);
            border-radius: 100px;
            padding: 6px 18px;
            font-size: 14px;
            color: var(--primary);
            font-weight: 500;
        }

        /* ── CTA Banner ─────────────────────────────────────── */
        .cta-banner {
            background: var(--primary);
            border-radius: var(--radius-lg);
            padding: 40px;
            text-align: center;
        }
        .cta-banner h3 { color: white; font-size: 24px; margin-bottom: 14px; }
        .cta-banner p  { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.7; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; margin-bottom: 28px; }

        @media(max-width:680px){
            .pv-split { grid-template-columns: 1fr; }
            .feature-cols { grid-template-columns: 1fr; }
            .komplettpaket-header { flex-direction: column; align-items: flex-start; gap: 12px; }
        }
    

/* Added from wallbox-mehrfamilienhaus.html */

        /* ── Feature Cards (hell) ───────────────────────────── */
        .feature-chip-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .feature-chip {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            text-align: center;
        }
        .feature-chip .chip-icon {
            font-size: 30px;
            color: var(--accent);
            margin-bottom: 14px;
        }
        .feature-chip h4 { font-size: 16px; margin-bottom: 8px; }
        .feature-chip p  { font-size: 14px; color: var(--text-light); line-height: 1.65; margin: 0; }

        /* ── Rechtliche Info-Boxes ──────────────────────────── */
        .legal-box {
            border-radius: var(--radius-lg);
            padding: 22px 24px;
            margin-bottom: 16px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .legal-box.wemog  { background: #eef2ff; border-left: 4px solid var(--primary); }
        .legal-box.mid    { background: #fff8e1; border-left: 4px solid #f59e0b; }
        .legal-box.netz   { background: #ecfdf5; border-left: 4px solid #10b981; }
        .legal-box-icon   { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
        .legal-box.wemog  .legal-box-icon { color: var(--primary); }
        .legal-box.mid    .legal-box-icon { color: #d97706; }
        .legal-box.netz   .legal-box-icon { color: #059669; }
        .legal-box-tag    { display: inline-block; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 3px 9px; border-radius: 100px; margin-bottom: 8px; }
        .legal-box.wemog  .legal-box-tag { background: rgba(43,55,132,0.12); color: var(--primary); }
        .legal-box.mid    .legal-box-tag { background: rgba(245,158,11,0.15); color: #92400e; }
        .legal-box.netz   .legal-box-tag { background: rgba(16,185,129,0.15); color: #065f46; }
        .legal-box h4 { font-size: 15px; margin-bottom: 6px; }
        .legal-box p  { font-size: 14px; color: var(--text); line-height: 1.7; margin: 0; }

        /* ── Abrechnung Split-Cards ─────────────────────────── */
        .abrechnung-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .abrechnung-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 26px 22px;
            display: flex;
            gap: 16px;
        }
        .abrechnung-card .a-icon {
            width: 46px; height: 46px;
            background: rgba(230,57,70,0.1);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 20px; color: var(--accent);
            flex-shrink: 0;
        }
        .abrechnung-card h4 { font-size: 15px; margin-bottom: 6px; }
        .abrechnung-card p  { font-size: 14px; color: var(--text-light); line-height: 1.65; margin: 0; }

        /* ── Prozess Steps ──────────────────────────────────── */
        .projekt-steps {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
            position: relative;
        }
        .projekt-steps::before {
            content: '';
            position: absolute;
            top: 22px;
            left: calc(10% + 0px);
            right: calc(10% + 0px);
            height: 2px;
            background: var(--border);
            z-index: 0;
        }
        .pstep {
            text-align: center;
            padding: 0 10px;
            position: relative;
            z-index: 1;
        }
        .pstep-num {
            width: 44px; height: 44px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 18px; font-weight: 800;
            margin: 0 auto 16px;
            box-shadow: 0 4px 12px rgba(230,57,70,0.3);
        }
        .pstep h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
        .pstep p  { font-size: 13px; color: var(--text-light); line-height: 1.6; }

        /* ── Highlight-Box (wichtig) ────────────────────────── */
        .highlight-box {
            background: var(--primary);
            color: white;
            border-radius: var(--radius-lg);
            padding: 32px 36px;
        }
        .highlight-box .hb-badge {
            display: inline-block;
            background: var(--accent);
            color: white;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 4px 12px;
            border-radius: 100px;
            margin-bottom: 16px;
        }
        .highlight-box h3  { color: white; font-size: 20px; margin-bottom: 12px; }
        .highlight-box p   { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.7; }
        .highlight-box ul  { padding-left: 0; list-style: none; margin-top: 16px; }
        .highlight-box li  { color: rgba(255,255,255,0.78); font-size: 14px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; gap: 10px; align-items: flex-start; }
        .highlight-box li i { color: #4CAF50; flex-shrink: 0; margin-top: 2px; }
        .highlight-box li:last-child { border-bottom: none; }

        /* ── Responsive ─────────────────────────────────────── */
        @media (max-width: 900px) {
            .feature-chip-grid  { grid-template-columns: 1fr; }
            .abrechnung-grid    { grid-template-columns: 1fr; }
            .projekt-steps      { grid-template-columns: 1fr 1fr; gap: 20px; }
            .projekt-steps::before { display: none; }
        }
        @media (max-width: 600px) {
            .projekt-steps { grid-template-columns: 1fr; }
        }
    

/* Added from wallbox-unternehmen.html */

        /* Dark feature cards */
        .dark-card {
            background: var(--primary);
            color: white;
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            border: 1px solid rgba(255,255,255,0.08);
            transition: var(--transition);
        }
        .dark-card:hover {
            background: var(--secondary);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.25);
        }
        .dark-card .card-icon {
            width: 52px;
            height: 52px;
            background: rgba(255,255,255,0.12);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
            margin-bottom: 18px;
        }
        .dark-card h4 { color: white; font-size: 17px; margin-bottom: 10px; }
        .dark-card p  { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.65; margin: 0; }

        /* Audience cards */
        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .audience-card {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            text-align: center;
        }
        .audience-card .aud-icon {
            width: 60px;
            height: 60px;
            background: var(--accent-light, #fff7ed);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: var(--accent);
            margin: 0 auto 16px;
        }
        .audience-card h4 { font-size: 16px; margin-bottom: 8px; }
        .audience-card p  { font-size: 13.5px; color: var(--text-light); line-height: 1.65; margin: 0; }

        /* Leistungen grid */
        .leistungen-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        .leistung-card {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 24px 22px;
            display: flex;
            gap: 18px;
            align-items: flex-start;
        }
        .leistung-card .l-icon {
            width: 46px;
            height: 46px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            color: white;
            flex-shrink: 0;
        }
        .leistung-card h4 { font-size: 15px; margin-bottom: 6px; }
        .leistung-card p  { font-size: 13.5px; color: var(--text-light); line-height: 1.6; margin: 0; }

        /* Tax / Steuer cards */
        .steuer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .steuer-card {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 24px 22px;
        }
        .steuer-card .badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .05em;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 20px;
            margin-bottom: 14px;
        }
        .badge-vorteil { background: #dcfce7; color: #15803d; }
        .badge-pflicht { background: #fef9c3; color: #a16207; }
        .steuer-card h4 { font-size: 15px; margin-bottom: 8px; }
        .steuer-card p  { font-size: 13.5px; color: var(--text-light); line-height: 1.65; margin: 0; }

        /* Pflichten */
        .pflicht-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        .pflicht-card {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-left: 4px solid var(--accent);
            border-radius: var(--radius-lg);
            padding: 22px 22px;
        }
        .pflicht-card h4 { font-size: 15px; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
        .pflicht-card p  { font-size: 13.5px; color: var(--text-light); line-height: 1.65; margin: 0; }

        /* Abrechnung split */
        .abrechnung-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .abrechnung-list li {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .abrechnung-list .ab-icon {
            width: 42px;
            height: 42px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            color: white;
            flex-shrink: 0;
        }
        .abrechnung-list h5 { font-size: 14.5px; margin: 0 0 4px; }
        .abrechnung-list p  { font-size: 13px; color: var(--text-light); margin: 0; line-height: 1.55; }

        /* Projektablauf */
        .ablauf-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            max-width: 760px;
            margin: 0 auto;
        }
        .ablauf-step {
            display: flex;
            gap: 24px;
            align-items: flex-start;
            position: relative;
        }
        .ablauf-step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 19px;
            top: 44px;
            bottom: -4px;
            width: 2px;
            background: var(--border);
        }
        .ablauf-step .step-num {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 700;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }
        .ablauf-step .step-body {
            padding-bottom: 28px;
            flex: 1;
        }
        .ablauf-step h4 { font-size: 15px; margin-bottom: 5px; padding-top: 8px; }
        .ablauf-step p  { font-size: 13.5px; color: var(--text-light); margin: 0; line-height: 1.6; }

        /* Compliance note */
        .compliance-note {
            background: #f0f9ff;
            border: 1px solid #bae6fd;
            border-radius: var(--radius-lg);
            padding: 22px 26px;
            margin-top: 32px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .compliance-note i { font-size: 22px; color: #0284c7; flex-shrink: 0; margin-top: 2px; }
        .compliance-note p { font-size: 14px; color: #0c4a6e; margin: 0; line-height: 1.65; }
        .compliance-note strong { color: #0c4a6e; }
    
