/* ============================================================
   Investment Circle — Stylesheet
   Marke: dunkel, Gold/Tiefblau, premium, ruhig (copy/brand-kit.md)
   ============================================================ */

/* ---------- Fonts (lokal gehostet, OFL) ---------- */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-v40-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-v40-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design-Token ---------- */
:root {
  --night: #0A111F;
  --navy: #111E33;
  --royal: #1E4470;
  --gold: #C9A24B;
  --gold-2: #E6CD8C;
  --ivory: #F3EFE6;
  --muted: #9FAEC4;
  --line: rgba(201, 162, 75, .22);
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, 'Segoe UI', Arial, sans-serif;
  --wrap: 1160px;
  --radius: 6px;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ivory);
  background: var(--night);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: rgba(201, 162, 75, .35); color: var(--ivory); }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--night);
  padding: 10px 18px; font-weight: 600; font-size: 15px;
}
.skip-link:focus { left: 16px; top: 16px; }

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

/* ---------- Typografie ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.22; letter-spacing: .01em; overflow-wrap: break-word; }
h1 { font-size: clamp(34px, 5.2vw, 62px); }

/* Anker-Ziele nicht unter dem fixen Header verschwinden lassen */
[id] { scroll-margin-top: 100px; }
h2 { font-size: clamp(28px, 3.4vw, 42px); }
h3 { font-size: clamp(21px, 2.2vw, 25px); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--muted); }

