/* ============================================================
   4PL LOGISTICS & CONSULTING — Main Stylesheet
   Design System: Navy #07102a + Gold #ffad02
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --navy:          #07102a;
  --navy-800:      #0d1a3e;
  --navy-700:      #152654;
  --navy-600:      #1d3460;
  --gold:          #ffad02;
  --gold-dark:     #e69c00;
  --gold-light:    #ffc133;
  --gold-pale:     #fff8e6;
  --white:         #ffffff;
  --gray-50:       #f8f9fb;
  --gray-100:      #f0f2f5;
  --gray-200:      #e5e7eb;
  --gray-300:      #d1d5db;
  --gray-400:      #9ca3af;
  --gray-500:      #6b7280;
  --gray-600:      #4b5563;
  --gray-800:      #1f2937;
  --text:          #07102a;
  --text-muted:    #4b5563;

  --font-sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:  'Plus Jakarta Sans', 'Inter', sans-serif;

  --container:     1280px;
  --pad:           clamp(1rem, 4vw, 2rem);

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  20px;
  --r-2xl: 32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.15), 0 8px 20px rgba(0,0,0,.10);
  --shadow-gold: 0 8px 32px rgba(255,173,2,.30);

  --ease:   cubic-bezier(.4,0,.2,1);
  --header: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip; /* clip avoids the iOS Safari fixed-positioning bug caused by hidden */
  -webkit-font-smoothing: antialiased;
}

/* Dark overlay when mobile menu is open */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
body.nav-open::before {
  opacity: 1;
  pointer-events: all;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section--white { background: var(--white); }
.section--light { background: var(--gray-50); }
.section--dark  { background: var(--navy); }

/* === TYPOGRAPHY UTILITIES === */
.text-gold       { color: var(--gold); }
.text-white      { color: var(--white); }
.text-white-muted{ color: rgba(255,255,255,.7); }

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1.5px;
  background: var(--gold);
  opacity: .6;
}
.section-label--gold { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section--dark .section-title { color: var(--white); }

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.section--dark .section-subtitle { color: rgba(255,255,255,.65); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--r-lg);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; transition: transform .2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: var(--r-xl); }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; border-radius: var(--r-md); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,173,2,.40);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}

/* Transparent on home hero, solid everywhere else */
.is-home .site-header { background: transparent; }
.site-header.is-scrolled,
body:not(.is-home) .site-header {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
  gap: 2rem;
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

/* === NAV === */
.main-nav { flex: 1; display: flex; justify-content: flex-end; }

.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: var(--r-md);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-link.is-active { color: var(--gold); }

/* Kontakt CTA */
.nav-link.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  margin-left: .5rem;
}
.nav-link.nav-cta:hover {
  background: #e09b00;
  color: var(--navy);
}

.dropdown-arrow { transition: transform .2s var(--ease); opacity: .6; }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s var(--ease), visibility .2s, transform .2s var(--ease);
  transform: translateX(-50%) translateY(-8px);
}

/* Unsichtbare Brücke über den Spalt zwischen Nav-Link und Dropdown.
   Verhindert, dass hover verloren geht, wenn die Maus den Spalt überquert. */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -.75rem;   /* etwas mehr als der .5rem-Spalt */
  left: 0;
  right: 0;
  height: .75rem;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: .625rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--r-md);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.dropdown-link:hover,
.dropdown-link.is-active {
  background: var(--gray-50);
  color: var(--navy);
}
.dropdown-link.is-active { color: var(--gold-dark); font-weight: 600; }
.dropdown-link::before {
  content: '›';
  margin-right: .5rem;
  color: var(--gold);
  font-weight: 700;
  opacity: 0;
  transition: opacity .15s;
}
.dropdown-link:hover::before { opacity: 1; }

/* === HEADER ACTIONS === */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Language Switcher */
.header-lang {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.header-lang-link {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  padding: .25rem .5rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-sm);
  transition: color .2s, border-color .2s;
}
.header-lang-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--r-md);
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.mobile-menu-toggle.is-open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-open .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,173,2,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,173,2,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow--1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(255,173,2,.12) 0%, transparent 70%);
}
.hero-glow--2 {
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(13,26,62,.8) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header) + 3rem);
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.hero-left {
  min-width: 0;
}

/* ── RIGHT COLUMN: image visual ── */
.hero-right {
  position: relative;
  min-width: 0;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,.45);
}

.hero-img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7,16,42,.35) 0%, transparent 55%);
}

.hero-img-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(7,16,42,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,173,2,.35);
  border-radius: var(--r-xl);
  padding: .875rem 1.375rem;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.hero-img-badge--tl {
  top: 1.5rem;
  left: 1.5rem;
}

.hero-img-badge--br {
  bottom: 1.5rem;
  right: 1.5rem;
}

