/* ===== KFZ Sachverständigung NRW – Stylesheet ===== */
/* Generiert aus index.html | Stand: 2026-05 */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Inter-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Inter-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/PlayfairDisplay-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/PlayfairDisplay-800.ttf') format('truetype');
}

/* ===== RESET & VARIABLES ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:       #0B1D3A;
      --navy-mid:   #142B52;
      --navy-light: #1E3A6E;
      --gold:       #C8A84B;
      --gold-light: #E0C06A;
      --white:      #FFFFFF;
      --gray-50:    #F4F6FA;
      --gray-100:   #E8ECF4;
      --gray-300:   #B0BAD0;
      --gray-500:   #6B7A99;
      --gray-700:   #374261;
      --gray-900:   #0D1829;
      --red:        #D93030;
      --green:      #1A8A5A;
      --shadow-sm:  0 2px 8px rgba(11,29,58,0.08);
      --shadow-md:  0 8px 32px rgba(11,29,58,0.14);
      --shadow-lg:  0 20px 60px rgba(11,29,58,0.20);
      --radius:     12px;
      --radius-lg:  20px;
      --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

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

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    ul { list-style: none; }

    /* ===== UTILITIES ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .section { padding: 96px 0; }
    .section--gray { background: var(--gray-50); }
    .section--dark { background: var(--navy); color: var(--white); }

    .tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      position: relative;
      padding-bottom: 10px;
    }
    .tag::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), rgba(200,168,75,0.20));
      border-radius: 2px;
    }
    .heading-xl {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 800;
      line-height: 1.15;
      color: var(--navy);
    }
    .heading-xl--white { color: var(--white); }
    .heading-lg {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 700;
      line-height: 1.2;
    }
    .heading-md {
      font-size: 22px;
      font-weight: 700;
      line-height: 1.3;
    }
    .text-lead {
      font-size: 18px;
      color: var(--gray-500);
      line-height: 1.7;
      max-width: 600px;
    }
    .text-lead--white { color: rgba(255,255,255,0.72); }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
      border: 2px solid transparent;
      white-space: nowrap;
    }
    .btn--primary {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, #d4b05a 100%);
      color: var(--navy);
      box-shadow: 0 2px 8px rgba(200,168,75,0.20);
    }
    .btn--primary:hover {
      background: linear-gradient(135deg, var(--gold-light) 0%, #e8cc7a 60%, var(--gold) 100%);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(200,168,75,0.50);
    }
    .btn--outline {
      background: transparent;
      border-color: rgba(255,255,255,0.4);
      color: var(--white);
    }
    .btn--outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }
    .btn--outline-dark {
      background: transparent;
      border-color: var(--navy);
      color: var(--navy);
      box-shadow: inset 0 0 0 0 var(--navy);
    }
    .btn--outline-dark:hover {
      background: var(--navy);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(11,29,58,0.22);
    }

    /* ===== SKIP LINK (Accessibility) ===== */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 16px;
      z-index: 9999;
      background: var(--gold);
      color: var(--navy);
      padding: 10px 20px;
      border-radius: 0 0 8px 8px;
      font-weight: 700;
      font-size: 14px;
      transition: top 0.2s ease;
    }
    .skip-link:focus { top: 0; }

    /* ===== NAVIGATION ===== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(11,29,58,0.96);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: var(--transition);
    }
    /* Nav scrolled state (JS adds .scrolled class) */
    .nav.scrolled {
      background: rgba(255,255,255,0.97);
      border-bottom-color: var(--gray-100);
      box-shadow: 0 4px 24px rgba(11,29,58,0.10);
    }
    .nav.scrolled .nav__logo-main { color: var(--navy); }
    .nav.scrolled .nav__links a  { color: var(--gray-700); }
    .nav.scrolled .nav__links a:hover { color: var(--gold); }
    .nav.scrolled .nav__phone   { color: var(--navy); }
    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .nav__logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav__logo-icon {
      width: 42px;
      height: 42px;
      background: var(--gold);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .nav__logo-icon svg { width: 24px; height: 24px; }
    .nav__logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    .nav__logo-main {
      font-size: 15px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: 0.02em;
    }
    .nav__logo-sub {
      font-size: 11px;
      color: var(--gold);
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .nav__links {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav__links a {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.75);
      transition: var(--transition);
    }
    .nav__links a:hover { color: var(--gold); }
    .nav__cta {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .nav__phone {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--white);
      font-size: 15px;
      font-weight: 700;
      transition: var(--transition);
    }
    .nav__phone:hover { color: var(--gold); }
    .nav__phone-icon {
      width: 32px;
      height: 32px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 2.5s infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(200,168,75,0.5); }
      50%       { box-shadow: 0 0 0 8px rgba(200,168,75,0); }
    }
    .nav__phone-icon svg { width: 16px; height: 16px; color: var(--navy); }

    /* Hamburger */
    .nav__burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .nav__burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: var(--transition);
    }

    /* Mobile menu */
    .nav__mobile {
      display: none;
      flex-direction: column;
      gap: 0;
      background: var(--navy-mid);
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav__mobile.open { display: flex; }
    .nav__mobile a {
      padding: 14px 24px;
      color: rgba(255,255,255,0.8);
      font-size: 15px;
      font-weight: 500;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: var(--transition);
    }
    .nav__mobile a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      background-image:
        linear-gradient(to right, rgba(11,29,58,0.92) 0%, rgba(11,29,58,0.80) 35%, rgba(11,29,58,0.45) 65%, rgba(11,29,58,0.20) 100%),
        url('../images/startbild.PNG');
      background-repeat: no-repeat, no-repeat;
      background-position: center center, center 20%;
      background-size: cover, 80% auto;
      display: flex;
      align-items: center;
      padding-top: 72px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 80px;
      background: var(--white);
      clip-path: ellipse(55% 100% at 50% 100%);
    }
    .hero__content {
      max-width: 750px;
      padding: 80px 0;
      animation: fadeUp 0.9s ease both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200,168,75,0.15);
      border: 1px solid rgba(200,168,75,0.35);
      border-radius: 100px;
      padding: 6px 16px 6px 10px;
      font-size: 13px;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 28px;
    }
    .hero__badge-dot {
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
      animation: blink 1.4s infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.3; }
    }
    .hero__title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(38px, 6vw, 72px);
      font-weight: 800;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 24px;
    }
    .hero__title em {
      font-style: normal;
      color: var(--gold);
    }
    .hero__sub {
      font-size: 18px;
      color: rgba(255,255,255,0.70);
      line-height: 1.7;
      margin-bottom: 40px;
      max-width: 580px;
    }
    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 56px;
    }
    .hero__trust {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      animation: fadeUp 0.9s 0.3s ease both;
    }
    .hero__trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.75);
      font-size: 14px;
      font-weight: 500;
    }
    .hero__trust-icon {
      width: 36px;
      height: 36px;
      background: rgba(200,168,75,0.18);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero__trust-icon svg { width: 18px; height: 18px; color: var(--gold); }

    /* ===== STATS BAR ===== */
    .stats {
      background: var(--navy);
      padding: 0;
    }
    .stats__inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stats__item {
      padding: 40px 24px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.10);
      transition: var(--transition);
      position: relative;
    }
    .stats__item:last-child { border-right: none; }
    .stats__item::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 48px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 2px;
      transition: var(--transition);
    }
    .stats__item:hover {
      background: rgba(200,168,75,0.06);
    }
    .stats__item:hover::after { transform: translateX(-50%) scaleX(1); }
    .stats__num {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
      text-shadow: 0 2px 12px rgba(200,168,75,0.30);
    }
    .stats__label {
      font-size: 12px;
      color: rgba(255,255,255,0.55);
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* ===== QUICKHELP ===== */
    .quickhelp { padding-top: 72px; }
    .quickhelp__card {
      background: linear-gradient(135deg, rgba(11,29,58,0.95), rgba(30,58,110,0.95));
      color: var(--white);
      border-radius: var(--radius-lg);
      padding: 42px;
      box-shadow: var(--shadow-lg);
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 28px 36px;
      align-items: center;
    }
    .quickhelp__text { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 620px; }
    .quickhelp__items {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .quickhelp__item {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.9);
      border-radius: 10px;
      padding: 11px 14px 11px 40px;
      font-size: 14px;
      font-weight: 600;
      position: relative;
      transition: var(--transition);
    }
    .quickhelp__item::before {
      content: '';
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231A8A5A' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
    }
    .quickhelp__item:hover {
      background: rgba(255,255,255,0.13);
      border-color: rgba(200,168,75,0.35);
      transform: translateX(4px);
    }
    .quickhelp__actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      grid-column: 1 / -1;
    }

    /* ===== SECTION HEADER ALIAS (CSS-only, kein HTML geändert) ===== */
    .section__header,
    .services__header,
    .rights__header,
    .allinone__header,
    .compare__header,
    .testimonials__header,
    .process__header,
    .faq__header {
      text-align: center;
      margin-bottom: 56px;
    }
    .section__header .text-lead,
    .services__header .text-lead,
    .rights__header .text-lead,
    .allinone__header .text-lead,
    .compare__header .text-lead,
    .testimonials__header .text-lead,
    .process__header .text-lead,
    .faq__header .text-lead {
      margin-left: auto;
      margin-right: auto;
      margin-top: 12px;
    }

    /* ===== RIGHTS ===== */
    .rights__header { text-align: center; margin-bottom: 56px; }
    .rights__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
    .rights__card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-left: 3px solid var(--gold);
      border-radius: var(--radius);
      padding: 28px 24px 24px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .rights__card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      opacity: 0;
      transition: var(--transition);
    }
    .rights__card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
      border-left-color: var(--gold-light);
    }
    .rights__card:hover::before { opacity: 1; }
    .rights__card-icon {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      transition: var(--transition);
    }
    .rights__card:hover .rights__card-icon {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    }
    .rights__card-icon svg {
      width: 26px;
      height: 26px;
      color: var(--gold);
      transition: var(--transition);
    }
    .rights__card:hover .rights__card-icon svg { color: var(--navy); }
    .rights__card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
    .rights__card p { color: var(--gray-500); font-size: 15px; line-height: 1.65; }

    /* ===== ALL IN ONE ===== */
    .allinone__header { text-align: center; margin-bottom: 56px; }
    .allinone__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .allinone__card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-top: 3px solid transparent;
      border-radius: var(--radius);
      padding: 28px 24px 24px;
      min-height: 200px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .allinone__card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition);
    }
    .allinone__card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--gray-100);
    }
    .allinone__card:hover::after { transform: scaleX(1); }
    .allinone__card-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      transition: var(--transition);
    }
    .allinone__card:hover .allinone__card-icon {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
    }
    .allinone__card-icon svg {
      width: 24px;
      height: 24px;
      color: var(--gold);
      transition: var(--transition);
    }
    .allinone__card:hover .allinone__card-icon svg { color: var(--navy); }
    .allinone__card h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--navy);
      overflow-wrap: anywhere;
      word-break: break-word;
      hyphens: auto;
    }
    .allinone__card p { color: var(--gray-500); font-size: 14px; line-height: 1.65; }

    /* ===== COMPARE ===== */
    .compare__header { text-align: center; margin-bottom: 56px; }
    .compare__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .compare__card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius);
      padding: 28px 24px 24px;
      transition: var(--transition);
    }
    .compare__card:hover {
      box-shadow: var(--shadow-sm);
    }
    .compare__card h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
    .compare__card ul { display: flex; flex-direction: column; gap: 10px; }
    .compare__card li {
      position: relative;
      padding-left: 22px;
      color: var(--gray-700);
      font-size: 14px;
      line-height: 1.55;
    }
    /* Default cards: rötliche X-Markierungen */
    .compare__card:not(.compare__card--highlight) li::before {
      content: '✕';
      font-size: 11px;
      font-weight: 700;
      color: #c0392b;
      position: absolute;
      top: 2px;
      left: 0;
      line-height: 1.4;
    }
    /* Highlight card: goldene Checkmarks */
    .compare__card--highlight li::before {
      content: '';
      width: 16px;
      height: 16px;
      min-width: 16px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231A8A5A' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
      position: absolute;
      top: 3px;
      left: 0;
    }
    .compare__card--highlight {
      border: 2px solid var(--gold);
      box-shadow: 0 12px 42px rgba(200,168,75,0.22);
      background: linear-gradient(160deg, #fffdf5 0%, #ffffff 60%);
      position: relative;
      transform: translateY(-4px);
    }
    .compare__card--highlight:hover {
      box-shadow: 0 18px 56px rgba(200,168,75,0.30);
      transform: translateY(-8px);
    }
    /* "Beste Wahl" Badge */
    .compare__card--highlight::before {
      content: '✓ Beste Wahl';
      position: absolute;
      top: -14px;
      right: 20px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
      box-shadow: 0 2px 10px rgba(200,168,75,0.40);
    }
    .compare__card--highlight h3 { color: var(--navy); }

    /* ===== TESTIMONIALS ===== */
    .testimonials__header { text-align: center; margin-bottom: 56px; }
    .testimonials__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .testimonial {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius);
      padding: 32px 28px 24px;
      position: relative;
      transition: var(--transition);
      overflow: hidden;
    }
    .testimonial:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
      border-color: rgba(200,168,75,0.25);
    }
    /* Dekoratives großes Anführungszeichen */
    .testimonial::before {
      content: '\201C';
      position: absolute;
      top: -8px;
      left: 20px;
      font-family: 'Playfair Display', serif;
      font-size: 96px;
      font-weight: 800;
      color: var(--gold);
      opacity: 0.12;
      line-height: 1;
      pointer-events: none;
    }
    .testimonial:hover::before { opacity: 0.20; }
    /* Sternebewertung */
    .testimonial__stars {
      display: flex;
      gap: 3px;
      margin-bottom: 14px;
    }
    .testimonial__stars::before {
      content: '★★★★★';
      color: var(--gold);
      font-size: 16px;
      letter-spacing: 2px;
    }
    /* Fallback: wenn keine .testimonial__stars vorhanden, via data-attr */
    .testimonial p {
      font-size: 15px;
      line-height: 1.70;
      color: var(--gray-700);
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }
    .testimonial cite {
      font-style: normal;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: var(--navy);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .testimonial cite::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
    }

    /* ===== SERVICE CARD IMAGE ===== */
    .service-card__img {
      display: block;
      width: calc(100% + 64px);
      height: 210px;
      object-fit: cover;
      margin: -40px -32px 28px;
      border-radius: calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) 0 0;
      transition: transform 0.45s ease;
    }
    .service-card:hover .service-card__img {
      transform: scale(1.04);
    }
    .service-card { overflow: hidden; }

    /* ===== WHY US IMAGE ===== */
    .whyus__img-wrap img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
      display: block;
    }

    /* ===== SERVICES ===== */
    .services__header {
      text-align: center;
      margin-bottom: 56px;
    }
    .services__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .service-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--navy-light), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition);
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card__icon {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }
    .service-card__icon svg { width: 30px; height: 30px; color: var(--gold); }
    .service-card__title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--navy);
    }
    .service-card__text {
      font-size: 15px;
      color: var(--gray-500);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .service-card__list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .service-card__list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--gray-700);
    }
    .service-card__list li::before {
      content: '';
      width: 16px;
      height: 16px;
      min-width: 16px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231A8A5A' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
      margin-top: 3px;
    }
    .service-card__link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 24px;
      font-size: 14px;
      font-weight: 700;
      color: var(--navy-light);
      transition: var(--transition);
    }
    .service-card__link:hover { gap: 10px; color: var(--gold); }

    /* ===== WHY US ===== */
    .whyus__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .whyus__visual {
      position: relative;
    }
    .whyus__img-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .whyus__img-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      color: rgba(255,255,255,0.4);
      font-size: 14px;
      text-align: center;
      padding: 40px;
    }
    .whyus__img-placeholder svg { width: 64px; height: 64px; opacity: 0.4; }
    .whyus__badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--gold);
      color: var(--navy);
      border-radius: var(--radius);
      padding: 20px 24px;
      box-shadow: var(--shadow-md);
      text-align: center;
    }
    .whyus__badge-num {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 800;
      line-height: 1;
    }
    .whyus__badge-label { font-size: 13px; font-weight: 700; margin-top: 4px; }
    .whyus__points {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .whyus__point {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .whyus__point-icon {
      width: 52px;
      height: 52px;
      min-width: 52px;
      background: var(--gray-50);
      border: 2px solid var(--gray-100);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    .whyus__point:hover .whyus__point-icon {
      background: var(--navy);
      border-color: var(--navy);
    }
    .whyus__point-icon svg { width: 24px; height: 24px; color: var(--navy); transition: var(--transition); }
    .whyus__point:hover .whyus__point-icon svg { color: var(--gold); }
    .whyus__point-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
    .whyus__point-text { font-size: 15px; color: var(--gray-500); line-height: 1.65; }

    /* ===== PROCESS ===== */
    .process__header { text-align: center; margin-bottom: 64px; }
    .process__steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
    }
    .process__steps::before {
      content: '';
      position: absolute;
      top: 48px;
      left: 16.66%;
      right: 16.66%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, var(--navy-light) 100%);
      z-index: 0;
      box-shadow: 0 0 8px rgba(200,168,75,0.30);
    }
    .process__step {
      text-align: center;
      padding: 0 32px;
      position: relative;
      z-index: 1;
    }
    .process__step-num {
      width: 96px;
      height: 96px;
      background: var(--navy);
      color: var(--gold);
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      border: 4px solid var(--white);
      box-shadow: var(--shadow-md), 0 0 0 0 rgba(200,168,75,0);
      transition: var(--transition);
      position: relative;
    }
    .process__step:hover .process__step-num {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy);
      transform: scale(1.10);
      box-shadow: var(--shadow-md), 0 0 0 6px rgba(200,168,75,0.20), 0 0 0 12px rgba(200,168,75,0.08);
    }
    .process__step-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
    .process__step-text { font-size: 15px; color: var(--gray-500); line-height: 1.65; }

    /* ===== FAQ ===== */
    .faq__header { text-align: center; margin-bottom: 56px; }
    .faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq__item {
      border: 1px solid var(--gray-100);
      border-radius: var(--radius);
      overflow: hidden;
      transition: var(--transition);
    }
    .faq__item.open { border-color: var(--navy-light); box-shadow: var(--shadow-sm); }
    .faq__q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 28px;
      background: var(--white);
      border: none;
      cursor: pointer;
      text-align: left;
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      transition: var(--transition);
    }
    .faq__q:hover { background: var(--gray-50); }
    .faq__item.open .faq__q { background: var(--navy); color: var(--white); }
    .faq__icon {
      width: 28px;
      height: 28px;
      min-width: 28px;
      border-radius: 50%;
      background: var(--gray-100);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    .faq__item.open .faq__icon { background: var(--gold); }
    .faq__icon svg { width: 14px; height: 14px; color: var(--navy); transition: var(--transition); }
    .faq__item.open .faq__icon svg { color: var(--navy); transform: rotate(45deg); }
    .faq__a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
      font-size: 15px;
      color: var(--gray-500);
      line-height: 1.7;
    }
    .faq__a-inner { padding: 20px 28px 24px; }
    .faq__item.open .faq__a { max-height: 500px; }

    /* ===== CONTACT ===== */
    .contact__grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 64px;
      align-items: flex-start;
    }
    .contact__info { color: var(--white); }
    .contact__info .tag { color: var(--gold); }
    .contact__info .heading-lg { color: var(--white); margin-bottom: 20px; }
    .contact__info p { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.7; margin-bottom: 40px; }
    .contact__details { display: flex; flex-direction: column; gap: 20px; }
    .contact__detail {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .contact__detail-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      background: rgba(200,168,75,0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .contact__detail-icon svg { width: 22px; height: 22px; color: var(--gold); }
    .contact__detail-label { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
    .contact__detail-value { font-size: 16px; font-weight: 600; color: var(--white); }
    .contact__detail-value a { color: var(--white); transition: var(--transition); }
    .contact__detail-value a:hover { color: var(--gold); }

    /* Form */
    .contact__form-wrap {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      box-shadow: var(--shadow-lg);
    }
    .contact__form-title {
      font-size: 22px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .contact__form-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 32px; }

    .form { display: flex; flex-direction: column; gap: 20px; }
    .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form__field { display: flex; flex-direction: column; gap: 6px; }
    .form__label { font-size: 13px; font-weight: 600; color: var(--navy); }
    .form__input, .form__select, .form__textarea {
      padding: 14px 16px;
      border: 1.5px solid var(--gray-100);
      border-radius: 8px;
      font-size: 15px;
      font-family: 'Inter', sans-serif;
      color: var(--navy);
      background: var(--gray-50);
      transition: var(--transition);
      outline: none;
    }
    .form__input:focus, .form__select:focus, .form__textarea:focus {
      border-color: var(--navy-light);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(30,58,110,0.1);
    }
    .form__textarea { resize: vertical; min-height: 110px; }
    .form__select { cursor: pointer; }

    /* File Upload */
    .form__upload-label {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 28px;
      border: 2px dashed var(--gray-300);
      border-radius: 10px;
      cursor: pointer;
      transition: var(--transition);
      background: var(--gray-50);
      text-align: center;
    }
    .form__upload-label:hover { border-color: var(--navy-light); background: rgba(30,58,110,0.04); }
    .form__upload-label svg { width: 36px; height: 36px; color: var(--gray-300); }
    .form__upload-label:hover svg { color: var(--navy-light); }
    .form__upload-title { font-size: 15px; font-weight: 600; color: var(--navy); }
    .form__upload-sub { font-size: 13px; color: var(--gray-500); }
    .form__upload-input { display: none; }
    .form__upload-files { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
    .form__file-chip {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(11,29,58,0.06);
      border-radius: 100px;
      padding: 4px 12px 4px 10px;
      font-size: 12px;
      color: var(--navy);
      font-weight: 500;
    }
    .form__file-chip button { background: none; border: none; cursor: pointer; line-height: 0; padding: 0; color: var(--gray-500); }
    .form__file-chip button:hover { color: var(--red); }

    .form__privacy {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: var(--gray-500);
      line-height: 1.5;
    }
    .form__privacy input[type="checkbox"] { margin-top: 2px; accent-color: var(--navy); }
    .form__privacy a { color: var(--navy-light); font-weight: 600; }
    .form__privacy a:hover { color: var(--gold); }

    .form__submit {
      background: var(--navy);
      color: var(--white);
      border: none;
      border-radius: 8px;
      padding: 18px 32px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .form__submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,0.35); }
    .form__submit svg { width: 18px; height: 18px; }
    .form__legal-note {
      font-size: 12px;
      color: var(--gray-500);
      line-height: 1.5;
      margin-top: -8px;
    }

    /* Success message */
    .form__success {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 20px;
      gap: 16px;
    }
    .form__success-icon {
      width: 72px;
      height: 72px;
      background: rgba(26,138,90,0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .form__success-icon svg { width: 36px; height: 36px; color: var(--green); }
    .form__success h3 { font-size: 22px; font-weight: 800; color: var(--navy); }
    .form__success p { font-size: 15px; color: var(--gray-500); line-height: 1.65; }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--gray-900);
      padding: 64px 0 0;
      color: rgba(255,255,255,0.6);
    }
    .footer__top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer__brand-name {
      font-size: 17px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 4px;
    }
    .footer__brand-sub { font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
    .footer__brand p {
      font-size: 14px;
      line-height: 1.7;
      margin: 16px 0 24px;
      max-width: 260px;
    }
    .footer__phone-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold);
      color: var(--navy);
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      transition: var(--transition);
    }
    .footer__phone-link:hover { background: var(--gold-light); }
    .footer__phone-link svg { width: 16px; height: 16px; }
    .footer__col-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 20px;
    }
    .footer__links { display: flex; flex-direction: column; gap: 12px; }
    .footer__links a {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      transition: var(--transition);
    }
    .footer__links a:hover { color: var(--gold); padding-left: 4px; }
    .footer__bottom {
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer__bottom p { font-size: 13px; }
    .footer__bottom-links { display: flex; gap: 24px; }
    .footer__bottom-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: var(--transition); }
    .footer__bottom-links a:hover { color: var(--gold); }

    /* ===== PHONE FLOAT BUTTON ===== */
    .phone-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 900;
      background: var(--gold);
      color: var(--navy);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 28px rgba(200,168,75,0.5);
      transition: var(--transition);
      animation: pulse-float 2.5s infinite;
    }
    .phone-float:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(200,168,75,0.65); }
    .phone-float svg { width: 26px; height: 26px; }
    @keyframes pulse-float {
      0%, 100% { box-shadow: 0 8px 28px rgba(200,168,75,0.5); }
      50%       { box-shadow: 0 8px 42px rgba(200,168,75,0.75); }
    }

    /* ===== GLOBAL BOX-SHADOW TRANSITIONS ===== */
    .service-card,
    .rights__card,
    .allinone__card,
    .compare__card,
    .testimonial,
    .faq__item {
      transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
                  box-shadow 0.28s cubic-bezier(0.4,0,0.2,1),
                  border-color 0.28s cubic-bezier(0.4,0,0.2,1),
                  background 0.28s cubic-bezier(0.4,0,0.2,1);
    }

    /* ===== CONSISTENT BORDER-RADIUS ===== */
    .rights__card,
    .allinone__card,
    .compare__card,
    .testimonial {
      border-radius: var(--radius);
    }

    /* ===== SECTION SPACING HARMONIZED ===== */
    .section { padding: 96px 0; }
    @media (max-width: 768px) {
      .section { padding: 64px 0; }
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* ===== QUICKHELP GRID MIN-WIDTH FIX ===== */
    /* Grid items expand to min-content width by default; reset to allow shrinking */
    .quickhelp__card > * { min-width: 0; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .quickhelp__card { grid-template-columns: 1fr; }
      .services__grid { grid-template-columns: 1fr 1fr; }
      .rights__grid { grid-template-columns: 1fr; }
      .allinone__grid { grid-template-columns: 1fr; }
      .compare__grid { grid-template-columns: 1fr; }
      .testimonials__grid { grid-template-columns: 1fr; }
      .whyus__grid { grid-template-columns: 1fr; gap: 48px; }
      .whyus__visual { display: none; }
      .footer__top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .section { padding: 64px 0; }
      .nav__links, .nav__phone { display: none; }
      .nav__burger { display: flex; }
      .nav__cta .btn { display: none; }
      .allinone__grid { grid-template-columns: 1fr; }
      .hero {
        background-position: center center, center top;
        background-size: cover, cover;
      }
      .services__grid { grid-template-columns: 1fr; }
      .stats__inner { grid-template-columns: repeat(2, 1fr); }
      .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
      .process__steps { grid-template-columns: 1fr; gap: 40px; }
      .process__steps::before { display: none; }
      .contact__grid { grid-template-columns: 1fr; }
      .contact__form-wrap { padding: 32px 24px; }
      .form__row { grid-template-columns: 1fr; }
      .footer__top { grid-template-columns: 1fr; gap: 32px; }
      .footer__bottom { flex-direction: column; text-align: center; }
      .hero__actions { flex-direction: column; }
      /* Soforthilfe auf kleinen Screens */
      .quickhelp__card { padding: 28px 20px; }
      .quickhelp__actions { flex-direction: column; }
      .quickhelp__actions .btn { width: 100%; justify-content: center; }
      /* Heading overflow verhindern */
      .heading-lg { word-break: break-word; hyphens: auto; }
      /* Stats Zahlen auf sehr kleinen Screens */
      .stats__num { font-size: clamp(28px, 8vw, 42px); }
    }

    /* ===== Extra-Small (≤ 360px) ===== */
    @media (max-width: 360px) {
      .container { padding: 0 16px; }
      .hero__title { font-size: clamp(28px, 7.5vw, 42px); word-break: break-word; }
      .hero__sub { font-size: 15px; }
      .contact__form-wrap { padding: 24px 16px; }
      .nav__logo-sub { display: none; }
    }

    /* ===== MOBILE SOFORTHILFE OVERRIDES (separate block for browser compatibility) ===== */
    @media (max-width: 768px) {
      .quickhelp__card { padding: 28px 20px; }
      .quickhelp__actions { flex-direction: column; }
      .quickhelp__actions .btn { width: 100%; justify-content: center; }
      .heading-lg { word-break: break-word; hyphens: auto; }
      .stats__num { font-size: clamp(28px, 8vw, 42px); }
    }
    @media (max-width: 360px) {
      .quickhelp__card { padding: 22px 16px; }
    }