.gold-rule {
  width: 64px; height: 1px; border: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 26px 0;
}
.center .gold-rule { margin-left: auto; margin-right: auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 2px;
  transition: transform .3s ease, box-shadow .3s ease, color .3s ease, border-color .3s ease, filter .3s ease;
}
/* Primär: metallisches Gold mit Lichtkante oben und Gravurkante unten */
.btn-gold {
  color: #171207;
  background: linear-gradient(180deg, #EDDCAC 0%, #DDBE74 34%, #C9A24B 62%, #AE8838 100%);
  border: 1px solid rgba(116, 89, 33, .9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    inset 0 -1px 0 rgba(62, 45, 12, .4),
    0 10px 28px rgba(201, 162, 75, .16);
}
.btn-gold::after {
  content: ""; position: absolute; top: 0; left: -70%;
  width: 44%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .42), transparent);
  transform: skewX(-20deg);
}
/* Transition nur im Hover-Zustand: Rückweg beim Verlassen springt unsichtbar zurück */
.btn-gold:hover::after { left: 130%; transition: left .7s ease; }
.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .6),
    inset 0 -1px 0 rgba(62, 45, 12, .4),
    0 18px 44px rgba(201, 162, 75, .32);
}
/* Sekundär: Hairline-Rahmen, Goldfüllung gleitet beim Hover von links herein */
.btn-ghost {
  color: var(--gold-2);
  border: 1px solid rgba(201, 162, 75, .5);
  background: transparent;
}
.btn-ghost::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, #EDDCAC, #C9A24B);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}
.btn-ghost::after {
  content: "\2192"; font-size: 15px; line-height: 1; letter-spacing: 0;
  transform: translateX(-2px);
  transition: transform .3s ease;
}
.btn-ghost:hover { color: #171207; border-color: var(--gold); }
.btn-ghost:hover::before { transform: scaleX(1); }
.btn-ghost:hover::after { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: border-color .35s ease;
  border-bottom: 1px solid transparent;
}
/* Blur/Hintergrund auf Pseudo-Element: backdrop-filter direkt auf dem Header
   machte ihn zum Containing Block für das fixed positionierte Mobilmenü */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(10, 17, 31, .88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity .35s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.site-header.scrolled::before { opacity: 1; }
.nav-bar { display: flex; align-items: center; justify-content: space-between; height: 84px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-emblem {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, .35);
  overflow: hidden; flex-shrink: 0;
}
.brand-name { font-family: var(--serif); font-size: 20px; font-weight: 600; letter-spacing: .04em; line-height: 1.15; }
.brand-name small {
  display: block;
  font-family: var(--sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 34px; font-size: 15px; color: var(--muted); }
.nav-links a { position: relative; transition: color .2s ease; }
.nav-links a:hover { color: var(--gold-2); }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -7px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s ease;
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }

/* Einfache Navigation der Unterseiten (kein Overlay-Menü nötig) */
.nav-simple { display: flex; align-items: center; font-size: 15px; color: var(--muted); }
.nav-simple a { display: inline-flex; align-items: center; gap: 8px; transition: color .2s ease; }
.nav-simple a:hover { color: var(--gold-2); }
.nav-cta { margin-left: 10px; padding: 12px 22px; font-size: 11.5px; letter-spacing: .14em; }

.menu-toggle {
  display: none;
  background: none; border: 1px solid var(--line); border-radius: 4px;
  width: 46px; height: 46px; cursor: pointer;
  color: var(--ivory);
}
.menu-toggle svg { width: 22px; height: 22px; margin: auto; display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 55% center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-video.playing { opacity: 1; }
/* Weicher Übergang vom Hero in den Seitenhintergrund */
.hero .hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 160px;
  background: linear-gradient(180deg, transparent, var(--night));
  pointer-events: none;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 17, 31, .85) 0%, rgba(10, 17, 31, .6) 38%, rgba(10, 17, 31, .1) 70%, rgba(10, 17, 31, .22) 100%),
    linear-gradient(180deg, rgba(10, 17, 31, .42) 0%, rgba(10, 17, 31, 0) 26%, rgba(10, 17, 31, 0) 62%, rgba(10, 17, 31, .88) 100%);
}
.hero-inner { padding: 160px 0 120px; max-width: 860px; }
/* Textschatten sichert die Lesbarkeit auf hellen Tagesaufnahmen */
.hero-inner h1, .hero-inner .lead, .hero-inner .eyebrow { text-shadow: 0 2px 18px rgba(10, 17, 31, .55); }
.hero h1 {
  text-wrap: balance;
  font-size: clamp(31px, 4.5vw, 57px);
  line-height: 1.16;
}
.hero h1 .h1-kicker {
  display: block;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--gold-2);
  margin-bottom: 18px;
}
.hero h1 .gold { color: var(--gold-2); }
.hero .lead { margin-top: 28px; max-width: 580px; color: #C6CFDE; font-size: clamp(17px, 2vw, 21px); }
.hero-actions { margin-top: 46px; display: flex; gap: 18px; flex-wrap: wrap; }

/* Hero-Entrance: gestaffeltes Aufsteigen beim Laden (nur mit JS) */
html.js .hero-inner > * {
  opacity: 0;
  transform: translateY(30px);
  animation: rise .95s cubic-bezier(.22, .61, .36, 1) forwards;
}
html.js .hero-inner .eyebrow { animation-delay: .15s; }
html.js .hero-inner h1 { animation-delay: .32s; }
html.js .hero-inner .lead { animation-delay: .52s; }
html.js .hero-inner .hero-actions { animation-delay: .7s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.hero-scroll {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  color: var(--gold); opacity: .8;
}
.hero-scroll svg { width: 22px; height: 22px; animation: drift 2.6s ease-in-out infinite; }
@keyframes drift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ---------- Werte-Band (Marquee) ---------- */
.ticker {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(17, 30, 51, .55), rgba(17, 30, 51, .2) 50%, rgba(17, 30, 51, .55));
  overflow: hidden;
  padding: 20px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 46s linear infinite;
}
.ticker:hover .ticker-track,
.ticker:focus-within .ticker-track,
.ticker-track.paused { animation-play-state: paused; }
.ticker-group { display: flex; align-items: center; flex-shrink: 0; }
.ticker-item {
  display: flex; align-items: center; gap: 28px;
  padding-right: 28px;
  font-size: 13px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.ticker-item::after { content: "◆"; font-size: 7px; color: var(--gold); opacity: .75; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sektionen ---------- */
section { padding: 116px 0; }
.section-head { max-width: 700px; margin-bottom: 60px; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 18px; }
.center { text-align: center; }
.center.section-head { margin-left: auto; margin-right: auto; }

/* ---------- Leistungen ---------- */
#investments {
  position: relative;
  background: radial-gradient(900px 460px at 88% 0%, rgba(30, 68, 112, .25), transparent 70%);
}
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  position: relative;
  background: linear-gradient(180deg, var(--navy), rgba(17, 30, 51, .45));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 75, 0));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s ease;
  z-index: 1;
}
.card:hover::after { transform: scaleX(1); }
.card:hover { transform: translateY(-6px); border-color: rgba(201, 162, 75, .55); box-shadow: 0 24px 50px rgba(0, 0, 0, .45); }
.card-media { aspect-ratio: 16 / 9; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-media img { transform: scale(1.045); }
.card-body { padding: 32px 30px 36px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.card-num { font-size: 12.5px; font-weight: 600; letter-spacing: .22em; color: var(--gold); }
.card-body p { color: var(--muted); font-size: 16px; }
.card-tags { margin-top: auto; padding-top: 10px; font-size: 13.5px; letter-spacing: .04em; color: var(--gold-2); }
.card-list { margin-top: auto; padding-top: 10px; display: grid; gap: 9px; }
.card-list li { position: relative; padding-left: 22px; font-size: 14.5px; color: var(--gold-2); }
.card-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 1px; background: var(--gold);
}

/* ---------- Prozess ---------- */
.process { padding-top: 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; list-style: none; padding: 0; }
.step {
  position: relative;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  transition: border-color .35s ease;
}
.step:hover { border-top-color: rgba(201, 162, 75, .7); }
.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 46px; font-weight: 600; line-height: 1;
  color: rgba(201, 162, 75, .28);
  margin-bottom: 18px;
  transition: color .35s ease;
}
.step:hover .step-num { color: rgba(230, 205, 140, .75); }
.step h3 { font-family: var(--sans); font-size: 17px; font-weight: 600; letter-spacing: .02em; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ---------- Statement-Band (Kino) ---------- */
.band-cine {
  position: relative;
  padding: 190px 0;
  overflow: hidden;
}
.band-media { position: absolute; inset: -140px 0; z-index: -2; will-change: transform; }
.band-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; }
.band-cine::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--night) 0%, rgba(10, 17, 31, .45) 30%, rgba(10, 17, 31, .55) 70%, var(--night) 100%);
}
.band-inner { text-align: center; }
.band-line {
  font-family: var(--serif);
  font-size: clamp(25px, 3.6vw, 46px);
  font-weight: 600;
  line-height: 1.3;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .55);
}