.hero-img-badge-num {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-img-badge-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.65);
  margin-top: .3rem;
  white-space: nowrap;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  background: rgba(255,173,2,.1);
  border: 1px solid rgba(255,173,2,.25);
  border-radius: var(--r-2xl);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-badge svg { color: var(--gold); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}


/* ============================================================
   HERO CARDS (floating mini-cards)
   ============================================================ */
.hero-cards {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1.25rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
  flex-direction: column;
  align-items: flex-start;
  min-width: 130px;
}
.hero-card:hover {
  background: rgba(255,173,2,.08);
  border-color: rgba(255,173,2,.3);
}

.hero-card-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,173,2,.15);
  border-radius: var(--r-md);
  color: var(--gold);
  flex-shrink: 0;
}

.hero-card span:not(.hero-card-icon) {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  line-height: 1.2;
}

.hero-card-sub {
  font-size: .75rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,.45) !important;
  margin-top: .1rem;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--navy-800);
  border-top: 1px solid rgba(255,173,2,.15);
  border-bottom: 1px solid rgba(255,173,2,.15);
  overflow: hidden;
  padding: .875rem 0;
  user-select: none;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  padding: 0 1.25rem;
  white-space: nowrap;
}

.marquee-sep {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  opacity: .7;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES GRID (mit Bildern)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card-img {
  height: 175px;
  overflow: hidden;
  background: var(--navy-700);
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease), opacity .3s;
  opacity: .88;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
  opacity: 1;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.3;
}

.service-card-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  transition: color .2s, gap .2s;
  margin-top: auto;
}
.service-card:hover .service-card-link {
  color: var(--gold-dark);
  gap: .6rem;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--navy-800);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .1rem;
  line-height: 1;
  margin-bottom: .875rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .03em;
  margin-bottom: .3rem;
}

.stat-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .02em;
}

/* ============================================================
   FEATURE SPLIT SECTION
   ============================================================ */
.feature-section {
  background: var(--navy);
  overflow: hidden;
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.feature-content .section-title {
  color: var(--gold);
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align left edge with container */
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-right: clamp(2rem, 5vw, 5rem);
  padding-left: max(var(--pad), calc((100vw - var(--container)) / 2 + var(--pad)));
}

.feature-image {
  position: relative;
  overflow: hidden;
}
.feature-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .5;
  display: block;
  transition: opacity .4s;
}
.feature-section:hover .feature-image img { opacity: .6; }

/* left-to-right fade overlay */
.feature-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, rgba(7,16,42,.5) 40%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin: 1.75rem 0 2.25rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9375rem;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
}

.feature-list-icon {
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: var(--r-sm);
  color: var(--navy);
  flex-shrink: 0;
  margin-top: .1rem;
}


/* ============================================================
   TRAINING GRID
   ============================================================ */
.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.training-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.training-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.training-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--navy-700);
}
.training-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.training-card:hover .training-card-img img { transform: scale(1.05); }

.training-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.training-card-tag {
  display: inline-block;
  padding: .25rem .75rem;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--r-2xl);
  margin-bottom: 1rem;
}

.training-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.3;
}

.training-card-desc {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}

.training-card-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: auto;
  transition: color .2s, gap .2s;
}
.training-card:hover .training-card-link {
  color: var(--gold-dark);
  gap: .6rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--gold);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(255,255,255,.15) 0%, transparent 60%),
    radial-gradient(circle at 20% 50%, rgba(7,16,42,.08) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}

.cta-subtitle {
  font-size: 1.0625rem;
  color: rgba(7,16,42,.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: calc(var(--header) + 4rem) 0 4rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Featured image — rechte Hälfte, links ausfadend */
.page-hero-img {
  position: absolute;
  top: 0; right: 0;
  width: 54%;
  height: 100%;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.6) 30%, black 55%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.6) 30%, black 55%);
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .45;
  display: block;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}

/* Text auf linker Hälfte einschränken wenn Bild vorhanden */
.page-hero--has-img .page-hero-text {
  max-width: 52%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .375rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }
.breadcrumb-current { color: rgba(255,255,255,.75); }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  max-width: 800px;
}

.page-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  max-width: 620px;
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-content-wrap {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.page-content-inner { max-width: 820px; }

.page-featured-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.page-featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Prose */
.prose {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.prose--centered { max-width: 700px; margin: 0 auto; text-align: center; }

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 2rem;
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.prose h1 { font-size: 2rem; }
.prose h2 { font-size: 1.5rem; border-bottom: 2px solid var(--gray-100); padding-bottom: .5rem; }
.prose h3 { font-size: 1.25rem; }
.prose h4 { font-size: 1.0625rem; }

.prose p { margin-bottom: 1.25rem; }

.prose a { color: var(--navy); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold); }
.prose a:not(.btn):hover { color: var(--gold-dark); }

.prose ul, .prose ol {
  margin: 1rem 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { color: var(--text-muted); }

.prose strong { font-weight: 700; color: var(--navy); }
.prose em { font-style: italic; }

.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  background: var(--gray-50);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text);
}

