:root {
    --bg: #ffffff;
    --bg-soft: #f7f9fc;
    --bg-dark: #0a1a2f;
    --bg-dark-grad: linear-gradient(135deg, #0a1a2f 0%, #142a4a 100%);
    --ink: #0a1a2f;
    --ink-soft: #56657a;
    --ink-muted: #8895a8;
    --brand: #1d6cff;
    --brand-hover: #1557d6;
    --brand-soft: #e8f0ff;
    --accent: #00d4a8;
    --line: #e3e8ef;
    --success: #00b890;
    --error: #e0445a;
    --radius: 10px;
    --radius-lg: 16px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
  }

  /* Bewegliche Lichtorbs im Body-Hintergrund */
  body::before,
  body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    will-change: transform;
  }

  body::before {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(29, 108, 255, 0.10) 0%, transparent 70%);
    top: -200px;
    left: -200px;
  }

  body::after {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 168, 0.09) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
  }

  /* Inhalt über den Body-Orbs */
  header, section, footer { position: relative; z-index: 1; }

  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ============ HEADER ============ */
  header {
    padding: 10px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
  }

  .logo-img {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
  }

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

  .nav-link {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    transition: color 0.2s;
  }

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

  @keyframes navAngebotPulse {
    0%, 100% { color: var(--ink-soft); }
    50% { color: var(--brand); text-shadow: 0 0 6px rgba(29, 108, 255, 0.25); }
  }

  .nav-link--angebot {
    animation: navAngebotPulse 2.4s ease-in-out infinite;
  }

  .nav-link--angebot:hover {
    animation: none;
    color: var(--brand);
  }

  .header-phone-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }

  .header-phone-info small {
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-muted);
  }

  .header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
  }

  .header-phone svg {
    width: 16px;
    height: 16px;
    color: var(--brand);
  }

  @media (max-width: 768px) {
    .nav { display: none; }
  }

  /* ============ BURGER / MOBILE NAV ============ */
  .burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
  }

  .burger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
  }

  .mobile-nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border: 1.5px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    color: var(--ink);
    font-size: 20px;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
  }

  .mobile-nav-close:hover {
    background: var(--brand-soft);
    color: var(--brand);
    border-color: var(--brand);
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 82vw);
    height: 100vh;
    background: var(--bg);
    border-left: 1px solid var(--line);
    box-shadow: -8px 0 40px rgba(10, 26, 47, 0.12);
    z-index: 150;
    padding: 72px 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    transition: color 0.2s, padding-left 0.2s;
  }

  .mobile-nav-link:last-child {
    border-bottom: none;
    margin-top: auto;
    padding-top: 28px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 500;
  }

  .mobile-nav-link:hover { color: var(--brand); padding-left: 4px; }
  .mobile-nav-link:last-child:hover { padding-left: 0; }

  .mobile-nav-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--brand);
  }

  .mobile-nav-link--angebot {
    animation: navAngebotPulse 2.4s ease-in-out infinite;
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 26, 47, 0.45);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  body.nav-open .mobile-nav { right: 0; }
  body.nav-open .mobile-nav-backdrop { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }

  body.nav-open .burger-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .burger-btn span:nth-child(2) { opacity: 0; width: 0; }
  body.nav-open .burger-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 768px) {
    .burger-btn { display: flex; }
  }

  /* ============ HERO ============ */
  .hero {
    --hero-image: url("../images/Heropicture.jpg");
    background: var(--bg-dark-grad);
    background-image:
      radial-gradient(ellipse 60% 50% at 15% 20%, rgba(29, 108, 255, 0.35) 0%, transparent 55%),
      radial-gradient(ellipse 50% 50% at 85% 30%, rgba(0, 212, 168, 0.20) 0%, transparent 55%),
      linear-gradient(135deg, #0a1a2f 0%, #142a4a 50%, #0d2240 100%);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
  }

  .hero-grid-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.34;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 68%);
  }

  .hero-image-slice {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(46vw, 680px);
    background:
      var(--hero-image) center / cover no-repeat,
      #ffffff;
    background-size: cover;
    background-position: center;
    clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    pointer-events: none;
    z-index: 1;
  }

  .hero-image-slice::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
  }

  /* Drei animierte Lichtorbs im Hero — jeder mit eigener Bahn */
  .hero::before,
  .hero::after,
  .hero .hero-orb-extra {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    will-change: transform;
  }

  .hero::before {
    width: 700px;
    height: 700px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 212, 168, 0.55) 0%, rgba(29, 108, 255, 0.25) 40%, transparent 70%);
    animation: heroOrb1 12s ease-in-out infinite;
  }

  .hero::after {
    width: 800px;
    height: 800px;
    bottom: -300px;
    left: -200px;
    background: radial-gradient(circle, rgba(29, 108, 255, 0.55) 0%, rgba(120, 80, 220, 0.25) 40%, transparent 70%);
    animation: heroOrb2 15s ease-in-out infinite;
  }

  /* Dritter Orb über zusätzliches DOM-Element */
  .hero-orb-extra {
    width: 500px;
    height: 500px;
    top: 30%;
    left: 40%;
    background: radial-gradient(circle, rgba(180, 100, 255, 0.35) 0%, rgba(0, 212, 168, 0.15) 50%, transparent 75%);
    animation: heroOrb3 18s ease-in-out infinite;
    content: '';
  }

  @keyframes heroOrb1 {
    0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
    25%  { transform: translate(-25vw, 20vh) scale(1.2) rotate(90deg); }
    50%  { transform: translate(-10vw, 40vh) scale(0.85) rotate(180deg); }
    75%  { transform: translate(15vw, 25vh) scale(1.15) rotate(270deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
  }

  @keyframes heroOrb2 {
    0%   { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(30vw, -25vh) scale(1.15); }
    50%  { transform: translate(50vw, -10vh) scale(0.9); }
    75%  { transform: translate(20vw, -35vh) scale(1.25); }
    100% { transform: translate(0, 0) scale(1); }
  }

  @keyframes heroOrb3 {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(-20vw, 15vh) scale(1.3); }
    66%  { transform: translate(25vw, -20vh) scale(0.8); }
    100% { transform: translate(0, 0) scale(1); }
  }

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

  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
  }

  .hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }

  h1 {
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }

  h1 span {
    background: linear-gradient(135deg, var(--accent) 0%, #5ae3bf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.6;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .btn {
    padding: 16px 28px;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
  }

  .btn-small {
    padding: 11px 18px;
    font-size: 14px;
  }

  .btn-primary {
    background: var(--brand);
    color: white;
    box-shadow: 0 6px 20px rgba(29, 108, 255, 0.35);
  }

  .btn-primary:hover {
    background: var(--brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(29, 108, 255, 0.45);
  }

  .btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
  }

  .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
  }

  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .hero-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
  }

  /* Hero visual / call card */
  .hero-card {
    background:
      linear-gradient(155deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.30) 45%, rgba(232, 244, 255, 0.42)),
      rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(30px) saturate(185%);
    -webkit-backdrop-filter: blur(30px) saturate(185%);
    color: var(--ink);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.30),
      0 1px 0 rgba(255, 255, 255, 0.48),
      inset 0 1px 0 rgba(255, 255, 255, 0.62),
      inset 0 -1px 0 rgba(10, 26, 47, 0.06);
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }

  .hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0.14) 28%, rgba(255, 255, 255, 0.04) 62%, transparent 100%);
    pointer-events: none;
    z-index: 0;
  }

  .hero-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius-lg) - 1px);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.36),
      inset 18px 18px 38px rgba(255, 255, 255, 0.18),
      inset -18px -18px 38px rgba(29, 108, 255, 0.06);
    pointer-events: none;
    z-index: 0;
  }

  .hero-card > * {
    position: relative;
    z-index: 1;
  }

  .call-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .agent-avatar {
    width: 52px;
    height: 52px;
    background: var(--bg-dark-grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    position: relative;
  }

  .agent-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background: var(--success);
    border: 3px solid white;
    border-radius: 50%;
  }

  .agent-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
  }

  .agent-info p {
    font-size: 13px;
    color: var(--ink-muted);
  }

  .call-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }

  .stat-box {
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.52);
    padding: 14px 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow:
      0 4px 16px rgba(10, 26, 47, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
    overflow: hidden;
  }

  .stat-num {
    font-size: 22px;
    font-weight: 800;
    display: block;
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .stat-box:nth-child(1) .stat-num { color: #00b890; }
  .stat-box:nth-child(2) .stat-num { color: var(--brand); }
  .stat-box:nth-child(3) .stat-num { color: #6d3cff; }

  .stat-label {
    font-size: 10.5px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    line-height: 1.3;
  }

  .call-quote {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    padding: 14px;
    background: rgba(232, 240, 255, 0.38);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-left: 3px solid rgba(29, 108, 255, 0.72);
  }

  /* ============ FEATURES ============ */
  .features {
    padding: 80px 0;
    background: var(--bg-soft);
  }

  .section-label {
    display: inline-block;
    color: var(--brand);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
  }

  .section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    max-width: 700px;
  }

  .section-sub {
    color: var(--ink-soft);
    font-size: 17px;
    max-width: 600px;
    margin-bottom: 50px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }

  .feature-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
      0 8px 24px rgba(10, 26, 47, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 26, 47, 0.08);
    border-color: var(--brand);
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .feature-icon svg { width: 24px; height: 24px; }

  .feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }

  .feature-card p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
  }

  /* ============ STROMRECHNER ============ */
  .calc-section {
    padding: 80px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
  }

  .calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
    margin-top: 40px;
  }

  @media (max-width: 900px) {
    .calc-grid { grid-template-columns: 1fr; gap: 36px; }
  }

  .calc-box {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow:
      0 16px 40px rgba(10, 26, 47, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .calc-field { margin-bottom: 22px; }

  .calc-field label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .calc-field label .calc-value {
    color: var(--brand);
    font-size: 16px;
    font-weight: 800;
  }

  input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 100px;
    background: var(--brand-soft);
    outline: none;
  }

  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--brand);
    cursor: pointer;
    border: 4px solid white;
    box-shadow: 0 2px 10px rgba(29, 108, 255, 0.4);
  }

  input[type="range"]::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--brand);
    cursor: pointer;
    border: 4px solid white;
    box-shadow: 0 2px 10px rgba(29, 108, 255, 0.4);
  }

  .calc-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 26px;
  }

  .calc-toggle button {
    flex: 1;
    padding: 12px;
    border: 1.5px solid var(--line);
    background: white;
    border-radius: var(--radius);
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.2s;
  }

  .calc-toggle button.active {
    border-color: var(--brand);
    background: var(--brand-soft);
    color: var(--brand);
  }

  .calc-result {
    background: var(--bg-dark-grad);
    color: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .calc-result::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 168, 0.15) 0%, transparent 60%);
    pointer-events: none;
  }

  .calc-result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
  }

  .calc-result-amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--accent);
    position: relative;
  }

  .calc-result-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    position: relative;
  }

  .calc-breakdown {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    margin-bottom: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
  }

  .calc-breakdown-item { text-align: center; }

  .calc-breakdown-num {
    font-size: 22px;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
  }

  .calc-breakdown-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }

  .calc-cta {
    width: 100%;
    padding: 16px;
    background: var(--brand);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .calc-cta:hover {
    background: var(--brand-hover);
    transform: translateY(-2px);
  }

  .calc-disclaimer {
    font-size: 12px;
    color: var(--ink-muted);
    margin-top: 18px;
    text-align: center;
  }

  /* ============ HOW IT WORKS ============ */
  .how-it-works {
    padding: 80px 0;
  }

  /* ============ REZENSIONEN ============ */
  .reviews-section {
    padding: 80px 0;
    background: var(--bg-soft);
    position: relative;
    overflow: visible;
  }

  .reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 46px;
  }

  .reviews-header .section-title {
    margin-bottom: 0;
  }

  .stars {
    display: inline-flex;
    gap: 2px;
    color: #f5b400;
  }

  .star {
    display: inline-block;
    width: 20px;
    font-size: 20px;
    line-height: 1;
    color: #f5b400;
  }

  .star.empty { color: #d7deea; }

  .star.half {
    background: linear-gradient(90deg, #f5b400 50%, #d7deea 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .reviews-carousel {
    position: relative;
  }

  .reviews-viewport {
    overflow: visible;
    padding: 34px 4px 58px;
    position: relative;
  }

  .reviews-grid {
    align-items: stretch;
  }

  .reviews-swiper {
    overflow: visible;
    padding: 0 6px;
  }

  .reviews-swiper .swiper-slide {
    height: auto;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .reviews-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.72;
    transform: scale(0.92);
  }

  .review-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
      0 8px 24px rgba(10, 26, 47, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    height: 100%;
    min-height: 223px;
  }

  .reviews-swiper .swiper-slide-active .review-card {
    z-index: 2;
    transform: translateY(-12px) scale(1.06);
    border-color: rgba(29, 108, 255, 0.28);
    box-shadow:
      0 24px 54px rgba(10, 26, 47, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }

  .review-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 16px 36px rgba(10, 26, 47, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .reviews-swiper .swiper-slide-active .review-card:hover {
    transform: translateY(-16px) scale(1.06);
  }

  .review-card .stars {
    margin-bottom: 14px;
  }

  .review-quote {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 22px;
    min-height: 4.8em;
  }

  .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(10, 26, 47, 0.08);
  }

  .review-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-dark-grad);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    overflow: hidden;
  }

  .review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .review-author-info { flex: 1; line-height: 1.3; }

  .review-author-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
  }

  .review-author-meta {
    font-size: 12px;
    color: var(--ink-muted);
  }

  .steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
  }

  @media (max-width: 768px) {
    .steps-row { grid-template-columns: 1fr; }
  }

  .step-item {
    text-align: center;
    position: relative;
  }

  .step-num {
    width: 56px;
    height: 56px;
    background: var(--bg-dark-grad);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(10, 26, 47, 0.2);
  }

  .step-item h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .step-item p {
    color: var(--ink-soft);
    font-size: 15px;
  }

  /* ============ FORMULAR ============ */
  .form-section {
    padding: 80px 0;
    background:
      radial-gradient(circle at 18% 18%, rgba(0, 212, 168, 0.16), transparent 30%),
      radial-gradient(circle at 88% 18%, rgba(29, 108, 255, 0.24), transparent 34%),
      linear-gradient(135deg, #08172a 0%, #0d2039 52%, #071424 100%);
    color: white;
    position: relative;
    overflow: hidden;
  }

  .form-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(29, 108, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
  }

  .form-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: radial-gradient(circle at 70% 40%, #000 0%, transparent 68%);
    pointer-events: none;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
  }

  @media (max-width: 900px) {
    .form-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  .form-intro h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }

  .form-intro h2 span {
    color: var(--accent);
  }

  .form-intro p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    margin-bottom: 32px;
  }

  .form-benefits {
    list-style: none;
    display: grid;
    gap: 12px;
  }

  .form-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    padding: 13px 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .form-benefits li svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
  }

  .form-wrapper {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.90)),
      rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    color: var(--ink);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow:
      0 34px 90px rgba(0, 0, 0, 0.36),
      0 0 0 1px rgba(29, 108, 255, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
  }

  .form-wrapper::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
  }

  .form-wrapper::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(29, 108, 255, 0.10), transparent 66%);
    pointer-events: none;
  }

  .form-wrapper form {
    position: relative;
    z-index: 1;
  }

  @media (max-width: 480px) {
    .form-wrapper { padding: 28px 22px; }
  }

  .progress-bar {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 32px;
    position: relative;
    z-index: 0;
  }

  .progress-dot {
    flex: 0 0 34px;
    height: 34px;
    background: var(--line);
    border-radius: 50%;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    position: relative;
    color: var(--ink-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    z-index: 2;
  }

  .progress-bar::before {
    content: '';
    position: absolute;
    left: 17px;
    right: 17px;
    top: 17px;
    height: 2px;
    background: var(--line);
    z-index: 0;
  }

  .progress-bar::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 54px;
    height: 4px;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--bg-dark), var(--brand), var(--accent));
    box-shadow: 0 0 18px rgba(29, 108, 255, 0.28);
    transition: left 0.38s cubic-bezier(0.22, 1, 0.36, 1), width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
  }

  .progress-bar.progress-step-1::after {
    left: 0;
  }

  .progress-bar.progress-step-2::after {
    left: calc(50% - 27px);
  }

  .progress-bar.progress-step-3::after {
    left: calc(100% - 54px);
  }

  .progress-dot::before {
    content: attr(data-step);
  }

  .progress-dot.active,
  .progress-dot.done {
    background: var(--brand);
    color: white;
  }

  .progress-dot.active {
    transform: scale(1.08);
    box-shadow: 0 10px 22px rgba(29, 108, 255, 0.25);
  }

  .step-indicator {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .step-heading {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 26px;
    line-height: 1.2;
  }

  .form-step {
    display: none;
    animation: slideIn 0.4s ease;
  }

  .form-step.active { display: block; }

  @keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .field-group { margin-bottom: 18px; }

  label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--ink);
  }

  input[type="text"], input[type="email"], input[type="tel"],
  input[type="number"], select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #dbe3ee;
    background: rgba(255, 255, 255, 0.78);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: all 0.2s;
  }

  input:focus, select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-soft);
  }

  .radio-group { display: grid; gap: 10px; }

  .radio-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1.5px solid #dbe3ee;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 8px 18px rgba(10, 26, 47, 0.04);
  }

  .radio-card:hover {
    border-color: rgba(29, 108, 255, 0.52);
    transform: translateY(-1px);
  }

  .radio-card.selected {
    border-color: var(--brand);
    background: linear-gradient(135deg, var(--brand-soft), rgba(232, 255, 249, 0.72));
    box-shadow: 0 12px 28px rgba(29, 108, 255, 0.10);
  }

  .radio-group.has-error .radio-card {
    border-color: rgba(224, 68, 90, 0.55);
    background: rgba(255, 245, 247, 0.82);
  }

  .choice-error {
    display: none;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: var(--radius);
    background: rgba(224, 68, 90, 0.08);
    color: var(--error);
    font-size: 13px;
    font-weight: 600;
  }

  .choice-error.show {
    display: block;
  }

  .radio-card input { accent-color: var(--brand); width: 18px; height: 18px; }

  .radio-icon {
    width: 38px;
    height: 38px;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .radio-icon svg { width: 20px; height: 20px; }

  .radio-label { flex: 1; }
  .radio-label strong { display: block; font-weight: 700; font-size: 15px; margin-bottom: 2px; }
  .radio-label small { color: var(--ink-muted); font-size: 13px; }

  .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  @media (max-width: 480px) { .row { grid-template-columns: 1fr; } }

  .checkbox-field {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 18px 0;
    padding: 14px;
    background: rgba(247, 249, 252, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
  }

  .checkbox-field input { margin-top: 3px; accent-color: var(--brand); flex-shrink: 0; }
  .checkbox-field a { color: var(--brand); text-decoration: underline; }

  .form-nav { display: flex; justify-content: space-between; margin-top: 26px; gap: 12px; }

  .btn-form-primary {
    background: linear-gradient(135deg, var(--brand), #1557d6);
    color: white;
    flex: 1;
    box-shadow: 0 10px 24px rgba(29, 108, 255, 0.28);
  }

  .btn-form-primary:hover:not(:disabled) {
    background: var(--brand-hover);
    transform: translateY(-1px);
  }

  .btn-form-primary:disabled { opacity: 0.5; cursor: not-allowed; }

  .btn-secondary {
    background: rgba(247, 249, 252, 0.8);
    color: var(--ink-soft);
    border: 1.5px solid var(--line);
  }

  .btn-secondary:hover { border-color: var(--ink); color: var(--ink); }

  .helper-text { font-size: 12px; color: var(--ink-muted); margin-top: 6px; }

  /* Success */
  .success-state { text-align: center; padding: 20px 0; }
  .success-icon {
    width: 72px; height: 72px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: white;
    font-size: 36px;
  }
  .success-icon svg { width: 38px; height: 38px; }
  .success-state h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
  .success-state p {
    color: var(--ink-soft);
    margin-bottom: 6px;
    font-size: 15px;
  }

  /* ============ FAQ ============ */
  .faq-section {
    padding: 80px 0;
    background: var(--bg-soft);
  }

  .faq-wrapper {
    max-width: 760px;
    margin: 0 auto;
  }

  .faq-item {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
  }

  .faq-item summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
  }

  .faq-item summary::-webkit-details-marker { display: none; }

  .faq-item summary::after {
    content: '+';
    font-size: 24px;
    color: var(--brand);
    transition: transform 0.2s ease;
    line-height: 1;
  }

  .faq-item[open] summary::after { transform: rotate(45deg); }

  .faq-item p {
    padding: 0 24px 20px;
    color: var(--ink-soft);
    font-size: 15px;
  }

  /* ============ UNTERSEITEN ============ */
  .subpage-hero {
    padding: 72px 0 48px;
    background:
      radial-gradient(circle at 18% 16%, rgba(29, 108, 255, 0.16), transparent 34%),
      radial-gradient(circle at 82% 26%, rgba(0, 212, 168, 0.12), transparent 34%),
      var(--bg-soft);
    border-bottom: 1px solid var(--line);
  }

  .subpage-hero .section-label { margin-bottom: 12px; }

  .subpage-hero h1 {
    color: var(--ink);
    max-width: 780px;
    margin-bottom: 16px;
  }

  .subpage-lead {
    max-width: 720px;
    color: var(--ink-soft);
    font-size: 18px;
  }

  .subpage-content {
    padding: 64px 0 80px;
    background: white;
  }

  .content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .content-card,
  .legal-card {
    background: rgba(247, 249, 252, 0.8);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
  }

  .content-card h2,
  .legal-card h2 {
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }

  .content-card p,
  .content-card li,
  .legal-card p,
  .legal-card li {
    color: var(--ink-soft);
    font-size: 15px;
  }

  .content-card ul,
  .legal-card ul {
    padding-left: 18px;
    display: grid;
    gap: 8px;
  }

  .legal-stack {
    display: grid;
    gap: 18px;
    max-width: 900px;
  }

  .contact-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }

  .contact-list a {
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
  }

  .button-row {
    margin-top: 18px;
  }

  .notice-box {
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: var(--radius);
    background: var(--brand-soft);
    color: var(--ink-soft);
    border-left: 3px solid var(--brand);
    font-size: 14px;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 30px;
    font-size: 14px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(120px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-brand .logo-name { color: white; }
  .footer-brand p { margin-top: 12px; color: rgba(255, 255, 255, 0.6); max-width: 320px; }

  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: white; }

  .footer-links h5 {
    color: white;
    font-size: 14px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
  }

  /* Error states */
  .error-msg {
    color: var(--error);
    font-size: 12px;
    margin-top: 6px;
    display: none;
  }
  .error-msg.show { display: block; }
  input.error, select.error { border-color: var(--error); }
  /* ============ MOBILE OPTIMIERUNG ============ */

  /* Tablet & kleinere Desktops */
  @media (max-width: 900px) {
    .hero { padding: 60px 0 70px; }
    .hero-image-slice {
      width: 100%;
      height: 42%;
      top: 0;
      right: 0;
      bottom: auto;
      clip-path: none;
      opacity: 0.24;
      mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.72) 48%, transparent 100%);
      -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.72) 48%, transparent 100%);
    }
    .hero-image-slice::before {
      background: linear-gradient(180deg, rgba(10, 26, 47, 0.02) 0%, rgba(10, 26, 47, 0.62) 100%);
    }
    .features, .how-it-works, .reviews-section,
    .form-section, .faq-section { padding: 60px 0; }
    .calc-section { padding: 60px 0; }
    .form-wrapper { padding: 32px; }
    .calc-box { padding: 28px; }
    .calc-result { padding: 28px; }
    .calc-result-amount { font-size: 46px; }
    .reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); min-height: 300px; }
    .footer-inner { grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .footer-brand { grid-column: 1 / -1; }
  }

  /* Mobile bis 640px */
  @media (max-width: 640px) {
    .container { padding: 0 18px; }

    /* Header */
    header { padding: 14px 0; }
    .header-phone {
      font-size: 13px;
    }
    .header-phone svg { width: 14px; height: 14px; }

    /* Hero */
    .hero { padding: 50px 0 60px; }
    .hero-grid { gap: 32px; }
    .hero-badge { font-size: 12px; padding: 6px 12px; }
    .hero-sub { font-size: 16px; margin-bottom: 28px; }
    .hero-ctas {
      flex-direction: column;
      gap: 10px;
      width: 100%;
    }
    .hero-ctas .btn {
      width: 100%;
      justify-content: center;
      padding: 14px 20px;
    }
    .hero-trust {
      gap: 14px 20px;
      font-size: 13px;
    }
    .hero-card { padding: 22px; }
    .call-card-header { gap: 12px; margin-bottom: 18px; padding-bottom: 14px; }
    .agent-avatar { width: 44px; height: 44px; font-size: 15px; }
    .agent-info h4 { font-size: 15px; }
    .stat-box { padding: 10px 8px; gap: 3px; }
    .stat-num { font-size: 18px; }
    .stat-label { font-size: 9.5px; letter-spacing: 0.04em; }
    .call-quote { font-size: 13px; padding: 12px; }

    /* Sections allgemein */
    .features, .how-it-works, .reviews-section,
    .form-section, .faq-section, .calc-section { padding: 50px 0; }
    .section-title { margin-bottom: 30px; }
    .section-sub { font-size: 15px; margin-bottom: 32px; }
    .section-label { font-size: 12px; }

    /* Features & Steps */
    .feature-card { padding: 24px; }
    .feature-card h3 { font-size: 17px; }
    .feature-card p { font-size: 14px; }
    .feature-icon { width: 44px; height: 44px; }
    .feature-icon svg { width: 22px; height: 22px; }
    .step-num { width: 48px; height: 48px; font-size: 19px; margin-bottom: 16px; }
    .step-item h3 { font-size: 17px; }

    /* Rezensionen */
    .reviews-header {
      align-items: flex-start;
      flex-direction: column;
      gap: 18px;
      margin-bottom: 34px;
    }
    .star { width: 18px; font-size: 18px; }
    .reviews-viewport { overflow: hidden; padding: 4px 2px 8px; }
    .reviews-swiper .swiper-slide:not(.swiper-slide-active) {
      opacity: 1;
      transform: none;
    }
    .reviews-swiper .swiper-slide-active .review-card {
      transform: none;
      border-color: rgba(255, 255, 255, 0.7);
      box-shadow:
        0 8px 24px rgba(10, 26, 47, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
    .reviews-swiper .swiper-slide-active .review-card:hover { transform: translateY(-4px); }
    .review-card { padding: 22px; }
    .review-card { min-height: auto; }
    .review-quote { font-size: 14px; min-height: 0; margin-bottom: 18px; }
    .review-avatar { width: 36px; height: 36px; font-size: 13px; }
    .review-author-name { font-size: 13px; }
    /* Formular */
    .form-wrapper { padding: 26px 20px; border-radius: 14px; }
    .form-grid { gap: 32px; }
    .form-intro h2 { font-size: 28px; }
    .form-intro p { font-size: 15px; margin-bottom: 24px; }
    .form-benefits li { font-size: 14px; margin-bottom: 0; }
    .step-heading { font-size: 20px; margin-bottom: 22px; }
    .radio-card { padding: 14px 16px; }
    .radio-label strong { font-size: 14px; }
    .radio-label small { font-size: 12px; }
    input[type="text"], input[type="email"], input[type="tel"],
    input[type="number"], select { padding: 12px 14px; font-size: 16px; /* 16px verhindert iOS-Zoom beim Fokus */ }
    .btn-form-primary, .btn-secondary { padding: 13px 20px; font-size: 14px; }
    .form-nav { gap: 10px; margin-top: 22px; }

    /* Rechner */
    .calc-section { padding: 50px 0; }
    .calc-grid { gap: 24px; }
    .calc-box { padding: 22px; }
    .calc-result { padding: 26px 22px; }
    .calc-result-amount { font-size: 42px; }
    .calc-breakdown-num { font-size: 18px; }
    .calc-toggle button { padding: 11px; font-size: 13px; }
    .calc-cta { padding: 14px; font-size: 15px; }

    /* FAQ */
    .faq-item summary { padding: 16px 18px; font-size: 15px; }
    .faq-item p { padding: 0 18px 16px; font-size: 14px; }

    /* Erfolg */
    .success-icon { width: 60px; height: 60px; }
    .success-icon svg { width: 32px; height: 32px; }
    .success-state h2 { font-size: 22px; }

    /* Footer */
    footer { padding: 34px 0 22px; }
    .footer-inner {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px 12px;
      margin-bottom: 20px;
    }
    .footer-brand {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .footer-brand p { display: none; }
    .footer-links h5 {
      font-size: 11px;
      margin-bottom: 9px;
      letter-spacing: 0.04em;
    }
    .footer-links a {
      font-size: 12px;
      margin-bottom: 6px;
      line-height: 1.25;
    }
    .footer-bottom { padding-top: 16px; font-size: 12px; }

    /* Unterseiten */
    .subpage-hero { padding: 52px 0 36px; }
    .subpage-lead { font-size: 16px; }
    .subpage-content { padding: 42px 0 56px; }
    .content-grid { grid-template-columns: 1fr; gap: 16px; }
    .content-card, .legal-card { padding: 22px; }
  }

  /* Sehr kleine Geräte (iPhone SE, alte Android) */
  @media (max-width: 380px) {
    .container { padding: 0 14px; }
    h1 { font-size: 32px; }
    .header-phone { display: none; } /* Platzsparend */
    .logo-sub { display: none; }
    .form-wrapper { padding: 22px 16px; }
    .calc-box, .calc-result { padding: 18px; }
    .calc-result-amount { font-size: 36px; }
    .hero-trust { font-size: 12px; gap: 10px 16px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-links:last-of-type { grid-column: 1 / -1; }
  }

  /* Bewegungs-Reduzierung für Nutzer, die das im System einstellen */
  @media (prefers-reduced-motion: reduce) {
    body::before, body::after,
    .hero::before, .hero::after, .hero-orb-extra,
    .feature-card, .review-card, .reviews-grid .review-card:first-child, .reviews-grid .review-card:last-child {
      animation: none !important;
      transition: none !important;
    }
  }

  /* ============ COOKIE BANNER ============ */
  .reviews-disclaimer {
    margin-top: 22px;
    text-align: center;
    font-size: 12px;
    line-height: 1.55;
    color: var(--ink-muted);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    transform: translateY(110%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }

  .cookie-banner--visible {
    transform: translateY(0);
    pointer-events: auto;
  }

  .cookie-banner--hidden {
    transform: translateY(110%);
    pointer-events: none;
  }

  .cookie-banner-inner {
    background: rgba(10, 26, 47, 0.96);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }

  .cookie-banner-text {
    flex: 1;
    min-width: 260px;
  }

  .cookie-banner-text strong {
    display: block;
    color: white;
    font-size: 15px;
    margin-bottom: 4px;
  }

  .cookie-banner-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
  }

  .cookie-banner-text a {
    color: var(--accent);
    text-decoration: underline;
  }

  .cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
  }

  .cookie-btn {
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .cookie-btn-accept {
    background: var(--brand);
    color: white;
    box-shadow: 0 4px 14px rgba(29, 108, 255, 0.35);
  }

  .cookie-btn-accept:hover {
    background: var(--brand-hover);
    transform: translateY(-1px);
  }

  .cookie-btn-necessary {
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .cookie-btn-necessary:hover {
    background: rgba(255, 255, 255, 0.16);
  }

  .cookie-btn-settings {
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.10);
  }

  .cookie-btn-settings:hover {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
  }

  @media (max-width: 640px) {
    .cookie-banner-inner { padding: 18px 18px; gap: 14px; }
    .cookie-banner-actions { width: 100%; justify-content: flex-end; }
    .cookie-btn { padding: 10px 16px; font-size: 13px; }
    .cookie-btn-settings { display: none; }
  }

  /* ============ COOKIE MODAL ============ */
  .cookie-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 26, 47, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .cookie-modal-backdrop--open {
    opacity: 1;
    pointer-events: auto;
  }

  .cookie-modal {
    position: fixed;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 60%) scale(0.96);
    width: min(520px, calc(100vw - 32px));
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 80px rgba(10, 26, 47, 0.28), 0 0 0 1px rgba(29, 108, 255, 0.08);
    z-index: 9200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
  }

  .cookie-modal--open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 50%) scale(1);
  }

  .cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, var(--brand), var(--accent));
    background-size: 100% 3px;
    background-repeat: no-repeat;
    background-position: bottom;
  }

  .cookie-modal-header h3 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
  }

  .cookie-modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-soft);
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-family: inherit;
    flex-shrink: 0;
  }

  .cookie-modal-close:hover {
    background: var(--line);
    color: var(--ink);
  }

  .cookie-modal-body {
    padding: 20px 24px;
    display: grid;
    gap: 2px;
  }

  .cookie-modal-intro {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 14px;
  }

  .cookie-category {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .cookie-category:last-child { border-bottom: none; }

  .cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .cookie-category-header strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px;
  }

  .cookie-category-desc {
    font-size: 12px;
    color: var(--ink-muted);
    display: block;
    line-height: 1.45;
  }

  .cookie-toggle--disabled span {
    font-size: 11px;
    font-weight: 700;
    color: var(--success);
    background: rgba(0, 184, 144, 0.12);
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
  }

  .cookie-toggle-switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
  }

  .cookie-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
  }

  .cookie-toggle-track {
    position: absolute;
    inset: 0;
    background: var(--line);
    border-radius: 100px;
    transition: background 0.25s;
  }

  .cookie-toggle-track::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    left: 3px;
    top: 3px;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  }

  .cookie-toggle-switch input:checked + .cookie-toggle-track {
    background: var(--brand);
  }

  .cookie-toggle-switch input:checked + .cookie-toggle-track::before {
    transform: translateX(18px);
  }

  .cookie-modal-footer {
    display: flex;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid var(--line);
    background: var(--bg-soft);
  }

  .cookie-modal-footer .cookie-btn-necessary {
    background: var(--bg-soft);
    color: var(--ink-soft);
    border: 1.5px solid var(--line);
  }

  .cookie-modal-footer .cookie-btn-necessary:hover {
    border-color: var(--ink);
    color: var(--ink);
    background: white;
  }

  .cookie-modal-footer .cookie-btn-accept {
    flex: 1;
  }

  @media (max-width: 480px) {
    .cookie-modal-footer { flex-direction: column-reverse; }
    .cookie-modal-footer .cookie-btn { width: 100%; text-align: center; }
  }