/* ---------- Warum wir / Vertrauen ---------- */
.trust {
  background: linear-gradient(120deg, rgba(30, 68, 112, .34), rgba(17, 30, 51, .1) 55%), var(--navy);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.trust-copy p { color: var(--muted); font-size: 18px; }
.trust-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
/* Überlappung: Bild ragt aus dem Statement-Band in die Vertrauens-Sektion */
@media (min-width: 1021px) {
  .trust-media {
    margin-top: -200px;
    position: relative; z-index: 2;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .55);
    border-color: rgba(201, 162, 75, .4);
  }
}

.values { margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 22px;
  border: 1px solid rgba(201, 162, 75, .16);
  border-radius: var(--radius);
  background: rgba(10, 17, 31, .45);
  transition: border-color .3s ease;
}
.value:hover { border-color: rgba(201, 162, 75, .45); }
.value svg {
  width: 30px; height: 30px; flex-shrink: 0;
  color: var(--gold); margin-top: 2px;
  transition: transform .3s ease, color .3s ease;
}
.value:hover svg { transform: translateY(-3px) scale(1.07); color: var(--gold-2); }
.value strong { display: block; font-size: 15.5px; font-weight: 600; letter-spacing: .02em; }

/* ---------- So prüfen wir ---------- */
.pruefung { position: relative; }
.check-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  margin-top: 12px;
}
.check-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 24px;
  background: linear-gradient(180deg, var(--navy), rgba(17, 30, 51, .4));
  border: 1px solid rgba(201, 162, 75, .18);
  border-radius: var(--radius);
  transition: border-color .3s ease;
}
.check-item:hover { border-color: rgba(201, 162, 75, .5); }
.check-item svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold); margin-top: 3px; }
.check-item strong { display: block; font-size: 16px; margin-bottom: 6px; }
.check-item p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }
.pruefung-note { margin-top: 26px; font-size: 13.5px; color: #7d8ba1; max-width: 720px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: linear-gradient(180deg, var(--navy), rgba(17, 30, 51, .4));
  border: 1px solid rgba(201, 162, 75, .18);
  border-radius: var(--radius);
  transition: border-color .3s ease;
}
.faq-item[open] { border-color: rgba(201, 162, 75, .45); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px;
  font-family: var(--serif);
  font-size: 18px; font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 22px; font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold-2); }
