/* startseite.css — seiten-spezifisches Sektions-Layout.
   Tokens, Typografie, Buttons, Nav und Footer kommen zentral aus base.css (eine Wahrheit). */

    /* ══════════════════════════════════════════
       STARTSEITE — V2-Struktur + V5-Optik
       ══════════════════════════════════════════ */

    /* ── HERO ── */
    .hero {
      position: relative;
      padding: 0;
    }
    /* Bild oben als breite 16:9-Fläche */
    .hero-media {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      max-height: 80vh;
      /* randlos (volle Breite), nur unten abgerundet */
      border-radius: 0 0 var(--radius-xl) var(--radius-xl);
      overflow: hidden;
      background: var(--warm-900);
    }
    .hero-media img.hero-bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    /* Inhalt darunter (heller Grund): Text links, Stat-Karten rechts */
    .hero-content {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 56px;
      align-items: center;
      padding: 52px var(--pad) 0;
    }
    .hero-inner-content {
      max-width: 620px;
    }
    .hero-inner-label {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-inner-label::before {
      content: '';
      width: 32px;
      height: 2px;
      background: var(--orange);
    }
    .hero-inner-headline {
      font-family: var(--font-display);
      font-size: 60px;
      font-weight: 800;
      line-height: 1.02;
      color: var(--warm-900);
      letter-spacing: -1.5px;
      margin-bottom: 20px;
    }
    .hero-inner-headline .accent {
      color: var(--orange);
    }
    .hero-inner-desc {
      font-family: var(--font-serif);
      font-size: 18px;
      line-height: 1.7;
      color: var(--warm-500);
      margin-bottom: 32px;
      max-width: 480px;
      font-weight: 300;
      font-style: italic;
    }
    .hero-inner-actions {
      display: flex;
      gap: 12px;
    }
    /* Google-Bewertung im Hero (Sterne blau) */
    .hero-google {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 28px;
    }
    .hero-google-stars {
      color: var(--blue);
      font-size: 17px;
      letter-spacing: 2px;
      flex-shrink: 0;
    }
    .hero-google-text {
      font-size: 14px;
      color: var(--warm-500);
    }
    .hero-google-text strong { color: var(--warm-900); font-weight: 700; }

    /* Floating stat cards on hero */
    .hero-stats {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .hero-stat-card {
      background: var(--sand);
      border: 1px solid var(--warm-100);
      border-radius: var(--radius-md);
      padding: 20px 28px;
    }
    .hero-stat-num {
      font-family: var(--font-display);
      font-size: 38px;
      font-weight: 800;
      color: var(--warm-900);
      line-height: 1;
    }
    .hero-stat-num span { color: var(--blue); }
    .hero-stat-label {
      font-size: 12px;
      color: var(--warm-500);
      margin-top: 4px;
    }

    /* Brand text below hero */
    .hero-brand-text {
      position: relative;
      z-index: 5;
      padding: 48px 20px 0;
      display: flex;
      align-items: flex-end;
      gap: 32px;
    }
    .hero-brand-name {
      font-family: var(--font-display);
      font-size: 140px;
      font-weight: 800;
      line-height: 0.88;
      letter-spacing: -4px;
      text-transform: uppercase;
      color: var(--warm-900);
    }
    .hero-brand-name .light {
      color: var(--warm-300);
      font-weight: 700;
    }
    .hero-brand-sub {
      padding-bottom: 24px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .hero-brand-sub .label { color: var(--warm-400); }
    .hero-brand-sub .tagline {
      font-family: var(--font-serif);
      font-size: 18px;
      font-style: italic;
      color: var(--warm-600);
    }


    /* ── TRUST BAR ── */
    .trust-bar {
      display: flex;
      justify-content: center;
      gap: 0;
      padding: 0 var(--pad);
      margin: 60px 0;
    }
    .trust-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 32px 24px;
      text-align: center;
      position: relative;
    }
    .trust-item + .trust-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20%;
      bottom: 20%;
      width: 1px;
      background: var(--warm-200);
    }
    .trust-icon {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-sm);
      background: var(--orange-soft);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .trust-icon svg {
      width: 24px;
      height: 24px;
      fill: var(--orange);
    }
    .trust-text {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      color: var(--warm-900);
    }
    .trust-sub {
      font-size: 13px;
      color: var(--warm-400);
      line-height: 1.4;
    }


    /* ── HERSTELLER-LOGO-BAND (automatisches Laufband) ── */
    .partner-band {
      padding: 56px var(--pad);
      overflow: hidden;
    }
    /* Weiß-Variante: dunkle, abgerundete Box (wie das Zahlen-Band) */
    .partner-band.is-weiss {
      background: var(--warm-900);
      margin: 8px var(--pad) 24px;
      padding: 52px 0;
      border-radius: var(--radius-xl);
    }
    .partner-head {
      text-align: center;
      margin-bottom: 36px;
      padding: 0 var(--pad);
    }
    .partner-head .label { display: flex; justify-content: center; margin-bottom: 10px; }
    .partner-title {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 700;
      color: var(--warm-900);
      letter-spacing: -0.5px;
    }
    .partner-band.is-weiss .partner-title { color: var(--white); }
    /* Laufband: Track = zwei identische Sets, scrollt um genau ein Set (-50 %) → nahtlos.
       Weiche Ränder per mask-image, damit die Logos nicht hart abgeschnitten erscheinen. */
    .partner-marquee {
      position: relative;
      width: 100%;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
      mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
    }
    .partner-track {
      display: flex;
      width: max-content;
      animation: partner-scroll var(--partner-dur, 40s) linear infinite;
    }
    .partner-marquee:hover .partner-track { animation-play-state: paused; }
    .partner-set {
      display: flex;
      align-items: center;
      gap: 72px;
      padding-right: 72px;
      flex: 0 0 auto;
    }
    .partner-logo {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 46px;
    }
    .partner-logo img {
      max-height: 46px;
      width: auto;
      max-width: 170px;
      object-fit: contain;
      opacity: 0.9;
      transition: opacity 0.3s ease;
    }
    .partner-logo:hover img { opacity: 1; }
    /* Weiß-Einfärbung: jedes Logo (egal ob farbig, SVG oder PNG) einheitlich weiß. */
    .partner-band.is-weiss .partner-logo img {
      filter: brightness(0) invert(1);
      opacity: 0.85;
    }
    .partner-band.is-weiss .partner-logo:hover img { opacity: 1; }
    @keyframes partner-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .partner-empty {
      text-align: center;
      font-size: 14px;
      color: var(--warm-400);
      padding: 4px var(--pad);
    }
    .partner-band.is-weiss .partner-empty { color: rgba(255,255,255,0.5); }
    /* Reduzierte Bewegung: kein Lauf — Logos statisch, zentriert umgebrochen. */
    @media (prefers-reduced-motion: reduce) {
      .partner-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
      .partner-set { flex-wrap: wrap; justify-content: center; padding-right: 0; row-gap: 28px; }
      .partner-set[aria-hidden="true"] { display: none; }
    }
    @media (max-width: 640px) {
      .partner-band { padding: 40px var(--pad); }
      .partner-band.is-weiss { padding: 40px 0; margin: 8px var(--pad) 20px; }
      .partner-head { margin-bottom: 26px; }
      .partner-title { font-size: 21px; }
      .partner-set { gap: 46px; padding-right: 46px; }
      .partner-logo, .partner-logo img { height: 34px; max-height: 34px; }
      .partner-logo img { max-width: 120px; }
    }


    /* ── SERVICES ── */
    .services {
      padding: 80px var(--pad) 120px;
    }
    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
    }
    .services-header-left .label { margin-bottom: 12px; }
    .services-header-left .t-xl { max-width: 550px; }

    /* Zwei präsente Leistungen groß nebeneinander (Bild oben, Text unten) */
    .service-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }
    .service-feature {
      display: flex;
      flex-direction: column;
      background: var(--sand);
      border-radius: var(--radius-xl);
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .service-feature:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    }
    .service-feature-img {
      height: 300px;
      overflow: hidden;
    }
    .service-feature-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .service-feature:hover .service-feature-img img { transform: scale(1.04); }
    .service-feature-body {
      padding: 40px 44px 44px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .service-feature-num {
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      color: var(--orange);
      letter-spacing: 2px;
      margin-bottom: 16px;
    }
    .service-feature-body h3 {
      font-family: var(--font-display);
      font-size: 30px;
      font-weight: 700;
      line-height: 1.1;
      color: var(--warm-900);
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }
    .service-feature-body p {
      font-size: 15px;
      line-height: 1.8;
      color: var(--warm-500);
      margin-bottom: 28px;
      max-width: 440px;
    }

    /* Grid of service cards */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 20px;
    }
    /* Steht die letzte Kachel allein in ihrer Reihe (ungerade Anzahl) → mittig */
    .service-grid .service-card:last-child:nth-child(3n+1) { grid-column: 2; }
    .service-card {
      background: var(--sand);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      text-decoration: none;
      color: inherit;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    }
    .service-card-img {
      height: 200px;
      overflow: hidden;
    }
    .service-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .service-card:hover .service-card-img img { transform: scale(1.04); }
    .service-card-body {
      padding: 28px 28px 32px;
    }
    .service-card-num {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      color: var(--orange);
      letter-spacing: 2px;
      margin-bottom: 10px;
    }
    .service-card h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--warm-900);
      margin-bottom: 8px;
    }
    .service-card p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--warm-500);
      margin-bottom: 20px;
    }
    .service-card-link {
      font-size: 13px;
      font-weight: 500;
      color: var(--warm-800);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* Bottom row: last 2 services as wide cards */
    .service-grid-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .service-wide {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      background: var(--sand);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.4s ease;
      text-decoration: none;
      color: inherit;
    }
    .service-wide:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    }
    .service-wide-img {
      min-height: 240px;
      overflow: hidden;
    }
    .service-wide-body {
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .service-wide-body .service-card-num { margin-bottom: 10px; }
    .service-wide-body h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--warm-900);
      margin-bottom: 8px;
    }
    .service-wide-body p { font-size: 14px; line-height: 1.7; color: var(--warm-500); margin-bottom: 16px; }


    /* ── NUMBERS BAND ── */
    .numbers {
      margin: 60px var(--pad);
      background: var(--warm-900);
      border-radius: var(--radius-xl);
      padding: 100px 80px;
      position: relative;
      overflow: hidden;
    }
    .numbers-watermark {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-display);
      font-size: 220px;
      font-weight: 800;
      text-transform: uppercase;
      color: rgba(255,255,255,0.025);
      letter-spacing: -8px;
      white-space: nowrap;
      pointer-events: none;
    }
    .numbers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 48px;
      position: relative;
      z-index: 2;
    }
    .number-item {
      text-align: center;
      padding: 24px 0;
      position: relative;
    }
    .number-item + .number-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20%;
      bottom: 20%;
      width: 1px;
      background: rgba(255,255,255,0.06);
    }
    .number-val {
      font-family: var(--font-display);
      font-size: 64px;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      letter-spacing: -2px;
    }
    .number-val span { color: var(--orange); }
    .number-lbl {
      font-size: 13px;
      color: var(--warm-500);
      margin-top: 12px;
      letter-spacing: 0.5px;
    }
    .numbers-deco {
      position: absolute;
      top: 28px;
      right: 40px;
      font-family: var(--font-display);
      font-size: 24px;
      color: rgba(255,255,255,0.08);
      letter-spacing: 4px;
    }


    /* ── ABOUT TEASER ── */
    .about-teaser {
      padding: 140px var(--pad) 120px;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-images {
      position: relative;
      height: 520px;
    }
    .about-img-1 {
      position: absolute;
      top: 0;
      left: 0;
      width: 65%;
      height: 75%;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    }
    .about-img-2 {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 55%;
      height: 60%;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 6px solid var(--white);
      box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    }
    .about-badge {
      position: absolute;
      top: 50%;
      left: 55%;
      transform: translate(-50%, -50%);
      background: var(--blue);
      color: var(--white);
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      box-shadow: 0 8px 30px rgba(43,171,227,0.4);
      z-index: 5;
    }
    .about-badge .big { font-size: 28px; font-weight: 800; line-height: 1; }
    .about-badge .small { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
    .about-text .label { margin-bottom: 12px; }
    .about-text .t-lg { margin-bottom: 20px; }
    .about-text .t-lg .accent { color: var(--orange); }
    .about-text .text-lg { margin-bottom: 32px; }
    .about-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 36px;
    }
    .about-feature {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 15px;
      font-weight: 500;
      color: var(--warm-700);
    }
    .about-feature-icon {
      width: 36px;
      height: 36px;
      background: var(--orange-soft);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .about-feature-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--orange);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }


    /* ── REFERENZEN TEASER ── */
    .ref-teaser {
      padding: 120px var(--pad);
      background: var(--sand);
    }
    .ref-teaser-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
    }
    .ref-teaser-header .label { margin-bottom: 12px; }
    .ref-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 1fr;
      grid-template-rows: 280px 280px;
      gap: 20px;
    }
    .ref-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
    }
    .ref-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .ref-card:hover img { transform: scale(1.04); }
    .ref-card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    }
    .ref-card-overlay span {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--orange);
    }
    .ref-card-overlay h3 {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      margin-top: 4px;
    }
    .ref-card:first-child { grid-row: span 2; }


    /* ── CTA BAND ── */
    .cta-band { margin-top: 80px; margin-bottom: 80px; }


    /* ══════════════════════════════════════════
       RESPONSIVE — Startseite (Desktop unveraendert)
       ══════════════════════════════════════════ */
    @media (max-width: 900px) {
      body { width: 100%; }

      /* HERO — aus absoluter Positionierung in den Fluss */
      .hero { padding: 0; }
      .hero-media { aspect-ratio: 4 / 3; max-height: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
      .hero-content { grid-template-columns: 1fr; gap: 28px; padding: 28px var(--pad) 0; }
      .hero-inner-content { max-width: 100%; }
      .hero-inner-headline { font-size: 40px; }
      .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
      }
      .hero-stat-card { flex: 1 1 150px; min-width: 0; }

      /* Brand-Typo unter Hero */
      .hero-brand-text { flex-direction: column; align-items: flex-start; gap: 16px; padding: 32px 20px 0; }
      .hero-brand-name { font-size: 72px; letter-spacing: -2px; }
      .hero-brand-sub { padding-bottom: 0; }

      /* Trust-Chips-Reihe -> Raster */
      .trust-bar { flex-wrap: wrap; padding: 0 20px; margin: 40px 0; }
      .trust-item { flex: 1 1 40%; padding: 20px 16px; }
      .trust-item + .trust-item::before { display: none; }

      /* Services */
      .services { padding: 60px 20px 80px; }
      .services-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
      .services-header-left .t-xl { font-size: 44px; }
      .service-feature-img { height: 240px; }
      .service-feature-body { padding: 32px 28px 34px; }
      .service-grid { grid-template-columns: repeat(2, 1fr); }

      /* Zahlen-Band */
      .numbers { margin: 40px 20px; padding: 60px 28px; }
      .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .number-item + .number-item::before { display: none; }
      .number-val { font-size: 52px; }
      .numbers-watermark { font-size: 140px; }

      /* Familienbetrieb-Zweispalter */
      .about-teaser { grid-template-columns: minmax(0, 1fr); gap: 48px; padding: 80px 20px; }
      .about-images, .about-text { min-width: 0; }
      .about-images { height: 380px; }

      /* Referenz-Grid */
      .ref-teaser { padding: 80px 20px; }
      .ref-teaser-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
      .ref-grid { grid-template-columns: 1fr; grid-template-rows: none; }
      .ref-card { height: 240px; }
      .ref-card:first-child { grid-row: auto; }

      /* CTA-Band */

      /* Footer */
      .footer { padding: 60px 28px 32px; margin: 0 20px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }
      .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
    }

    @media (max-width: 640px) {
      .hero-inner-headline { font-size: 34px; }
      .hero-brand-name { font-size: 52px; }
      .hero-inner-actions { flex-direction: column; align-items: stretch; }
      .hero-inner-actions .btn { justify-content: center; }
      .hero-stat-card { flex: 1 1 100%; }

      /* Leistungen: jede Kachel volle Breite untereinander (Feature + Grid einspaltig) */
      .service-features { grid-template-columns: 1fr; }
      .service-grid { grid-template-columns: 1fr; }
      .service-feature-img { height: 220px; }
      .service-feature-body { padding: 26px 22px 30px; }
      .service-card-img { height: 190px; }
      .service-card-body { padding: 22px 22px 26px; }
      .service-card h3 { font-size: 20px; margin-bottom: 8px; }
      .service-card-link { font-size: 13px; }

      /* Trust-Chips: statisches 2er-Raster (kein Laufband mehr — das übernimmt jetzt
         allein das Hersteller-Logo-Band; zwei Auto-Läufe untereinander waren zu unruhig).
         Der 5. Chip steht allein in der letzten Reihe und wird zentriert. */
      .trust-bar { flex-wrap: wrap; justify-content: center; gap: 10px; padding: 0 16px; margin: 32px 0; }
      .trust-item { flex: 1 1 42%; max-width: 47%; padding: 16px 12px; }
      .trust-icon { width: 46px; height: 46px; }

      .services-header-left .t-xl { font-size: 36px; }
      .service-feature-body h3 { font-size: 28px; }

      .numbers-grid { grid-template-columns: 1fr; }
      .number-val { font-size: 48px; }

      .about-images { height: 300px; }
      .about-teaser { padding-left: var(--pad); padding-right: var(--pad); }
      .about-img-1, .about-img-2 { box-shadow: 0 12px 30px rgba(0,0,0,0.14); }

      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    }

