/* Horizon Metals – gemeinsames Stylesheet für Unterseiten (abgeleitet aus index.html) */

    /* ==========================================================
       DESIGN TOKENS – abgeleitet vom Original-Logo (#01311D)
       ========================================================== */
    :root {
      --green-950: #012114;          /* tiefste Fläche */
      --green-900: #01311D;          /* Horizon-Markengrün (Logo-Hintergrund) */
      --green-850: #04402a;
      --green-800: #0a4a33;
      --green-100: #dfe9e2;
      --ivory: #faf7f0;              /* Haupt-Hellfläche */
      --cream: #f3eee3;              /* Alternativ-Hellfläche */
      --paper: #fffdf8;
      --gold: #c8a24e;               /* gedämpftes Editorial-Gold */
      --gold-soft: #dcc07a;
      --gold-deep: #9a7b35;
      --ink: #14231c;
      --ink-soft: #51615a;
      --line-dark: rgba(220, 192, 122, 0.18);
      --line-light: rgba(1, 49, 29, 0.12);
      --shadow-card: 0 18px 50px rgba(1, 33, 20, 0.10);
      --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
      --radius: 10px;
      --maxw: 1200px;
    }

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

    html { scroll-behavior: smooth; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }

    body {
      font-family: var(--font-sans);
      background: var(--ivory);
      color: var(--ink);
      line-height: 1.65;
      font-size: 16px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

    ::selection { background: var(--gold-soft); color: var(--green-950); }

    h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; letter-spacing: 0.005em; }

    a { color: inherit; }

    .container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

    .eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold-deep);
      margin-bottom: 18px;
    }
    .on-dark .eyebrow { color: var(--gold-soft); }

    .section-title {
      font-size: clamp(30px, 4.2vw, 46px);
      line-height: 1.14;
      color: var(--green-900);
      max-width: 20em;
    }
    .on-dark .section-title { color: var(--ivory); }

    .section-lede {
      font-size: 17.5px;
      color: var(--ink-soft);
      max-width: 46em;
      margin-top: 18px;
    }
    .on-dark .section-lede { color: #b9cbc0; }

    .center { text-align: center; }
    .center .section-title, .center .section-lede { margin-left: auto; margin-right: auto; }

    /* ------- Buttons ------- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 14px 30px;
      border-radius: 6px;
      font-family: var(--font-sans);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-decoration: none;
      cursor: pointer;
      border: 1px solid transparent;
      transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
    }
    .btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
    .btn:hover { transform: translateY(-2px); }
    .btn:active { transform: translateY(0); }

    .btn-gold {
      background: linear-gradient(160deg, var(--gold-soft) 0%, var(--gold) 55%, #b6903f 100%);
      color: var(--green-950);
      box-shadow: 0 14px 34px rgba(1, 33, 20, 0.35);
    }
    .btn-gold:hover { box-shadow: 0 18px 44px rgba(1, 33, 20, 0.45); }

    .btn-green {
      background: var(--green-900);
      color: var(--ivory);
      box-shadow: 0 12px 30px rgba(1, 49, 29, 0.22);
    }
    .btn-green:hover { background: var(--green-850); }

    .btn-ghost-dark {
      background: transparent;
      color: var(--ivory);
      border-color: rgba(250, 247, 240, 0.35);
    }
    .btn-ghost-dark:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

    .btn-ghost-light {
      background: transparent;
      color: var(--green-900);
      border-color: rgba(1, 49, 29, 0.35);
    }
    .btn-ghost-light:hover { border-color: var(--green-900); background: rgba(1, 49, 29, 0.05); }

    /* ------- Scroll-Reveal ------- */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.is-visible { opacity: 1; transform: none; }
    .reveal.d1 { transition-delay: 0.08s; }
    .reveal.d2 { transition-delay: 0.16s; }
    .reveal.d3 { transition-delay: 0.24s; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    /* ==========================================================
       HEADER
       ========================================================== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(1, 33, 20, 0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line-dark);
      transition: box-shadow 0.3s ease;
    }
    .site-header.scrolled { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35); }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      min-height: 78px;
    }

    .brand-link { display: inline-flex; align-items: center; text-decoration: none; }
    .brand-logo {
      height: 62px;
      width: auto;
      max-width: 220px;
      object-fit: contain; /* Original-Logo, Seitenverhältnis unverändert */
    }

    .nav-links { display: flex; align-items: center; gap: 30px; }
    .nav-links a {
      color: #d5e2d9;
      text-decoration: none;
      font-size: 14.5px;
      font-weight: 500;
      padding: 8px 2px;
      transition: color 0.2s ease;
    }
    .nav-links a:hover, .nav-links a:focus-visible { color: var(--gold-soft); }

    .nav-cta { display: flex; align-items: center; gap: 14px; }
    .btn-nav {
      min-height: 44px;
      padding: 10px 22px;
      font-size: 14px;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: 1px solid rgba(250, 247, 240, 0.3);
      border-radius: 6px;
      width: 46px;
      height: 46px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
    }
    .nav-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--ivory);
      transition: transform 0.25s ease, opacity 0.25s ease;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      display: none;
      background: var(--green-950);
      border-bottom: 1px solid var(--line-dark);
      padding: 12px 28px 26px;
    }
    .mobile-nav.open { display: block; }
    .mobile-nav a {
      display: block;
      color: #e6efe8;
      text-decoration: none;
      font-size: 17px;
      font-weight: 500;
      padding: 14px 4px;
      border-bottom: 1px solid rgba(250, 247, 240, 0.08);
    }
    .mobile-nav a:last-of-type { border-bottom: none; }
    .mobile-nav .btn { width: 100%; margin-top: 14px; }

    /* ==========================================================
       HERO
       ========================================================== */
    .hero {
      position: relative;
      background:
        radial-gradient(1100px 600px at 85% -10%, rgba(200, 162, 78, 0.14) 0%, rgba(1, 33, 20, 0) 60%),
        linear-gradient(178deg, var(--green-950) 0%, var(--green-900) 58%, #02351f 100%);
      color: var(--ivory);
      padding: clamp(72px, 9vw, 128px) 0 clamp(72px, 8vw, 116px);
      overflow: hidden;
      border-bottom: 1px solid var(--line-dark);
    }
    .hero::after { /* feine Horizontlinie */
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(220, 192, 122, 0.45), transparent);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: clamp(40px, 5vw, 80px);
      align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold-soft);
      margin-bottom: 26px;
    }
    .hero-eyebrow::before {
      content: '';
      width: 34px;
      height: 1px;
      background: var(--gold);
    }

    .hero h1 {
      font-size: clamp(38px, 5.4vw, 64px);
      line-height: 1.08;
      color: var(--ivory);
      margin-bottom: 24px;
      max-width: 12em;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--gold-soft);
    }

    .hero-sub {
      font-size: clamp(16.5px, 1.5vw, 19px);
      line-height: 1.7;
      color: #c3d4c9;
      max-width: 34em;
      margin-bottom: 38px;
    }

    .hero-cta-group { display: flex; flex-wrap: wrap; gap: 16px; }

    /* --- Hero Visual: Einlagerungszertifikat + Partnerportal (nach Bildvorlage) --- */
    .hero-visual { position: relative; }
    @media (min-width: 901px) {
      /* Komposition ca. 50 % kleiner darstellen (proportional, ohne Verzerrung) */
      .hero-visual { zoom: 0.58; transform: translateY(-18px); }
    }

    .cert-card {
      position: relative;
      z-index: 2;
      background: linear-gradient(174deg, #fbf8f0 0%, #f4edda 100%);
      color: var(--ink);
      border: 1px solid rgba(200, 162, 78, 0.55);
      border-radius: 18px;
      padding: 26px 26px 116px;
      width: 100%;
      max-width: 720px;
      margin-left: auto;
      box-shadow: 0 46px 110px rgba(0, 0, 0, 0.5);
    }
    .cert-card::before { /* feiner innerer Rahmen */
      content: '';
      position: absolute;
      inset: 10px;
      border: 1px solid rgba(154, 123, 53, 0.35);
      border-radius: 12px;
      pointer-events: none;
    }
    .cert-inner { position: relative; padding: 10px 14px 0; }

    .cert-photo {
      border-radius: 12px;
      border: 1px solid rgba(154, 123, 53, 0.5);
      overflow: hidden;
      margin-bottom: 24px;
    }
    .cert-photo img {
      width: 100%;
      height: clamp(150px, 15vw, 205px);
      object-fit: cover;
      display: block;
    }

    .cert-head { text-align: center; margin-bottom: 8px; }
    .cert-title {
      font-family: var(--font-serif);
      font-size: clamp(28px, 2.7vw, 38px);
      font-weight: 700;
      color: var(--green-900);
      line-height: 1.15;
    }
    .cert-sub {
      font-size: 12.5px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold-deep);
      font-weight: 600;
      margin-top: 7px;
    }
    .cert-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 18px 0 6px;
    }
    .cert-divider::before, .cert-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(154, 123, 53, 0.4);
    }
    .cert-divider .diamond {
      width: 8px; height: 8px;
      border: 1px solid var(--gold-deep);
      transform: rotate(45deg);
      flex: none;
    }

    .cert-rows { display: flex; flex-direction: column; }
    .cert-row {
      display: grid;
      grid-template-columns: 50px 1fr auto;
      align-items: center;
      gap: 14px;
      padding: 15px 2px;
      border-bottom: 1px solid rgba(154, 123, 53, 0.22);
    }
    .cert-row:last-child { border-bottom: none; padding-bottom: 6px; }
    .cert-icon {
      width: 42px; height: 42px;
      border-radius: 50%;
      border: 1.4px solid rgba(154, 123, 53, 0.6);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-deep);
    }
    .cert-icon svg { width: 19px; height: 19px; }
    .cert-label { font-size: 14.5px; color: #4a5a52; }
    .cert-data { text-align: right; }
    .cert-value {
      font-size: 16px;
      font-weight: 700;
      color: var(--green-900);
      line-height: 1.3;
    }
    .cert-value-note {
      font-size: 11.5px;
      color: #7b8a80;
      margin-top: 2px;
      letter-spacing: 0.02em;
    }

    .portal-mini {
      position: relative;
      z-index: 3;
      width: min(500px, 90%);
      margin: -108px auto 0 -30px;
      background: linear-gradient(168deg, rgba(3, 46, 28, 0.97) 0%, rgba(1, 33, 20, 0.97) 100%);
      border: 1px solid rgba(220, 192, 122, 0.45);
      border-radius: 16px;
      padding: 26px 26px 20px;
      box-shadow: 0 34px 80px rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .portal-mini-title {
      font-family: var(--font-serif);
      font-size: 24px;
      font-weight: 600;
      color: var(--ivory);
      margin-bottom: 16px;
    }
    .portal-mini-rows { display: flex; flex-direction: column; gap: 12px; }
    .pm-row {
      display: grid;
      grid-template-columns: 44px 1fr auto;
      align-items: center;
      gap: 14px;
      background: rgba(250, 247, 240, 0.04);
      border: 1px solid rgba(220, 192, 122, 0.28);
      border-radius: 12px;
      padding: 12px 16px;
    }
    .pm-icon {
      width: 42px; height: 42px;
      border-radius: 10px;
      border: 1px solid rgba(220, 192, 122, 0.4);
      background: rgba(200, 162, 78, 0.07);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-soft);
    }
    .pm-icon svg { width: 19px; height: 19px; }
    .pm-title { font-size: 14.5px; font-weight: 600; color: var(--ivory); line-height: 1.35; }
    .pm-sub { font-size: 12.5px; color: #9fb6a9; }
    .pm-status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 600;
      color: var(--gold-soft);
      white-space: nowrap;
    }
    .pm-live-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #57c785;
      animation: livePulse 2.6s ease-out infinite;
    }
    @keyframes livePulse {
      0% { box-shadow: 0 0 0 0 rgba(87, 199, 133, 0.45); }
      70% { box-shadow: 0 0 0 7px rgba(87, 199, 133, 0); }
      100% { box-shadow: 0 0 0 0 rgba(87, 199, 133, 0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .pm-live-dot { animation: none; }
    }
    .pm-foot {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      margin-top: 18px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.28em;
      color: var(--gold-soft);
      text-transform: uppercase;
    }
    .pm-foot svg { width: 14px; height: 14px; flex: none; }

    /* Richtungs-Reveals für die Hero-Komposition */
    .reveal.from-right { transform: translateX(44px); }
    .reveal.from-left { transform: translateX(-44px); }
    .reveal.from-right.is-visible, .reveal.from-left.is-visible { transform: none; }

    .demo-chip {
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-soft);
      border: 1px solid rgba(220, 192, 122, 0.45);
      padding: 3px 9px;
      border-radius: 12px;
      white-space: nowrap;
    }

    /* ==========================================================
       TRUST STRIP
       ========================================================== */
    .trust-strip {
      background: var(--green-950);
      color: var(--ivory);
      border-bottom: 1px solid var(--line-dark);
      padding: 34px 0;
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 28px;
    }
    .trust-item {
      text-align: center;
      padding: 4px 8px;
      border-left: 1px solid rgba(220, 192, 122, 0.16);
    }
    .trust-item:first-child { border-left: none; }
    .trust-item strong {
      display: block;
      font-family: var(--font-serif);
      font-size: clamp(22px, 2.2vw, 30px);
      font-weight: 600;
      color: var(--gold-soft);
      line-height: 1.25;
    }
    .trust-item span { font-size: 12.5px; color: #9fb6a9; letter-spacing: 0.02em; }

    /* ==========================================================
       SECTION LAYOUTS (hell)
       ========================================================== */
    section { padding: clamp(72px, 8vw, 118px) 0; }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 34px;
      margin-top: 58px;
    }
    .why-item {
      border-top: 2px solid var(--green-900);
      padding-top: 24px;
    }
    .why-item h3 { font-size: 23px; color: var(--green-900); margin-bottom: 12px; }
    .why-item p { font-size: 15px; color: var(--ink-soft); }

    /* Beratungsanlässe */
    .cases-section { background: var(--cream); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }
    .case-card {
      background: var(--paper);
      border: 1px solid var(--line-light);
      border-radius: var(--radius);
      padding: 30px 28px;
      box-shadow: var(--shadow-card);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .case-card:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(1, 33, 20, 0.14); }
    .case-icon {
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(154, 123, 53, 0.4);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
      color: var(--gold-deep);
    }
    .case-icon svg { width: 20px; height: 20px; }
    .case-card h3 { font-size: 21px; color: var(--green-900); margin-bottom: 8px; }
    .case-card p { font-size: 14.5px; color: var(--ink-soft); }

    /* Warum Horizon Metals – USP-Liste */
    .usp-section .usp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 64px;
      margin-top: 26px;
    }
    .usp-item {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 22px;
      padding: 30px 0;
      border-bottom: 1px solid var(--line-light);
    }
    .usp-num {
      font-family: var(--font-serif);
      font-size: 30px;
      font-weight: 500;
      color: var(--gold-deep);
      line-height: 1;
      padding-top: 4px;
    }
    .usp-item h3 { font-size: 21px; color: var(--green-900); margin-bottom: 8px; }
    .usp-item p { font-size: 14.5px; color: var(--ink-soft); }

    /* ==========================================================
       DUBAI (dunkel)
       ========================================================== */
    .dubai-section {
      background:
        linear-gradient(rgba(1, 33, 20, 0.88), rgba(1, 49, 29, 0.96)),
        var(--green-950);
      color: var(--ivory);
      border-top: 1px solid var(--line-dark);
      border-bottom: 1px solid var(--line-dark);
    }
    .dubai-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: clamp(40px, 6vw, 90px);
      align-items: start;
    }
    .dubai-copy p { color: #bccfc3; font-size: 16px; margin-top: 18px; max-width: 36em; }
    .dubai-facts {
      display: grid;
      gap: 16px;
      margin-top: 10px;
    }
    .dubai-fact {
      background: rgba(250, 247, 240, 0.045);
      border: 1px solid rgba(220, 192, 122, 0.2);
      border-radius: var(--radius);
      padding: 22px 26px;
      transition: border-color 0.25s ease, background-color 0.25s ease;
    }
    .dubai-fact:hover { border-color: rgba(220, 192, 122, 0.45); background: rgba(250, 247, 240, 0.07); }
    .dubai-fact h3 { font-size: 19px; color: var(--gold-soft); margin-bottom: 6px; font-family: var(--font-sans); font-weight: 600; }
    .dubai-fact p { font-size: 14px; color: #b1c5b8; }

    /* ==========================================================
       PARTNERVORTEILE
       ========================================================== */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }
    .benefit-card {
      background: var(--paper);
      border: 1px solid var(--line-light);
      border-radius: var(--radius);
      padding: 30px 28px;
      box-shadow: var(--shadow-card);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .benefit-card:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(1, 33, 20, 0.14); }
    .benefit-card h3 { font-size: 20px; color: var(--green-900); margin: 14px 0 8px; }
    .benefit-card p { font-size: 14.5px; color: var(--ink-soft); }
    .benefit-mark {
      width: 34px; height: 2px; background: var(--gold); border-radius: 2px;
    }

    .inline-cta {
      margin-top: 60px;
      background: var(--green-900);
      color: var(--ivory);
      border-radius: 14px;
      padding: clamp(34px, 4vw, 52px) clamp(30px, 5vw, 64px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
    }
    .inline-cta::before {
      content: '';
      position: absolute;
      right: -120px; top: -120px;
      width: 340px; height: 340px;
      background: radial-gradient(circle, rgba(200, 162, 78, 0.18), transparent 70%);
      pointer-events: none;
    }
    .inline-cta h3 { font-size: clamp(22px, 2.6vw, 30px); color: var(--ivory); max-width: 18em; }
    .inline-cta p { color: #b9cbc0; font-size: 14.5px; margin-top: 6px; }

    /* ==========================================================
       PARTNERPORTAL MOCKUP
       ========================================================== */
    .portal-section { background: var(--cream); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }

    .portal-image {
      margin: 60px 0 0;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 50px 110px rgba(1, 33, 20, 0.35);
      border: 1px solid rgba(154, 123, 53, 0.25);
      line-height: 0;
    }
    .portal-image img { width: 100%; height: auto; display: block; }

    .portal-note {
      text-align: center;
      font-size: 13px;
      color: var(--ink-soft);
      margin-top: 22px;
    }

    /* ==========================================================
       SCHRITTE
       ========================================================== */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 62px;
      counter-reset: step;
    }
    .step {
      position: relative;
      padding: 0 28px 0 0;
      margin-right: 28px;
      border-right: 1px solid var(--line-light);
    }
    .step:last-child { border-right: none; margin-right: 0; padding-right: 0; }
    .step-num {
      font-family: var(--font-serif);
      font-size: 46px;
      font-weight: 500;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 16px;
    }
    .step h3 { font-size: 20px; color: var(--green-900); margin-bottom: 8px; }
    .step p { font-size: 14px; color: var(--ink-soft); }

    /* ==========================================================
       VERGLEICH
       ========================================================== */
    .compare-section { background: var(--cream); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
    .table-scroll { overflow-x: auto; margin-top: 56px; -webkit-overflow-scrolling: touch; }
    .compare-table {
      width: 100%;
      min-width: 720px;
      border-collapse: separate;
      border-spacing: 0;
      background: var(--paper);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--line-light);
    }
    .compare-table th, .compare-table td { padding: 17px 22px; font-size: 14px; text-align: left; }
    .compare-table thead th {
      background: var(--green-900);
      color: #cfdcd2;
      font-weight: 600;
      font-size: 13.5px;
    }
    .compare-table thead th.hl {
      background: var(--green-950);
      color: var(--gold-soft);
      box-shadow: inset 0 -2px 0 var(--gold);
    }
    .compare-table tbody tr:nth-child(even) td { background: #f9f5ec; }
    .compare-table td.crit { font-weight: 600; color: var(--green-900); }
    .compare-table td.old { color: var(--ink-soft); }
    .compare-table td.hl {
      background: rgba(200, 162, 78, 0.07) !important;
      color: var(--green-900);
      font-weight: 500;
      border-left: 1px solid rgba(154, 123, 53, 0.2);
    }

    /* ==========================================================
       FAQ
       ========================================================== */
    .faq-wrap { max-width: 860px; margin: 56px auto 0; }
    .faq-item {
      border-bottom: 1px solid var(--line-light);
    }
    .faq-item:first-child { border-top: 1px solid var(--line-light); }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      text-align: left;
      padding: 24px 4px;
      font-family: var(--font-serif);
      font-size: 20px;
      font-weight: 600;
      color: var(--green-900);
      transition: color 0.2s ease;
    }
    .faq-q:hover { color: var(--gold-deep); }
    .faq-q:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
    .faq-icon {
      flex: none;
      width: 30px; height: 30px;
      border: 1px solid rgba(1, 49, 29, 0.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }
    .faq-icon::before { content: ''; width: 12px; height: 1.5px; background: var(--green-900); position: absolute; }
    .faq-icon::after { content: ''; width: 1.5px; height: 12px; background: var(--green-900); position: absolute; transition: transform 0.3s ease, opacity 0.3s ease; }
    .faq-icon { position: relative; }
    .faq-item.open .faq-icon { background: var(--green-900); }
    .faq-item.open .faq-icon::before { background: var(--gold-soft); }
    .faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; background: var(--gold-soft); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .faq-a-inner {
      padding: 0 40px 26px 4px;
      font-size: 15px;
      color: var(--ink-soft);
      max-width: 44em;
    }

    /* ==========================================================
       BOOKING
       ========================================================== */
    .booking-section {
      background:
        radial-gradient(900px 500px at 15% 0%, rgba(200, 162, 78, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, var(--green-900) 0%, var(--green-950) 100%);
      color: var(--ivory);
      border-top: 1px solid var(--line-dark);
    }
    .booking-grid {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: center;
    }
    .booking-bullets { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
    .booking-bullets li { display: flex; gap: 14px; font-size: 15px; color: #d5e2d9; align-items: flex-start; }
    .booking-bullets .tick {
      flex: none;
      width: 22px; height: 22px;
      margin-top: 2px;
      border-radius: 50%;
      border: 1px solid var(--gold);
      color: var(--gold-soft);
      font-size: 12px;
      display: flex; align-items: center; justify-content: center;
    }
    .booking-alt {
      margin-top: 34px;
      padding-top: 24px;
      border-top: 1px solid rgba(250, 247, 240, 0.12);
      font-size: 14px;
      color: #9fb6a9;
    }
    .booking-alt a { color: var(--gold-soft); text-decoration: none; font-weight: 600; }
    .booking-alt a:hover { text-decoration: underline; }

    .booking-card {
      background: var(--paper);
      color: var(--ink);
      border-radius: 14px;
      padding: clamp(30px, 3.6vw, 44px);
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
      border: 1px solid rgba(154, 123, 53, 0.2);
    }
    .booking-card h3 { font-size: 26px; color: var(--green-900); margin-bottom: 6px; }
    .booking-card > p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 24px; }
    .booking-meta {
      display: flex;
      gap: 18px;
      margin-bottom: 26px;
      padding: 14px 18px;
      background: var(--cream);
      border-radius: 8px;
      border: 1px solid var(--line-light);
      font-size: 13px;
      color: var(--ink-soft);
      flex-wrap: wrap;
    }
    .booking-meta b { color: var(--green-900); }
    .booking-card .btn { width: 100%; }
    .booking-fineprint {
      text-align: center;
      font-size: 12.5px;
      color: var(--ink-soft);
      margin-top: 16px;
      letter-spacing: 0.02em;
    }

    /* ==========================================================
       FINAL CTA
       ========================================================== */
    .final-cta {
      background: var(--green-950);
      color: var(--ivory);
      text-align: center;
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--line-dark);
      /* CTA-Gruppe bewusst tiefer setzen, Leerraum darunter reduzieren */
      padding-top: calc(clamp(72px, 8vw, 118px) + 36px);
      padding-bottom: clamp(52px, 5.5vw, 80px);
    }
    .final-cta::before {
      content: '';
      position: absolute;
      left: 50%; top: -40%;
      transform: translateX(-50%);
      width: 900px; height: 600px;
      background: radial-gradient(ellipse, rgba(200, 162, 78, 0.13), transparent 65%);
      pointer-events: none;
    }
    .final-cta h2 {
      font-size: clamp(32px, 4.6vw, 52px);
      color: var(--ivory);
      max-width: 17em;
      margin: 0 auto 20px;
      line-height: 1.14;
    }
    .final-cta p { color: #b9cbc0; font-size: 17px; max-width: 38em; margin: 0 auto 58px; }
    .final-cta p.final-fineprint {
      margin: 30px auto 0;
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #86a091;
    }

    /* ==========================================================
       FOOTER
       ========================================================== */
    .site-footer {
      background: #011009;
      color: #7e948a;
      padding: 64px 0 36px;
      font-size: 13.5px;
      border-top: 1px solid rgba(220, 192, 122, 0.12);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 42px;
      border-bottom: 1px solid rgba(250, 247, 240, 0.07);
    }
    .footer-brand img { height: 84px; width: auto; object-fit: contain; margin-bottom: 18px; }
    .footer-brand p { max-width: 30em; line-height: 1.7; }
    .footer-col h4 {
      font-size: 12px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-soft);
      font-weight: 600;
      margin-bottom: 18px;
    }
    .footer-col a {
      display: block;
      color: #a8bcb0;
      text-decoration: none;
      padding: 5px 0;
      transition: color 0.2s ease;
    }
    .footer-col a:hover { color: var(--gold-soft); }
    .footer-legal {
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      align-items: center;
    }
    .footer-disclaimer {
      font-size: 12px;
      color: #62776c;
      line-height: 1.7;
      max-width: 72em;
      margin-top: 20px;
    }

    /* ==========================================================
       RESPONSIVE
       ========================================================== */
    @media (max-width: 1080px) {
      .usp-section .usp-grid { grid-template-columns: 1fr; gap: 0; }
      .benefits-grid, .cases-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
      .trust-item:nth-child(4) { border-left: none; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
      .step:nth-child(2) { border-right: none; }
    }

    @media (max-width: 900px) {
      .nav-links, .nav-cta .btn-nav.desktop-only { display: none; }
      .nav-toggle { display: flex; }
      .hero-grid, .dubai-grid, .booking-grid { grid-template-columns: 1fr; }
      .hero-visual { margin-top: 16px; }
      .cert-card { margin: 0 auto; padding-bottom: 26px; }
      .portal-mini { width: 100%; max-width: 500px; margin: 22px auto 0; }
      .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    }

    @media (max-width: 640px) {
      .why-grid, .benefits-grid, .cases-grid { grid-template-columns: 1fr; }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-item { border-left: none; text-align: left; }
      .steps-grid { grid-template-columns: 1fr; gap: 36px; }
      .step { border-right: none; padding-right: 0; margin-right: 0; }
      .hero-cta-group .btn { width: 100%; }
      .inline-cta { flex-direction: column; align-items: flex-start; }
      .inline-cta .btn { width: 100%; }
      .faq-q { font-size: 18px; }
      .booking-card .btn { min-height: 56px; }
    }
  
    /* ==========================================================
       UNTERSEITEN (Landingpages & Ratgeber)
       ========================================================== */
    .page-hero {
      background:
        radial-gradient(900px 500px at 85% -10%, rgba(200, 162, 78, 0.14) 0%, rgba(1, 33, 20, 0) 60%),
        linear-gradient(178deg, var(--green-950) 0%, var(--green-900) 70%, #02351f 100%);
      color: var(--ivory);
      padding: clamp(52px, 7vw, 92px) 0 clamp(48px, 6vw, 76px);
      border-bottom: 1px solid var(--line-dark);
      position: relative;
    }
    .page-hero::after {
      content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(220, 192, 122, 0.45), transparent);
    }
    .page-hero h1 {
      font-size: clamp(34px, 4.6vw, 56px);
      line-height: 1.1;
      color: var(--ivory);
      max-width: 16em;
    }
    .page-hero h1 em { font-style: italic; color: var(--gold-soft); }
    .page-hero .lede { color: #c3d4c9; font-size: clamp(16.5px, 1.4vw, 18.5px); line-height: 1.7; max-width: 42em; margin-top: 20px; }
    .page-hero .hero-cta-group { margin-top: 32px; }

    .breadcrumbs { font-size: 12.5px; letter-spacing: 0.04em; color: #9fb6a9; margin-bottom: 22px; }
    .breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
    .breadcrumbs a { color: var(--gold-soft); text-decoration: none; }
    .breadcrumbs a:hover { text-decoration: underline; }
    .breadcrumbs li + li::before { content: '›'; margin: 0 8px 0 2px; opacity: 0.6; }

    .section-tight { padding: clamp(56px, 6vw, 88px) 0; }

    .prose { max-width: 760px; }
    .prose h2 { font-size: clamp(26px, 3vw, 34px); line-height: 1.2; color: var(--green-900); margin: 52px 0 14px; }
    .prose h2:first-child { margin-top: 0; }
    .prose h3 { font-size: 22px; color: var(--green-900); margin: 32px 0 10px; }
    .prose p { font-size: 17px; line-height: 1.78; color: #2b3a33; margin-bottom: 18px; }
    .prose ul, .prose ol { margin: 0 0 20px 22px; }
    .prose li { font-size: 16.5px; line-height: 1.7; color: #2b3a33; margin-bottom: 8px; }
    .prose a { color: var(--green-900); text-decoration: underline; text-decoration-color: rgba(154, 123, 53, 0.6); text-underline-offset: 3px; }
    .prose a:hover { text-decoration-color: var(--green-900); }
    .prose strong { color: var(--green-900); }
    .prose .callout {
      background: var(--cream); border-left: 3px solid var(--gold); border-radius: 8px;
      padding: 20px 24px; margin: 28px 0; font-size: 15.5px; color: #2b3a33;
    }
    .prose .callout p:last-child { margin-bottom: 0; }
    .prose .table-scroll { margin-top: 24px; margin-bottom: 30px; }
    .prose .compare-table th, .prose .compare-table td { font-size: 14px; }
    .prose .compare-table thead th.hl { white-space: nowrap; }
    .prose .note { font-size: 13.5px; color: var(--ink-soft); }

    .article-meta { font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: #9fb6a9; margin-top: 18px; }

    .article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(40px, 5vw, 72px); align-items: start; }
    .article-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
    .aside-card { background: var(--paper); border: 1px solid var(--line-light); border-radius: 12px; padding: 22px 24px; box-shadow: var(--shadow-card); }
    .aside-card h3 { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 10px; }
    .aside-card a { display: block; padding: 9px 0; border-bottom: 1px solid var(--line-light); color: var(--green-900); text-decoration: none; font-size: 14.5px; font-weight: 500; line-height: 1.4; }
    .aside-card a:last-child { border-bottom: none; }
    .aside-card a:hover { color: var(--gold-deep); }
    .aside-cta { background: var(--green-900); color: var(--ivory); border-radius: 12px; padding: 24px; }
    .aside-cta h3 { font-size: 20px; color: var(--ivory); margin-bottom: 8px; }
    .aside-cta p { font-size: 14px; color: #b9cbc0; margin-bottom: 16px; }
    .aside-cta .btn { width: 100%; }

    .link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
    .link-card { display: block; background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); text-decoration: none; color: inherit; transition: transform 0.25s ease, box-shadow 0.25s ease; }
    .link-card:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(1, 33, 20, 0.14); }
    .link-card .tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
    .link-card h3 { font-size: 21px; color: var(--green-900); margin: 10px 0 8px; }
    .link-card p { font-size: 14.5px; color: var(--ink-soft); }
    .link-card .more { display: inline-block; margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--green-900); }

    .steps-inline { counter-reset: s; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 44px; }
    .steps-inline .step { border-right: none; padding: 0; margin: 0; }

    .article-layout > * { min-width: 0; }
    @media (max-width: 1000px) { .article-layout { grid-template-columns: minmax(0, 1fr); } .article-aside { position: static; } }
    @media (max-width: 900px) { .link-grid, .steps-inline { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 640px) { .link-grid, .steps-inline { grid-template-columns: 1fr; } .page-hero .hero-cta-group .btn { width: 100%; } }