.faq-body { padding: 0 26px 24px; }
.faq-body p { font-size: 15.5px; color: var(--muted); line-height: 1.75; }
.faq-body p + p { margin-top: 12px; }

@media (max-width: 760px) {
  .check-grid { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 16.5px; padding: 18px 20px; }
  .faq-body { padding: 0 20px 20px; }
}

/* ---------- Über uns ---------- */
#ueber-uns {
  position: relative;
  background: radial-gradient(760px 400px at 12% 100%, rgba(201, 162, 75, .07), transparent 70%);
}
.about-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.about-inner p { font-family: var(--serif); font-size: clamp(20px, 2.6vw, 27px); line-height: 1.6; color: var(--ivory); }
.about-inner p + p { margin-top: 28px; }
.about-inner .gold { color: var(--gold-2); }

/* ---------- CTA ---------- */
.cta { position: relative; padding: 150px 0; overflow: hidden; }
.cta-media { position: absolute; inset: 0; z-index: -2; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10, 17, 31, .93), rgba(10, 17, 31, .62) 50%, rgba(10, 17, 31, .93));
}
.cta-box { max-width: 680px; margin: 0 auto; text-align: center; }
.cta-box p { margin-top: 20px; font-size: 18px; color: #C6CFDE; }
.cta-box .btn { margin-top: 40px; }
.cta-note { margin-top: 18px; font-size: 13.5px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: #080D18; padding: 76px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand .brand-emblem { width: 44px; height: 44px; }
.footer-claim { margin-top: 18px; font-size: 14.5px; color: var(--muted); max-width: 340px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 10px; font-size: 14.5px; color: var(--muted); }
.footer-col a { transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-2); }
/* Kompatibilität: einfache Footer-Zeile (Unterseiten) */
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 28px; font-size: 14.5px; color: var(--muted); }
.footer-links a:hover { color: var(--gold-2); }
.risk-note {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(159, 176, 200, .12);
  font-size: 13px; line-height: 1.7; color: #7d8ba1;
  max-width: 920px;
}
.copyright { margin-top: 20px; font-size: 13px; color: #7d8ba1; }

/* ---------- Unterseiten (Impressum / Datenschutz) ---------- */
.page-main { padding: 170px 0 90px; min-height: 70vh; }
.page-main .wrap { max-width: 820px; }
.page-main h1 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 14px; }
.page-main h2 { font-size: 22px; margin: 44px 0 14px; }
.page-main p, .page-main li { color: var(--muted); font-size: 16px; }
.page-main ul { list-style: disc; padding-left: 22px; display: grid; gap: 6px; }
.page-main a { color: var(--gold-2); }
.page-main a:hover { text-decoration: underline; }
.page-main address { font-style: normal; color: var(--ivory); line-height: 1.9; }
.page-stand { margin-top: 48px; font-size: 13.5px; color: #7d8ba1; }

/* ---------- Erstgespräch-Funnel ---------- */
.funnel-main { padding: 170px 0 110px; min-height: 78vh; }
.funnel-wrap { max-width: 720px; }
.funnel-intro h1, .funnel-success h1 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 24px; }
.funnel-intro-text p { color: var(--muted); font-size: 17.5px; margin-bottom: 16px; max-width: 620px; }
.funnel-intro .btn { margin-top: 18px; }
.funnel-note { margin-top: 18px; font-size: 13.5px; color: #7d8ba1; }

.funnel-progress {
  height: 2px; background: rgba(201, 162, 75, .18);
  border-radius: 1px; overflow: hidden; margin-bottom: 14px;
}
.funnel-progress-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width .45s ease;
}
.funnel-step-label {
  font-size: 12px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 34px;
}
.funnel-question { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.funnel-sub { color: var(--muted); font-size: 16px; margin-bottom: 10px; }

.funnel-options { display: grid; gap: 12px; margin-top: 28px; }
.funnel-option {
  text-align: left; cursor: pointer;
  font-family: var(--sans); font-size: 16.5px; font-weight: 500;
  color: var(--ivory);
  background: rgba(17, 30, 51, .55);
  border: 1px solid rgba(201, 162, 75, .25);
  border-radius: 4px;
  padding: 18px 22px;
  transition: border-color .25s ease, background-color .25s ease, transform .25s ease;
}
.funnel-option:hover { border-color: rgba(201, 162, 75, .65); transform: translateX(4px); }
.funnel-option.selected {
  border-color: var(--gold);
  background: rgba(201, 162, 75, .14);
  color: var(--gold-2);
}

.funnel-field { margin-top: 28px; display: grid; gap: 14px; max-width: 460px; }
.funnel-label { font-size: 13px; font-weight: 600; letter-spacing: .08em; color: var(--muted); margin-top: 6px; }
.funnel-field input[type="text"], .funnel-field input[type="email"], .funnel-field input[type="tel"] {
  font-family: var(--sans); font-size: 17px; color: var(--ivory);
  background: rgba(17, 30, 51, .55);
  border: 1px solid rgba(201, 162, 75, .3);
  border-radius: 4px;
  padding: 16px 18px;
  outline: none;
  transition: border-color .25s ease;
}
.funnel-field input:focus { border-color: var(--gold); }
.funnel-field .btn { margin-top: 14px; justify-self: start; }
.funnel-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-top: 6px; }
.funnel-consent input { margin-top: 3px; accent-color: #C9A24B; }
.funnel-consent a { color: var(--gold-2); text-decoration: underline; }
.funnel-error { color: #E08A8A; font-size: 14.5px; }
.funnel-mail-fallback { color: var(--gold-2); text-decoration: underline; font-weight: 600; }

.funnel-nav { margin-top: 36px; }
.funnel-back {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 14.5px; color: var(--muted);
  transition: color .2s ease;
}
.funnel-back:hover { color: var(--gold-2); }
.funnel-success .btn { margin-top: 10px; }

/* ---------- Social-Media-Zeile (Footer) ---------- */
.social-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
}
.social-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.social-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--muted);
}
.social-item svg { width: 17px; height: 17px; color: rgba(201, 162, 75, .8); }
a.social-item { transition: color .2s ease; }
a.social-item:hover { color: var(--gold-2); }
a.social-item:hover svg { color: var(--gold-2); }