/* CTA-Band „Projekt geplant?" — vertikaler Seitenabstand dieser Seite (Bauteil: _cta-band.css) */
@media (max-width: 900px) { .cta-band { margin-top: 60px; margin-bottom: 60px; } }

/* ══ DESKTOP-HERO: klassisches Vollbild mit Text-Overlay (Kundenwunsch: nur MOBIL
   gestapelt). Setzt die gestapelte Basis ab 901px zurück auf das ursprüngliche
   Overlay — Bild als Vollflächen-Hintergrund, heller Text/Stats darauf. ══ */
@media (min-width: 901px) {
  .hero { padding: 0 var(--pad); }
  .hero-media {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    aspect-ratio: auto;
    max-height: none;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    background: var(--warm-900);
  }
  .hero-media img.hero-bg { opacity: 0.45; filter: contrast(1.08); }
  .hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(26,25,23,0.15) 0%, rgba(26,25,23,0.25) 40%, rgba(26,25,23,0.7) 100%);
    z-index: 1;
  }
  .hero-content {
    position: relative;
    min-height: 100vh;
    display: block;
    padding: 0;
    z-index: 2;
  }
  .hero-inner-content {
    position: absolute;
    bottom: 80px; left: 72px;
    max-width: 560px;
    z-index: 10;
  }
  .hero-inner-headline { font-size: 56px; color: var(--white); }
  .hero-inner-desc { color: rgba(255,255,255,0.6); max-width: 440px; }
  .hero-google-text { color: rgba(255,255,255,0.65); }
  .hero-google-text strong { color: var(--white); }
  .hero-stats {
    position: absolute;
    right: 72px; bottom: 80px;
    z-index: 10;
  }
  .hero-stat-card {
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 190px;
  }
  .hero-stat-num { color: var(--white); }
  .hero-stat-label { color: rgba(255,255,255,0.5); }
  /* Zweiter Button auf dunklem Bild wieder hell */
  .hero-inner-actions .btn-outline {
    border-color: rgba(255,255,255,0.35);
    color: var(--white);
    background: transparent;
  }
  .hero-inner-actions .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.12);
  }
}