.prose hr {
  border: none;
  border-top: 1.5px solid var(--gray-200);
  margin: 2rem 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: .9375rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.prose thead tr {
  background: var(--navy);
  color: var(--white);
}
.prose thead th {
  padding: .75rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.prose tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background .15s;
}
.prose tbody tr:last-child { border-bottom: none; }
.prose tbody tr:nth-child(even) { background: var(--gray-50); }
.prose tbody tr:hover { background: rgba(255,173,2,.06); }
.prose td {
  padding: .875rem 1.25rem;
  color: var(--text);
  vertical-align: top;
}
.prose td strong { color: var(--navy); font-weight: 600; }
@media (max-width: 600px) {
  .prose table { font-size: .875rem; }
  .prose th, .prose td { padding: .625rem .875rem; }
}

/* CEO intro block */
.ceo-intro {
  display: flex;
  align-items: flex-end;
  gap: 2.5rem;
  margin: -2.5rem -7rem;
  padding: 1.25rem 3rem 0;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.ceo-intro-img-wrap {
  width: 200px;
  flex-shrink: 0;
  overflow: hidden;
}
.ceo-intro-img {
  width: 100%;
  height: auto;
  display: block;
  transform: none;
}
.prose .ceo-intro-quote {
  margin: 0;
  padding: 1.5rem 0;
  border: none;
  background: none;
  border-radius: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ceo-intro-quote p {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: .875rem;
}
.ceo-intro-quote footer {
  display: flex;
  flex-direction: column;
  gap: .125rem;
}
.ceo-intro-quote footer strong {
  font-size: .9375rem;
  color: var(--navy);
  font-weight: 700;
}
.ceo-intro-quote footer span {
  font-size: .8125rem;
  color: var(--text-muted);
}
@media (max-width: 600px) {
  .ceo-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    margin-left: 0;
    margin-right: 0;
    padding: 1.5rem 1.25rem;
  }
  .ceo-intro-img-wrap {
    width: 140px;
    height: 140px;
  }
  .ceo-intro-img {
    transform: none;
  }
  .ceo-intro-quote p {
    border-top: 3px solid var(--gold);
    padding-top: .875rem;
  }
  .ceo-intro-quote footer {
    align-items: center;
  }
}

/* Partner Login button in header */
.btn-partner-login {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: .4rem .875rem;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.btn-partner-login:hover {
  border-color: var(--gold);
  color: var(--gold);
}
@media (max-width: 768px) {
  .btn-partner-login { display: none; }
}

/* Login page */
.login-section {
  min-height: calc(100vh - var(--header));
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: var(--gray-50);
}
.login-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.login-logo {
  display: block;
  margin-bottom: .25rem;
}
.login-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  text-align: center;
}
.login-subtitle {
  font-size: .875rem;
  color: var(--text-muted);
  margin: -.5rem 0 0;
  text-align: center;
}
.login-error[hidden] { display: none; }
.login-error {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .625rem;
  background: #fff2f2;
  border: 1px solid #f5c2c2;
  color: #c0392b;
  font-size: .875rem;
  font-weight: 500;
  padding: .75rem 1rem;
  border-radius: var(--r-md);
}
.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.login-submit {
  width: 100%;
  justify-content: center;
  margin-top: .25rem;
}
.login-contact {
  font-size: .8125rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}
.login-contact a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

/* Page bottom CTA */
.page-bottom-cta {
  padding: 5rem 0;
}
.page-bottom-cta-inner {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}
.page-bottom-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .875rem;
  letter-spacing: -.02em;
}
.page-bottom-cta-inner p {
  color: rgba(255,255,255,.65);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info-block h2,
.contact-form-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.75rem;
  letter-spacing: -.02em;
}

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border-radius: var(--r-lg);
  color: var(--gold-dark);
  flex-shrink: 0;
}

.contact-detail-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: .2rem;
}
.contact-detail-value {
  font-size: .9375rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
a.contact-detail-value:hover { color: var(--gold-dark); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: .875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  font-family: var(--font-sans);
  font-size: .9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,173,2,.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-turnstile { margin-top: .5rem; }

.form-submit { display: flex; flex-direction: column; gap: .875rem; }
.form-privacy {
  font-size: .8125rem;
  color: var(--gray-400);
}
.form-privacy a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================================
   LIST PAGE
   ============================================================ */
.list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.list-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.list-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.list-card-image {
  height: 200px;
  overflow: hidden;
  background: var(--navy-700);
}
.list-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.list-card:hover .list-card-image img { transform: scale(1.05); }

.list-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }

.list-card-tag {
  display: inline-block;
  padding: .25rem .75rem;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--r-2xl);
  margin-bottom: .875rem;
}

