  @font-face { font-family:'Quicksand'; font-weight:400; font-style:normal; src:url('fonts/Quicksand-Regular.woff2') format('woff2'); }
  @font-face { font-family:'Quicksand'; font-weight:500; font-style:normal; src:url('fonts/Quicksand-Medium.woff2') format('woff2'); }
  @font-face { font-family:'Quicksand'; font-weight:600; font-style:normal; src:url('fonts/Quicksand-SemiBold.woff2') format('woff2'); }
  @font-face { font-family:'Quicksand'; font-weight:700; font-style:normal; src:url('fonts/Quicksand-Bold.woff2') format('woff2'); }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

  :root {
    --blue: #759dd0;
    --blue-dark: #4785c2;
    --navy: #031a2f;
    --navy-2: #0a2a4a;
    --white: #ffffff;
    --mist: #eef3fb;
    --hairline: #d7e3f2;
    --fog: #5b6b7d;
    --ash: #8a97a6;
    --font: 'Quicksand', ui-sans-serif, system-ui, sans-serif;
    --page-max: 1320px;
    --nav-max: 1600px;
    --radius-card: 24px;
    --radius-pill: 300px;
  }

  html {
    /* clip statt hidden: verhindert horizontales Scrollen ohne auf iOS Safari
       position:sticky (Header) zu brechen (hidden erzeugt dort einen Scroll-Container) */
    overflow-x: clip;
  }

  body {
    font-family: var(--font);
    background: var(--white);
    color: var(--navy);
    -webkit-font-smoothing: antialiased;
  }

  .concept-badge {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 999;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 300px;
    opacity: 0.85;
    letter-spacing: 0.03em;
  }


  /* ── Announcement Bar ── */
  .announce {
    background: var(--blue);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 8px 20px;
  }
  .announce a { color: var(--navy); font-size: 15px; text-decoration: none; }
  .announce a:hover { text-decoration: underline; }
  .announce a.info-link { font-weight: 600; letter-spacing: 0.01em; }
  .announce a.cta-phone { font-weight: 700; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
  .announce a.cta-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

  @media (max-width: 600px) {
    .announce { gap: 12px; }
  }

  /* ── Navigation ── */
  nav {
    background: var(--navy);
    height: 110px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-inner { max-width: var(--nav-max); width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
  .nav-logo { display: flex; align-items: center; text-decoration: none; }
  .nav-logo img { height: 70px; width: auto; display: block; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a { color: #fff; font-size: 15px; font-weight: 600; letter-spacing: 0.05em; text-decoration: none; text-transform: uppercase; opacity: 0.85; position: relative; transition: color .2s ease; }
  .nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--blue); transition:width .25s ease; }
  .nav-links a:hover { color: var(--blue); opacity: 1; }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a.active { color: var(--blue); opacity: 1; }
  .nav-links a.active::after { width: 100%; }
  .btn-blue {
    background: var(--blue);
    color: var(--navy);
    border: none;
    border-radius: var(--radius-pill);
    padding: 12px 24px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    max-width: 100%;
  }

  /* ── Hero ── */
  .hero {
    background: var(--navy);
    height: calc(100vh - 110px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
  }
  /* Unterseiten: deutlich flacher als der volle Fensterhöhe-Hero der Startseite */
  .hero-page {
    background: var(--navy);
    height: clamp(320px, 46vh, 480px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
  }

  @media (max-width: 600px) {
    .hero { padding: 0 20px; }
    .hero-page { height: clamp(440px, 64vh, 620px); padding: 0 20px; }
  }
  .hero-page .hero-content h1 {
    font-size: clamp(30px, 3.6vw, 46px);
    max-width: 920px;
  }
  .hero-bg {
    position: absolute;
    inset: -30px;
    background-image:
      linear-gradient(100deg, rgba(3,26,47,0.88) 0%, rgba(3,26,47,0.72) 28%, rgba(3,26,47,0.32) 52%, rgba(3,26,47,0.15) 68%, rgba(3,26,47,0.35) 100%),
      linear-gradient(0deg, rgba(3,26,47,0.55) 0%, rgba(3,26,47,0.05) 35%, transparent 55%),
      url('images/hero-test.webp');
    background-size: cover;
    background-position: center 90%;
    z-index: 0;
    transform: translateY(var(--parallax-y, 0px));
    will-change: transform;
  }
  .hero-content { position: relative; z-index: 2; max-width: var(--page-max); margin: 0 auto; width: 100%; }
  .hero-content h1 {
    font-size: clamp(32px, 4.6vw, 62px);
    font-weight: 400;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 24px;
    max-width: 1100px;
  }
  .hero-sub {
    font-size: 20px;
    font-weight: 400;
    color: #c3d3e8;
    max-width: 720px;
    line-height: 1.55;
    margin-bottom: 40px;
  }
  .btn-white {
    background: #fff;
    color: var(--navy);
    border: none;
    border-radius: var(--radius-pill);
    padding: 16px 36px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
  }

  /* ── Sections ── */
  .section-white { background: var(--white); padding: 100px 40px; }
  .section-navy { background: var(--navy); padding: 100px 40px; }

  @media (max-width: 600px) {
    .section-white, .section-navy { padding-left: 20px; padding-right: 20px; }
  }
  .inner { max-width: var(--page-max); margin: 0 auto; }

  .section-eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-dark);
    margin-bottom: 14px;
  }
  .section-heading {
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
    max-width: 760px;
  }
  .section-heading-white { font-size: clamp(34px, 4.5vw, 54px); font-weight: 400; color: #fff; line-height: 1.08; letter-spacing: -1.2px; margin-bottom: 20px; }
  .section-body { font-size: 19px; font-weight: 400; color: var(--fog); max-width: 560px; line-height: 1.6; margin-bottom: 44px; }
  .section-body-white { font-size: 19px; font-weight: 400; color: #b9c8dc; max-width: 560px; line-height: 1.6; margin-bottom: 44px; }

  /* ── Feature Card ── */
  .feature-card {
    width: 100%;
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/7;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #dbe6f5 0%, #a9c2e0 35%, #6f93c4 65%, #2c4a70 100%);
  }
  .metric-overlay {
    position:absolute; left: 40px; bottom: 40px;
    background: rgba(3,26,47,0.55);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 128px; height: 128px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 2px solid rgba(255,255,255,0.4);
  }
  .metric-number { font-size: 34px; font-weight: 400; color: #fff; letter-spacing: -1px; }
  .metric-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 0.08em; text-transform: uppercase; text-align: center; margin-top: 3px; line-height: 1.3; }

  .section-cta { display: flex; justify-content: center; }

  /* ── Lab Mist Card ── */
  .lab-card {
    background: var(--mist);
    border-radius: var(--radius-card);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
  }
  .lab-card-image {
    width: 190px; min-width: 190px; height: 130px;
    border-radius: 16px;
    background: linear-gradient(135deg, #cfe0f5 0%, #7f9fc9 100%);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(3,26,47,0.5);
  }
  .lab-card-image svg { width: 40px; height: 40px; }
  .lab-card-content { flex: 1; }
  .lab-card-heading { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .lab-card-body { font-size: 16px; color: var(--fog); line-height: 1.55; }
  .btn-outlined {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--hairline);
    border-radius: var(--radius-pill);
    padding: 12px 26px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* ── Story Card Carousel (Referenzen-Vorschau) ── */
  .carousel-track { display: flex; gap: 24px; margin-bottom: 32px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .carousel-track::-webkit-scrollbar { display: none; }
  .story-card { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; border-radius: var(--radius-card); overflow: hidden; position: relative; aspect-ratio: 3/4; transition: transform 0.3s ease; }
  .story-card:hover { transform: translateY(-4px); }
  .story-card-bg { position: absolute; inset: 0; }
  .story-card-bg-1 { background: linear-gradient(160deg, #eef3fb 0%, #a9c2e0 50%, #4785c2 100%); }
  .story-card-bg-2 { background: linear-gradient(160deg, #dce7f5 0%, #759dd0 50%, #163a5c 100%); }
  .story-card-bg-3 { background: linear-gradient(160deg, #4785c2 0%, #2c4a70 55%, #0a1a2e 100%); }
  .story-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,26,47,0.45) 0%, transparent 45%, rgba(3,26,47,0.55) 100%); }
  .story-card-title { position: absolute; top: 20px; left: 20px; right: 20px; font-size: 22px; font-weight: 600; color: #fff; line-height: 1.25; }
  .story-card-stat { position: absolute; bottom: 20px; left: 20px; }
  .story-stat-num { font-size: 26px; font-weight: 400; color: #fff; letter-spacing: -0.6px; }
  .story-stat-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 0.08em; text-transform: uppercase; }
  .carousel-dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; }
  .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--navy); border: none; padding: 0; cursor: pointer; transition: background 0.2s ease; }
  .dot.inactive { background: var(--hairline); }

  /* ── Leistungspakete (Pricing-Grid Reinterpretation) ── */
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; margin-bottom: 24px; }
  .pricing-card { background: #fff; border-radius: var(--radius-card); border: 1px solid rgba(255,255,255,0.1); padding: 32px; display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease; }
  .pricing-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
  .pricing-card-alt { background: var(--mist); }
  .pricing-tier { font-size: 14px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); text-align: center; margin-bottom: 18px; }
  .pricing-device { width: 100%; height: 140px; border-radius: 16px; margin-bottom: 22px; background: linear-gradient(160deg, #1a3a5c 0%, #4785c2 100%); display:flex; align-items:center; justify-content:center; }
  .pricing-device-icon { display: flex; opacity: 0.85; }
  .pricing-device-icon svg { width: 40px; height: 40px; color: #fff; }
  .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; flex: 1; }
  .pricing-features li { font-size: 15px; color: #2c3a48; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
  .pricing-features li::before { content: '✓'; color: var(--blue-dark); font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
  .btn-navy { background: var(--navy); color: #fff; border: none; border-radius: var(--radius-pill); padding: 14px 24px; font-family: var(--font); font-size: 14px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; text-decoration: none; display: block; text-align: center; }

  /* ── Leistungen-Übersicht (Check-Icon-Grid) ── */
  .overview-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px 32px; }
  .overview-item { flex: 0 1 calc(33.333% - 22px); min-width: 280px; }
  .overview-title { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
  .overview-title::before { content: '✓'; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--blue); color: var(--blue); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
  .overview-title a { color: var(--blue); text-decoration: underline; }
  .overview-list { list-style: none; display: flex; flex-direction: column; gap: 8px; padding-left: 32px; }
  .overview-list li { font-size: 15px; color: #b9c8dc; line-height: 1.5; display: flex; align-items: flex-start; gap: 8px; }
  .overview-list li::before { content: '→'; color: var(--blue); flex-shrink: 0; }

  @media (max-width: 900px) {
    .overview-grid { gap: 32px; }
    .overview-item { flex-basis: 100%; }
  }
  .pricing-caption { text-align: center; font-size: 15px; color: #b9c8dc; margin-top: 24px; }

  /* ── Ratgeber/Blog-Vorschau ── */
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
  .blog-card {
    background: #fff;
    border: 1px solid var(--hairline);
    border-radius: var(--radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(3,26,47,0.12); }
  .blog-card-image { aspect-ratio: 16/10; background-size: cover; background-position: center; }
  .blog-card-image-1 { background: linear-gradient(135deg, #dbe6f5 0%, #759dd0 100%); }
  .blog-card-image-2 { background: linear-gradient(135deg, #cfe0f5 0%, #4785c2 100%); }
  .blog-card-image-3 { background: linear-gradient(135deg, #e6edf8 0%, #2c4a70 100%); }
  .blog-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .blog-card-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-dark); }
  .blog-card-title { font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.32; }
  .blog-card-excerpt { font-size: 15px; color: var(--fog); line-height: 1.55; flex: 1; }
  .blog-card-link { font-size: 14px; font-weight: 700; color: var(--blue-dark); text-decoration: none; }
  .blog-card-link::after { content: ""; position: absolute; inset: 0; }

  /* ── Media-Row (alternierende Bild/Text-Blöcke) ── */
  .media-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
  }
  .media-row.reverse .media-row-image { order: 2; }
  .media-row.reverse .media-row-text { order: 1; }
  .media-row-image {
    aspect-ratio: 4/3;
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
  }
  .media-row-image-1 { background-image: linear-gradient(135deg, #dbe6f5 0%, #8fa9d3 60%, #4785c2 100%); }
  .media-row-image-2 { background-image: linear-gradient(135deg, #cfe0f5 0%, #a9c2e0 55%, #6f93c4 100%); }
  .media-row-image-3 { background-image: linear-gradient(135deg, #e6edf8 0%, #b9cde6 55%, #2c4a70 100%); }
  .media-row-image-4 { background-image: linear-gradient(135deg, #eef3fb 0%, #9fb9dc 55%, #163a5c 100%); }
  .media-row-text h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 700; color: var(--navy); margin-bottom: 18px; line-height: 1.25; }
  .media-row-text p { font-size: 18px; color: var(--fog); line-height: 1.7; }

  @media (max-width: 900px) {
    .media-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
    .media-row.reverse .media-row-image, .media-row.reverse .media-row-text { order: initial; }
  }

  /* ── Google-Rezensionen ── */
  .review-summary { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
  .review-summary-score { font-size: 32px; font-weight: 700; color: var(--navy); }
  .review-summary-stars { color: #f2b134; font-size: 20px; letter-spacing: 2px; }
  .review-summary-text { font-size: 15px; color: var(--fog); }
  .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
  .review-card {
    background: var(--mist);
    border-radius: var(--radius-card);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .review-card-stars { color: #f2b134; font-size: 16px; letter-spacing: 2px; }
  .review-card-text { font-size: 16px; color: var(--navy); line-height: 1.6; flex: 1; }
  .review-card-footer { display: flex; align-items: center; gap: 12px; }
  .review-card-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--blue-dark);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px;
    flex-shrink: 0;
  }
  .review-card-author { font-size: 15px; font-weight: 700; color: var(--navy); }
  .review-card-meta { font-size: 13px; color: var(--ash); }

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

  /* ── FAQ-Akkordeon ── */
  .faq-list { display: flex; flex-direction: column; margin-bottom: 24px; }
  .faq-item { border-bottom: 1px solid var(--hairline); }
  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
  }
  .faq-icon { font-size: 22px; font-weight: 400; color: var(--blue-dark); flex-shrink: 0; transition: transform 0.25s ease; line-height: 1; }
  .faq-item.is-open .faq-icon { transform: rotate(45deg); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .faq-item.is-open .faq-answer { max-height: 400px; }
  .faq-answer-inner { padding: 0 0 22px; font-size: 17px; color: var(--fog); line-height: 1.65; max-width: 760px; }

  /* ── Kontaktformular (Kontaktseite) ── */
  .contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
  .contact-form-card { background: var(--mist); border-radius: var(--radius-card); padding: 44px; position: relative; min-width: 0; }
  .form-group { margin-bottom: 20px; min-width: 0; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-label { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--fog); margin-bottom: 8px; }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--hairline);
    border-radius: 12px;
    padding: 13px 16px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--navy);
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue-dark); box-shadow: 0 0 0 3px rgba(71,133,194,0.15); }
  .form-input.is-err, .form-select.is-err, .form-textarea.is-err { border-color: #c0392b; }
  .form-err { font-size: 12px; color: #c0392b; margin-top: 6px; min-height: 14px; }
  .form-textarea { min-height: 120px; resize: vertical; }
  .form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
  .form-consent input { margin-top: 3px; flex-shrink: 0; width: auto; }
  .form-consent label { font-size: 14px; color: var(--fog); line-height: 1.5; }
  .form-consent a { color: var(--blue-dark); font-weight: 600; }
  .form-submit-btn { width: 100%; justify-content: center; display: flex; align-items: center; gap: 8px; border: none; white-space: normal; text-align: center; }
  .form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
  .form-success { display: none; text-align: center; padding: 30px 10px; }
  .form-success-icon { font-size: 44px; margin-bottom: 14px; }
  .form-success h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .form-success p { font-size: 16px; color: var(--fog); line-height: 1.55; }

  .contact-info-stack { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
  .contact-method { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--hairline); border-radius: 16px; padding: 20px 22px; }
  .contact-method-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--mist); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
  .contact-method-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .contact-method-value { font-size: 15px; color: var(--blue-dark); font-weight: 600; text-decoration: none; }
  .contact-method-sub { font-size: 13px; color: var(--ash); margin-top: 4px; }

  /* ── Steps Card (dunkel, "So geht's weiter") ── */
  .steps-navy { background: var(--navy); border-radius: var(--radius-card); padding: 36px; }
  .steps-navy-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
  .steps-navy-title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 24px; }
  .step-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .step-row:last-child { border-bottom: none; padding-bottom: 0; }
  .step-num { width: 28px; height: 28px; min-width: 28px; border-radius: 50%; background: var(--blue); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
  .step-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
  .step-desc { font-size: 13px; color: #b9c8dc; line-height: 1.55; }

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

  @media (max-width: 600px) {
    .contact-form-card { padding: 28px 22px; }
  }

  /* ── Danke-Seite Checkmark ── */
  .check-stage { display: flex; justify-content: center; margin-bottom: 28px; }
  .check-circle {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: rgba(117,157,208,0.15);
    border: 2px solid var(--blue);
    display: flex; align-items: center; justify-content: center;
    animation: check-pop 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s both;
  }
  .check-circle svg { width: 44px; height: 44px; }
  .check-circle path { stroke: #fff; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: check-draw 0.5s ease 0.5s forwards; }
  @keyframes check-pop { 0% { opacity: 0; transform: scale(0.6); } 100% { opacity: 1; transform: scale(1); } }
  @keyframes check-draw { to { stroke-dashoffset: 0; } }

  /* ── Rechtliches (Impressum/Datenschutz) ── */
  .legal-table { border: 1.5px solid var(--hairline); border-radius: var(--radius-card); overflow: hidden; margin-bottom: 40px; }
  .legal-row { display: grid; grid-template-columns: 220px 1fr; padding: 16px 22px; border-bottom: 1px solid var(--hairline); gap: 8px; }
  .legal-row:last-child { border-bottom: none; }
  .legal-row:nth-child(even) { background: var(--mist); }
  .legal-label { font-weight: 700; color: var(--fog); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
  .legal-value { color: var(--navy); font-size: 16px; }
  .legal-value a { color: var(--blue-dark); font-weight: 600; text-decoration: none; }
  @media (max-width: 600px) {
    .legal-row { grid-template-columns: 1fr; }
  }

  /* ── Ratgeber-Filter (Kategorien) ── */
  .filter-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
  .filter-btn {
    background: #fff;
    color: var(--navy);
    border: 1.5px solid var(--hairline);
    border-radius: var(--radius-pill);
    padding: 10px 22px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .filter-btn:hover { border-color: var(--blue-dark); }
  .filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
  .blog-card.is-hidden { display: none; }

  /* ── Ratgeber-Artikel (Blog-Post-Layout) ── */
  .article-body { max-width: var(--page-max); margin: 0 auto; }
  .article-body h2 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 700; color: var(--navy); margin: 48px 0 18px; line-height: 1.25; }
  .article-body h2:first-child { margin-top: 0; }
  .article-body p { font-size: 18px; color: var(--fog); line-height: 1.7; margin-bottom: 20px; }
  .article-body ol, .article-body ul { margin: 0 0 20px 22px; }
  .article-body li { font-size: 18px; color: var(--fog); line-height: 1.7; margin-bottom: 8px; }
  .article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .article-back { font-size: 14px; font-weight: 700; color: var(--blue-dark); text-decoration: none; }

  /* ── Dark CTA Band ── */
  .cta-band { background: var(--navy); padding: 120px 40px; text-align: center; }
  @media (max-width: 600px) {
    .cta-band { padding-left: 20px; padding-right: 20px; }
  }
  .cta-band h2 { font-size: clamp(34px, 5vw, 58px); font-weight: 400; color: #fff; line-height: 1.1; letter-spacing: -1.4px; margin-bottom: 16px; }
  .cta-band .claim { font-size: 18px; color: #b9c8dc; margin-bottom: 40px; }

  /* ── Animations ── */
  @keyframes hero-entrance { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: none; } }
  .hero-content h1 { animation: hero-entrance 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s both; }
  .hero-content .hero-sub { animation: hero-entrance 0.8s cubic-bezier(0.16,1,0.3,1) 0.25s both; }
  .hero-content .btn-white { animation: hero-entrance 0.8s cubic-bezier(0.16,1,0.3,1) 0.4s both; }

  .anim-fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
  .anim-fade-up.in-view { opacity: 1; transform: none; }
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }

  /* ── Footer ── */
  footer { background: #06233d; padding: 60px 40px 40px; }
  .footer-inner { max-width: var(--page-max); margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
  .footer-logo img { height: 70px; width: auto; display: block; }
  .footer-col h3 { font-size: 13px; font-weight: 700; color: var(--ash); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a, .footer-col span { font-size: 15px; color: #b9c8dc; text-decoration: none; }
  .footer-col a:hover { color: #fff; }
  .footer-bottom {
    max-width: var(--page-max);
    margin: 40px auto 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    font-size: 14px;
    color: var(--ash);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  .monkeys-badge {
    background: #000;
    color: #fff;
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
  }
  .monkeys-badge svg { width: 12px; height: 12px; }
  .monkeys-badge span { color: #c6d43f; font-weight: 400; }
  .footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-legal a { color: var(--ash); text-decoration: none; transition: color 0.15s ease; }
  .footer-legal a:hover { color: #fff; }

  /* ── Mobile Hamburger + Slide-in Menu ── */
  .nav-burger {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }
  .nav-burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-mobile-wrap {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 150;
  }
  .nav-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3,26,47,0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-overlay.is-open { opacity: 1; pointer-events: auto; }
  .nav-mobile {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 82%;
    max-width: 360px;
    background: var(--navy);
    padding: 32px 28px 40px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), visibility 0s linear 0.35s;
    overflow-y: auto;
  }
  .nav-mobile.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), visibility 0s linear 0s;
  }
  .nav-mobile-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
  .nav-mobile-head img { height: 44px; width: auto; display: block; }
  .nav-mobile-close {
    width: 40px; height: 40px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }
  .nav-mobile-links { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
  .nav-mobile-links a {
    display: block;
    padding: 14px 4px;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-mobile-links a.active { color: var(--blue); border-bottom-color: var(--blue); }
  .nav-mobile .btn-blue { text-align: center; }

  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    nav .btn-blue { display: none; }
    .story-card { flex: 0 0 100%; }
    .pricing-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .lab-card { flex-direction: column; align-items: flex-start; }
    .lab-card-image { width: 100%; }
    .lab-card .btn-outlined { white-space: normal; }
  }

  @media (max-width: 480px) {
    .nav-inner { padding-right: 4px; }
  }

  /* ── Video-Teaser & Modal ── */
  .video-teaser { position:relative; border-radius:var(--radius-card); overflow:hidden; cursor:pointer; display:block; width:100%; max-width:640px; margin:0 auto; border:none; padding:0; background:none; font:inherit; text-align:left; }
  .video-teaser img { width:100%; height:auto; display:block; transition:transform .35s; }
  .video-teaser:hover img { transform:scale(1.03); }
  .video-teaser-overlay { position:absolute; inset:0; background:linear-gradient(180deg,rgba(3,26,47,.15),rgba(3,26,47,.55)); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px; }
  .video-teaser-label { background:rgba(255,255,255,.95); color:var(--blue-dark); font-weight:700; font-size:14px; padding:9px 22px; border-radius:var(--radius-pill); }
  .video-play-btn { width:78px; height:78px; border-radius:50%; background:var(--blue-dark); display:flex; align-items:center; justify-content:center; box-shadow:0 0 0 0 rgba(71,133,194,.55); animation:video-pulse 2.2s infinite; }
  .video-play-btn svg { width:26px; height:26px; fill:#fff; margin-left:4px; }
  @keyframes video-pulse {
    0%   { box-shadow:0 0 0 0 rgba(71,133,194,.55); }
    70%  { box-shadow:0 0 0 24px rgba(71,133,194,0); }
    100% { box-shadow:0 0 0 0 rgba(71,133,194,0); }
  }
  .video-modal { display:none; position:fixed; inset:0; background:rgba(3,10,18,.92); z-index:9999; align-items:center; justify-content:center; padding:24px; }
  .video-modal.open { display:flex; }
  .video-modal-inner { width:100%; max-width:960px; position:relative; }
  .video-modal video { width:100%; border-radius:12px; display:block; background:#000; }
  .video-modal-close { position:absolute; top:-44px; right:0; background:none; border:none; color:#fff; font-size:32px; line-height:1; cursor:pointer; padding:6px; }
  @media (max-width: 600px) {
    .video-modal-close { top:-40px; font-size:26px; }
    .video-play-btn { width:64px; height:64px; }
    .video-play-btn svg { width:22px; height:22px; }
  }


/* Cross-Brand-Banner (Royer Installateur) — ergaenzt 01.08.2026 */
.cross-brand { background:var(--mist); border-top:1px solid var(--hairline); padding:32px 0; }
.cross-brand-inner { max-width:var(--page-max); margin:0 auto; padding:0 24px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.cross-brand-text strong { display:block; font-size:17px; color:var(--navy); margin-bottom:4px; }
.cross-brand-text span { font-size:14px; color:var(--fog); }
@media(max-width:640px) { .cross-brand-inner { flex-direction:column; align-items:flex-start; } }