/* ---------- Cookie-/Consent-Banner ---------- */
.consent-banner {
  position: fixed; left: 24px; bottom: 24px; z-index: 200;
  max-width: 380px;
  background: #0D1626;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: 24px 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
}
.consent-title {
  font-family: var(--serif);
  font-size: 19px; font-weight: 600;
  margin-bottom: 10px;
}
.consent-text { font-size: 14px; line-height: 1.65; color: var(--muted); }
.consent-text a { color: var(--gold-2); text-decoration: underline; }
.consent-actions { display: flex; align-items: center; gap: 18px; margin-top: 18px; }
.consent-actions .btn { padding: 12px 22px; font-size: 11.5px; letter-spacing: .12em; }
.consent-decline {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 13.5px; color: var(--muted);
  transition: color .2s ease;
}
.consent-decline:hover { color: var(--ivory); }
@media (max-width: 560px) {
  .consent-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

/* ---------- Reveal-Animationen (dezent) ----------
   Nur aktiv, wenn JS bestätigt läuft (html.js) — ohne JS bleibt alles sichtbar. */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll svg { animation: none; }
  .card, .card-media img, .btn, .btn-ghost::before, .btn-ghost::after { transition: none; }
  html.js .hero-inner > * { animation: none; opacity: 1; transform: none; }
  .ticker-track { animation: none; width: auto; justify-content: center; }
  .ticker-group { flex-wrap: wrap; justify-content: center; flex-shrink: 1; row-gap: 12px; }
  .ticker-group[aria-hidden="true"] { display: none; }
  .btn-gold::after { display: none; }
  .hero-video { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .cards { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .trust-grid { grid-template-columns: 1fr; gap: 44px; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Overlay-Menü schon ab 1020px: die volle Desktop-Nav braucht ~1000px Platz */
  .nav-links {
    position: fixed; inset: 0; z-index: 90;
    display: none;
    flex-direction: column; align-items: center; gap: 30px;
    background: #080D18;
    font-size: 19px;
    overflow-y: auto;
    padding: 24px;
  }
  .nav-links.open { display: flex; }
  /* Zentriert, wenn Platz ist; scrollbar statt abgeschnitten (Landscape-Phones) */
  .nav-links > li:first-child { margin-top: auto; }
  .nav-links > li:last-child { margin-bottom: auto; }
  body.menu-open { overflow: hidden; }
  .menu-toggle { display: block; position: relative; z-index: 95; }
  .brand { position: relative; z-index: 95; }
  .nav-cta { margin-left: 0; }

  /* Hero-Overlay: Textblock reicht bis in die helle Bildzone (WCAG AA), Tageslicht bleibt sichtbar */
  .hero::before {
    background:
      linear-gradient(90deg, rgba(10, 17, 31, .88) 0%, rgba(10, 17, 31, .78) 60%, rgba(10, 17, 31, .66) 100%),
      linear-gradient(180deg, rgba(10, 17, 31, .45) 0%, rgba(10, 17, 31, 0) 30%, rgba(10, 17, 31, 0) 60%, rgba(10, 17, 31, .9) 100%);
  }
}

@media (max-width: 760px) {
  section { padding: 84px 0; }
  .brand-name { font-size: 17px; }
  .hero-inner { padding: 140px 0 110px; }
  .hero-media img { object-position: 42% center; }
  .values { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

/* Fakten-Report / Newsletter */
.report-band {
  padding: clamp(76px, 10vw, 136px) 0;
  background: linear-gradient(180deg, rgba(201, 162, 75, .05), transparent 42%);
  border-top: 1px solid rgba(201, 162, 75, .14);
}
.report-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.report-media img {
  width: 100%; height: auto; display: block;
  border-radius: 4px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .55), 0 0 0 1px rgba(201, 162, 75, .28);
  transform: rotate(-1.6deg);
}
.report-copy > p { max-width: 62ch; }
.report-form { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; max-width: 560px; }
.report-form input[type="email"] {
  flex: 1 1 250px;
  font-family: var(--sans); font-size: 16.5px; color: var(--ivory);
  background: rgba(17, 30, 51, .55);
  border: 1px solid rgba(201, 162, 75, .3);
  border-radius: 4px;
  padding: 15px 18px;
  outline: none;
  transition: border-color .25s ease;
}
.report-form input[type="email"]:focus { border-color: var(--gold); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.report-note { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-top: 18px; max-width: 560px; }
.report-note a { color: var(--gold-2); text-decoration: underline; }
.report-status { margin-top: 18px; font-size: 16.5px; color: var(--gold-2); font-weight: 600; max-width: 560px; }
.report-status.error { color: #E08A8A; }
.download-box { margin-top: 34px; }
.download-box .btn { margin-top: 6px; }
@media (max-width: 760px) {
  .report-grid { grid-template-columns: 1fr; }
  .report-media { max-width: 240px; margin: 0 auto; }
  .report-form .btn { width: 100%; text-align: center; }
}

/* Review-Fixes: hidden muss die Flex-Regel schlagen; Statusmeldung ohne Inhalt platzlos */
.report-form[hidden] { display: none; }
.report-status { margin-top: 0; }
.report-status:not(:empty) { margin-top: 18px; }
.report-status:focus { outline: none; }
.page-main a.btn-gold { color: #171207; }

/* ===================== Mehrsprachigkeit ===================== */
/* Sprachumschalter im Header */
.lang-switch { display: flex; align-items: center; gap: 2px; margin-left: 18px; }
.lang-switch a {
  font-size: 11.5px; font-weight: 600; letter-spacing: .1em;
  color: var(--muted); padding: 6px 7px; border-radius: 3px;
  transition: color .2s ease;
}
.lang-switch a:hover { color: var(--gold-2); }
.lang-switch a.aktiv { color: var(--gold); }
.lang-switch a + a { border-left: 1px solid rgba(201, 162, 75, .22); border-radius: 0 3px 3px 0; }
[dir="rtl"] .lang-switch { margin-left: 0; margin-right: 18px; }
[dir="rtl"] .lang-switch a + a { border-left: 0; border-right: 1px solid rgba(201, 162, 75, .22); }
@media (max-width: 1020px) {
  .nav-bar .lang-switch { margin-left: auto; margin-right: 12px; }
  [dir="rtl"] .nav-bar .lang-switch { margin-right: auto; margin-left: 12px; }
}

/* Sprachhinweis beim ersten Besuch */
.lang-hint {
  position: fixed; top: 78px; left: 50%; transform: translateX(-50%);
  z-index: 60; display: flex; align-items: center; gap: 14px;
  background: rgba(13, 22, 38, .97); border: 1px solid rgba(201, 162, 75, .45);
  border-radius: 6px; padding: 12px 16px; max-width: min(92vw, 560px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
  font-size: 14px; color: var(--ivory);
}
.lang-hint a.btn { padding: 9px 16px; font-size: 11px; white-space: nowrap; }
.lang-hint button {
  background: none; border: 0; color: var(--muted); font-size: 18px;
  cursor: pointer; line-height: 1; padding: 4px;
}
.lang-hint button:hover { color: var(--ivory); }

/* ===================== Arabisch (RTL) ===================== */
html[lang="ar"] body,
html[lang="ar"] input, html[lang="ar"] button, html[lang="ar"] textarea {
  font-family: 'Cairo', 'Inter', Arial, sans-serif;
}
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3,
html[lang="ar"] .brand-name, html[lang="ar"] .stat .n, html[lang="ar"] .funnel-question {
  font-family: 'Amiri', 'Playfair Display', Georgia, serif;
}
/* Arabisch verträgt keine Buchstabensperrung */
html[lang="ar"] .eyebrow, html[lang="ar"] .btn, html[lang="ar"] .ticker-item,
html[lang="ar"] th, html[lang="ar"] .funnel-label, html[lang="ar"] .social-label,
html[lang="ar"] .brand-name small, html[lang="ar"] .lang-switch a { letter-spacing: 0; }

[dir="rtl"] .hero::before {
  background:
    linear-gradient(270deg, rgba(10, 17, 31, .85) 0%, rgba(10, 17, 31, .6) 38%, rgba(10, 17, 31, .1) 70%, rgba(10, 17, 31, .22) 100%),
    linear-gradient(180deg, rgba(10, 17, 31, .42) 0%, rgba(10, 17, 31, 0) 26%, rgba(10, 17, 31, 0) 62%, rgba(10, 17, 31, .88) 100%);
}
[dir="rtl"] .hero-media img, [dir="rtl"] .hero-video { object-position: 45% center; }
[dir="rtl"] .gold-rule:not(.center .gold-rule) { background: linear-gradient(270deg, var(--gold), transparent); }
[dir="rtl"] .btn-ghost::after { content: "\2190"; }
[dir="rtl"] .card-list li { padding-left: 0; padding-right: 22px; }
[dir="rtl"] .card-list li::before { left: auto; right: 0; }
[dir="rtl"] .page-main ul { padding-left: 0; padding-right: 22px; }
[dir="rtl"] .nav-cta { margin-left: 0; margin-right: 10px; }
[dir="rtl"] .nav-links a:not(.btn)::after { left: auto; right: 0; }
@media (max-width: 760px) {
  [dir="rtl"] .hero-media img, [dir="rtl"] .hero-video { object-position: 58% center; }
  [dir="rtl"] .hero::before {
    background:
      linear-gradient(270deg, rgba(10, 17, 31, .88) 0%, rgba(10, 17, 31, .78) 60%, rgba(10, 17, 31, .66) 100%),
      linear-gradient(180deg, rgba(10, 17, 31, .45) 0%, rgba(10, 17, 31, 0) 30%, rgba(10, 17, 31, 0) 60%, rgba(10, 17, 31, .9) 100%);
  }
}
/* arabic */
@font-face {
  font-family: 'Amiri';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/amiri-400-arabic.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4, U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
/* latin */
@font-face {
  font-family: 'Amiri';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/amiri-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* arabic */
@font-face {
  font-family: 'Amiri';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/amiri-700-arabic.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4, U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
/* latin */
@font-face {
  font-family: 'Amiri';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/amiri-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* arabic */
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/cairo-400-arabic.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4, U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
/* latin */
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/cairo-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* arabic */
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/cairo-600-arabic.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4, U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
/* latin */
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/cairo-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* arabic */
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/cairo-700-arabic.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4, U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
/* latin */
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/cairo-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}.nav-simple .lang-switch { margin-left: 26px; }
[dir="rtl"] .nav-simple .lang-switch { margin-left: 0; margin-right: 26px; }
.nav-links .lang-switch { margin-left: 4px; }