.list-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}

.list-card-desc {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.list-card-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: auto;
  transition: color .2s, gap .2s;
}
.list-card:hover .list-card-link { color: var(--gold-dark); gap: .6rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); }

.footer-main {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.footer-contact-info { display: flex; flex-direction: column; gap: .875rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  transition: color .2s;
}
.footer-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1rem;
}
a.footer-contact-item:hover { color: var(--white); }

.footer-heading {
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1.5px solid rgba(255,173,2,.3);
}

.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color .2s, padding-left .2s;
}
.footer-links a:hover { color: var(--gold); padding-left: .35rem; }

.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

.footer-lang {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.footer-lang-link {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  padding: .25rem .5rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-sm);
  transition: color .2s, border-color .2s;
}
.footer-lang-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer-lang-link--active {
  color: var(--gold);
  border-color: var(--gold);
  cursor: default;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 0; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.08); }
  .feature-inner { grid-template-columns: 1fr; }
  .feature-image { display: none; }
  .feature-content {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

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

@media (max-width: 768px) {
  :root { --header: 68px; }

  .page-hero-img { display: none; }
  .page-hero--has-img .page-hero-text { max-width: 100%; }
  .hero-cards { gap: .625rem; }
  .hero-card { min-width: 110px; padding: .75rem 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:last-child { border-bottom: none; }

  /* Mobile nav panel — full viewport width, slides down from above header */
  .main-nav {
    display: block; /* override desktop flex so nav-list fills full width */
    position: fixed;
    top: var(--header);
    left: 0; right: 0;
    background: var(--navy);
    padding: 0;
    max-height: calc(100vh - var(--header));
    overflow-y: auto;
    transform: translateY(calc(-100% - var(--header) - 20px));
    transition: transform .35s var(--ease);
    box-shadow: 0 8px 32px rgba(0,0,0,.45);
    border-top: 1px solid rgba(255,255,255,.08);
    z-index: 1;
  }
  .main-nav.is-open { transform: translateY(0); }

  /* Logo and hamburger sit above the nav within the header stacking context */
  .site-logo      { position: relative; z-index: 2; }
  .header-actions { position: relative; z-index: 2; }

  /* Full-width nav rows */
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav-item:last-child { border-bottom: none; }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0;
    color: rgba(255,255,255,.9);
  }
  .nav-link:hover, .nav-link:active { background: rgba(255,255,255,.06); }

  /* Arrow rotates when item is open */
  .has-dropdown.is-open > .nav-link .dropdown-arrow { transform: rotate(180deg); opacity: 1; }

  /* Accordion sub-menu — max-height transition instead of display:none */
  .dropdown-menu {
    position: static;
    transform: none !important;
    visibility: visible;
    opacity: 1;
    pointer-events: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(255,255,255,.07);
    background: rgba(0,0,0,.25);
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease);
    padding: 0;
    margin: 0;
    min-width: 0;
  }
  .has-dropdown.is-open .dropdown-menu {
    max-height: 600px;
    pointer-events: all;
  }

  .dropdown-link {
    color: rgba(255,255,255,.72);
    font-size: .9375rem;
    font-weight: 400;
    padding: .9rem 1.25rem .9rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    white-space: normal;
  }
  .dropdown-link:last-child { border-bottom: none; }
  .dropdown-link:hover, .dropdown-link:active { background: rgba(255,255,255,.06); color: var(--white); }
  .dropdown-link::before { display: none; }

  .mobile-menu-toggle { display: flex; }
  .header-cta { display: none; }
  /* Always solid header on mobile */
  .site-header { background: var(--navy) !important; box-shadow: 0 2px 20px rgba(0,0,0,.15); }
  /* Tighten header layout on small screens */
  .header-inner { gap: 0; }
  /* Kontakt: show in mobile menu as regular item, not gold button */
  .nav-link.nav-cta {
    display: flex;
    background: none;
    color: rgba(255,255,255,.9);
    font-weight: 500;
    margin-left: 0;
  }
  .site-logo img { height: 30px; }

  .hero-stats { gap: 1rem; padding: 1.5rem; }
  .hero-stat-divider { height: 30px; }
  .hero-stat-number { font-size: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .training-grid { grid-template-columns: 1fr; }
  .list-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-main { padding: 3rem 0 2.5rem; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.25rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .hero-stat-divider { width: 40px; height: 1.5px; }
  .hero-ctas { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   UTILITY ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp .6s var(--ease) both;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--gray-50);
  border-radius: var(--r-xl);
  border: 1.5px solid var(--gray-200);
}
.form-success-icon {
  width: 80px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-pale), rgba(255,173,2,.2));
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  color: var(--gold-dark);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}
.form-success p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* Selection */
::selection {
  background: var(--gold);
  color: var(--navy);
}
