/* ===== DESIGN SYSTEM v4: Weiss/Hellgrau + Gelb-Akzent ===== */
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/poppins-300.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/poppins-800.woff2') format('woff2'); }

:root {
  /* Accent: Yellow */
  --yellow: #FFFF00;
  --yellow-hover: #E6E600;
  --yellow-soft: #FFFCB8;
  --yellow-50: #FFFEE8;

  /* Dark neutrals (text, footer, icons) */
  --black: #0A0A0A;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;

  /* Light neutrals (backgrounds) */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;

  /* Alternating section background */
  --bg-alt: #EDEFF1;

  /* Text */
  --text: #111827;
  --text-secondary: #374151;
  --text-muted: #4B5563;
  --text-inverse: #FFFFFF;

  /* Borders */
  --border: #E5E7EB;
  --border-strong: #D1D5DB;

  /* Font */
  --font: 'Poppins', sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
form,
form * {
  box-sizing: border-box;
}

form input,
form textarea,
form select,
form button {
  max-width: 100%;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="url"],
form input[type="search"],
form input[type="password"],
form input[type="number"],
form textarea,
form select {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* ===== NAVIGATION (White) ===== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { width: 250px; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-links li { flex-shrink: 0; }

.nav-links a:hover {
  color: var(--text);
  background: var(--gray-100);
}

.nav-links > li > a.nav-active {
  color: var(--text);
  font-weight: 700;
  background: var(--yellow);
}
.nav-submenu a.nav-active {
  color: var(--text);
  background: var(--yellow);
  font-weight: 700;
}

.nav-links .nav-trigger {
  display: inline-block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: default;
  white-space: nowrap;
  user-select: none;
  position: relative;
}
.nav-links .nav-trigger:hover {
  color: var(--text);
  background: var(--gray-100);
}
.nav-links .dropdown { position: relative; }
.nav-links .dropdown::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--gray-500);
  margin-left: 4px;
  vertical-align: middle;
}

/* Nav-Submenu (Dropdown) */
.nav-item-has-submenu { position: relative; }
.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
  padding: 0.5rem;
  list-style: none;
  margin: 0.5rem 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 100;
}
.nav-item-has-submenu:hover > .nav-submenu,
.nav-item-has-submenu:focus-within > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-submenu li { width: 100%; }
.nav-submenu a {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: var(--gray-100);
  color: var(--text);
}

.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 8px !important;
  transition: all 0.2s !important;
}

.nav-cta:hover { background: var(--yellow-hover) !important; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-phone svg { width: 18px; height: 18px; stroke: var(--black); fill: none; }

/* ===== HERO (White) ===== */
.hero {
  padding: 172px 2rem 100px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--yellow-50) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gray-100) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-image {
  width: 100%;
  max-width: 560px;
  height: auto;
  justify-self: end;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.15);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero h1 span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hero h1 span::before {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  bottom: 2px;
  height: 14px;
  background: var(--yellow);
  z-index: -1;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 255, 0, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--black);
  background: var(--gray-50);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--black);
  color: var(--text-inverse);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-dark:hover { background: var(--gray-800); transform: translateY(-1px); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-trust-item svg {
  width: 18px; height: 18px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.08);
}

.hero-visual-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.hero-visual-header .dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-visual-header .dot.green { background: #22C55E; }
.hero-visual-header .dot.amber { background: #F59E0B; }
.hero-visual-header .dot.red { background: #EF4444; }
.hero-visual-header span { color: var(--text-muted); font-size: 0.8rem; }

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.status-row:last-child { border-bottom: none; }
.status-label { color: var(--text-muted); font-size: 0.85rem; }
.status-value { font-weight: 600; font-size: 0.85rem; color: var(--text); }
.status-active { color: #15803D; }
.status-pending { color: #B45309; }
.status-info { color: var(--black); }

.route-bar {
  margin-top: 1.5rem;
  background: var(--yellow-50);
  border: 1px solid var(--yellow-soft);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.route-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--black); flex-shrink: 0; }
.route-line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--black), var(--yellow)); position: relative; }
.route-line::after { content: ''; position: absolute; right: 0; top: -4px; width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); border: 2px solid var(--black); }
.route-text { display: flex; justify-content: space-between; margin-top: 0.5rem; }
.route-text span { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* ===== STATS BAR (Alt) ===== */
.stats-bar {
  background: var(--bg-alt);
  padding: 4rem 2rem;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item { text-align: center; position: relative; }
.stat-number { font-size: 2.75rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 0.5rem; }
.stat-number::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: var(--yellow);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.stat-label { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }

/* ===== SERVICES (White) ===== */
.services {
  padding: 6rem 2rem;
  background: var(--white);
  position: relative;
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }

/* Editorial section index (01, 02, 03…) */
.section-index {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-index::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
}
.section-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}
.section-header h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; color: var(--text); }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.08);
  transform: translateY(-2px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon.dark { background: var(--black); }
.service-icon.yellow { background: var(--yellow); }
.service-icon.light { background: var(--gray-100); border: 1px solid var(--border); }

.service-icon svg { width: 28px; height: 28px; stroke-width: 1.5; fill: none; }
.service-icon.dark svg { stroke: var(--yellow); }
.service-icon.yellow svg { stroke: var(--black); }
.service-icon.light svg { stroke: var(--black); }

.service-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text); }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }
.service-link { color: var(--text); font-size: 0.85rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.service-link svg { stroke: var(--black); }
.service-card:hover .service-link { gap: 0.7rem; }

/* ===== WHY US (Alt) ===== */
.why-us {
  padding: 6rem 2rem;
  background: var(--bg-alt);
  position: relative;
}

.why-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us h2 { color: var(--text); font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.why-us > .why-grid > div > p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.2s;
}

.why-feature:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.why-feature-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.why-feature-icon svg { width: 20px; height: 20px; stroke: var(--black); fill: none; stroke-width: 2.5; }
.why-feature h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); }
.why-feature p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.5; }

.why-cert {
  max-width: 1280px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: 12px;
}
.why-cert a { display: block; line-height: 0; }
.why-cert img {
  display: block;
  width: 200px;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-cert a:hover img {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
}
.why-cert figcaption { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }
.why-cert-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.why-cert figcaption strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.why-cert figcaption p { margin: 0; }

/* ===== LIGHTBOX ===== */
body.lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.88);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  padding: 2rem;
  animation: lightbox-fade 0.18s ease-out;
}
@keyframes lightbox-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  display: block;
  max-width: min(100%, 920px);
  max-height: 90vh;
  width: auto; height: auto;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  background: #fff;
}
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.lightbox-close:hover { background: var(--yellow); }

/* ===== ENGAGE CTA (PDF/Document download card) ===== */
.engage-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: 12px;
}
.engage-cta-text strong { display: block; color: var(--text); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
.engage-cta-text p { margin: 0; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; }
.engage-cta-text a { color: var(--text); text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 2px; }
.engage-cta .btn-primary { white-space: nowrap; }
@media (max-width: 720px) {
  .engage-cta { grid-template-columns: 1fr; text-align: center; }
}

/* ===== TRAINING (White) ===== */
.training {
  padding: 6rem 2rem;
  background: var(--white);
  position: relative;
}

.training-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.training-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.08);
}

.training-content h2 {
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.training-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.training-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.training-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.training-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--yellow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 992px) {
  .training-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ===== REGIONS (White) ===== */
.regions {
  padding: 6rem 2rem;
  background: var(--white);
  position: relative;
}

.regions-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.region-tag {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.region-tag:hover {
  background: var(--yellow);
  border-color: var(--black);
  color: var(--black);
  font-weight: 700;
}

/* ===== CTA SECTION (Alt) ===== */
.cta-section {
  padding: 6rem 2rem;
  background: var(--white);
  position: relative;
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.cta-content h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.cta-content p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7; }

.cta-contact-info { display: flex; flex-direction: column; gap: 1rem; }
.cta-contact-item { display: flex; align-items: center; gap: 1rem; color: var(--text-secondary); font-size: 0.95rem; }
.cta-contact-item svg { width: 20px; height: 20px; stroke: var(--black); fill: none; stroke-width: 2; flex-shrink: 0; }
.cta-contact-item strong { color: var(--text); }

.cta-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.06);
}

.cta-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px var(--yellow-soft);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.form-submit:hover {
  background: var(--yellow-hover);
  box-shadow: 0 6px 20px rgba(255, 255, 0, 0.35);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  display: none;
}
.form-status.is-success {
  display: block;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #6EE7B7;
}
.form-status.is-error {
  display: block;
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

/* ===== FOOTER (Dark anthracite, not blue) ===== */
.footer {
  background: var(--gray-900);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: inline-block;
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.footer-logo img { height: 44px; width: auto; display: block; }
.footer-brand p { color: rgba(255, 255, 255, 0.65); font-size: 0.85rem; line-height: 1.6; }
.footer h3 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--yellow); margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { color: rgba(255, 255, 255, 0.65); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--yellow); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span { color: rgba(255, 255, 255, 0.5); font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1214px) {
  .nav-phone { display: none; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 0.5rem 0.65rem; }
  .nav-cta { padding: 0.6rem 1rem !important; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-image { max-width: 100%; justify-self: stretch; }
  .hero h1 { font-size: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-logo img { width: 210px; }
  .nav-inner { height: 72px; }
  .breadcrumbs { margin-top: 72px; }
}

@media (max-width: 768px) {
  .section-index { display: none; }
  .hero { padding: 120px 1.5rem 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-number { font-size: 2rem; }
  .why-features { grid-template-columns: 1fr; }
  .why-cert { grid-template-columns: 1fr; text-align: center; padding: 1.5rem; }
  .why-cert img { margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== CONTENT PAGES (Breadcrumbs, page-hero, article) ===== */
.breadcrumbs {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  font-size: 0.85rem;
  margin-top: 104px; /* clears fixed nav */
}
.breadcrumbs-inner { max-width: 1280px; margin: 0 auto; }
.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.breadcrumbs a:hover { color: var(--text); }
.breadcrumbs .sep { margin: 0 0.5rem; color: var(--text-muted); }
.breadcrumbs .current { color: var(--text); font-weight: 500; }

/* Page hero — white background with yellow glow, mirrors homepage hero rhythm without the visual card */
.page-hero {
  padding: 4rem 2rem 5rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--yellow-50) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.page-hero-inner {
  max-width: 1280px; margin: 0 auto;
  position: relative; z-index: 1;
}
.page-hero--with-image .page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.page-hero-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  justify-self: end;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
}
@media (max-width: 1024px) {
  .page-hero--with-image .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-image { max-width: 100%; justify-self: stretch; }
}
.page-hero h1 {
  font-size: 2.75rem; font-weight: 800; line-height: 1.15;
  color: var(--text); margin-bottom: 1rem;
}
.page-hero h1 span {
  position: relative; display: inline-block; z-index: 1;
}
.page-hero h1 span::before {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  bottom: 2px;
  height: 12px;
  background: var(--yellow);
  z-index: -1;
}
.page-hero p {
  font-size: 1.1rem; color: var(--text-secondary);
  max-width: 720px; line-height: 1.7;
}

/* Article prose — used on service pages and legal pages */
.article {
  padding: 4rem 2rem;
  background: var(--bg-alt);
}
.article-inner {
  max-width: 860px; margin: 0 auto;
  color: var(--text);
}
.article h2 {
  font-size: 1.75rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 1rem;
  color: var(--text);
}
.article h2:first-child { margin-top: 0; }
.article h3 {
  font-size: 1.25rem; font-weight: 600; margin-top: 1.75rem; margin-bottom: 0.75rem;
  color: var(--text);
}
.article p, .article li {
  font-size: 1rem; line-height: 1.75; color: var(--text-secondary);
  margin-bottom: 1rem;
}
.article ul, .article ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.article a:hover { background: var(--yellow-50); }
.article strong { color: var(--text); font-weight: 700; }
.article ul.check-list { list-style: none; padding-left: 0; }

.ratgeber-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 1rem; }
.ratgeber-list a {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.15s, box-shadow 0.15s;
}
.ratgeber-list a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  background: var(--white);
}
.ratgeber-list h3 { margin: 0 0 0.5rem; font-size: 1.15rem; font-weight: 700; }
.ratgeber-list p { margin: 0; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }
.article ul.check-list li {
  position: relative; padding-left: 2rem;
}
.article ul.check-list li::before {
  content: "✔";
  position: absolute; left: 0; top: 0;
  color: var(--text);
  background: var(--yellow);
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
}
.glossary-hint {
  background: var(--bg-alt);
  border-left: 4px solid var(--yellow);
  padding: 0.85rem 1rem;
  margin: 0 0 2rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-radius: 0 6px 6px 0;
}
.glossary-hint a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.glossary-hint a:hover { background: var(--yellow-50); }

.article dl.paragraph-list { display: grid; gap: 1.25rem; margin: 1.5rem 0; }
.article dl.paragraph-list dt {
  font-weight: 700; color: var(--text);
  border-left: 4px solid var(--yellow);
  padding: 0.25rem 0 0.25rem 0.85rem;
  font-size: 1.05rem;
}
.article dl.paragraph-list dd {
  margin: 0.4rem 0 0 0.85rem;
  color: var(--text-secondary);
  font-size: 1rem; line-height: 1.7;
}

.kosten-tabelle {
  margin: 1.5rem 0 2rem;
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.kosten-tabelle table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--white);
}
.kosten-tabelle thead th {
  background: var(--yellow-50);
  color: var(--text);
  font-weight: 700;
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 2px solid var(--yellow);
}
.kosten-tabelle tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}
.kosten-tabelle tbody tr:last-child td { border-bottom: none; }
.kosten-tabelle tbody tr:nth-child(even) td { background: var(--bg-alt); }

.faq-section {
  padding: 4rem 2rem;
  background: var(--bg-alt);
}
.faq-inner {
  max-width: 920px; margin: 0 auto;
}
.faq-inner > h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 2rem;
  color: var(--text);
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  transition: border-color 0.15s;
}
.faq-item[open] { border-color: var(--yellow); }
.faq-item > summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; line-height: 1;
  color: #000;
  font-weight: 600;
  transition: transform 0.2s;
}
.faq-item[open] > summary::after {
  content: "−";
}
.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Job cards (Karriere-Seite) */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.job-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}
.job-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.job-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.job-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.job-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 1rem 0 0.5rem;
}
.job-card ul { margin: 0 0 0.5rem; padding-left: 1.25rem; }
.job-card ul li { margin-bottom: 0.3rem; line-height: 1.6; color: var(--text-secondary); }
.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding: 0.8rem 1.4rem;
  background: var(--yellow);
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--yellow);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.job-apply-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.job-apply-btn:hover {
  background: var(--white);
  border-color: var(--text);
  transform: translateY(-1px);
}
.faq-answer p { margin: 0 0 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
}

/* City-page USP grid (alt section) */
.city-features {
  padding: 5rem 2rem;
  background: var(--bg-alt);
  position: relative;
}
.city-features-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.city-feature {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.75rem;
  transition: all 0.2s;
  display: block; text-decoration: none; color: inherit;
}
.city-feature:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}
.city-feature h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.city-feature p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* City-context: Standort-Profil + Behörden-Card */
.city-context {
  padding: 4rem 2rem;
  background: var(--bg-alt);
}
.city-context-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.6fr 1fr;
  align-items: start;
}
.city-context-text h2 { font-size: 1.6rem; font-weight: 700; margin: 0.5rem 0 1rem; color: var(--text); }
.city-context-text p {
  color: var(--text-secondary); font-size: 1rem;
  line-height: 1.75; margin-bottom: 1rem;
}
.behoerde-card {
  background: var(--white); border-radius: 14px;
  padding: 1.75rem 1.5rem; border-left: 5px solid var(--yellow);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  font-size: 0.95rem;
}
.behoerde-card h3 {
  font-size: 1.1rem; font-weight: 700;
  margin: 0.5rem 0 0.75rem; color: var(--text); line-height: 1.4;
}
.behoerde-card .behoerde-address {
  margin: 0 0 1rem; color: var(--text);
  font-style: normal; line-height: 1.55;
}
.behoerde-card ul.behoerde-meta,
.behoerde-card ul.behoerde-times {
  list-style: none; padding: 0; margin: 0 0 1rem;
}
.behoerde-card ul.behoerde-meta li,
.behoerde-card ul.behoerde-times li {
  font-size: 0.9rem; color: var(--text-secondary);
  margin-bottom: 0.35rem; line-height: 1.5;
}
.behoerde-card ul.behoerde-meta a { color: var(--text); text-decoration: underline; text-decoration-color: var(--yellow); text-underline-offset: 2px; }
.behoerde-times-label { margin: 0 0 0.4rem; color: var(--text); font-size: 0.9rem; }
.behoerde-hint {
  margin-top: 0.85rem; padding-top: 0.85rem;
  border-top: 1px dashed rgba(0,0,0,0.1);
  font-size: 0.85rem; color: var(--text-muted); font-style: italic;
}

/* Neighbor links — white section separating city content from CTA */
.neighbors {
  padding: 4rem 2rem;
  background: var(--white);
  position: relative;
}
.neighbors-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.neighbors h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.neighbors-list {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
}

@media (max-width: 1024px) {
  .city-features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 2.5rem 1.5rem 3rem; }
  .page-hero h1 { font-size: 2rem; }
  .city-features-grid { grid-template-columns: 1fr; }
  .article { padding: 2.5rem 1.5rem; }
  .city-context-inner { grid-template-columns: 1fr; }
}

/* Mobile nav toggle (v4 nav is white, so icon is dark) */
.nav-toggle {
  display: none; background: transparent; border: none; cursor: pointer;
  color: var(--text); padding: 0.5rem;
}
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--text); fill: none; stroke-width: 2; }
@media (max-width: 992px) {
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 1rem 2rem;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { display: block; padding: 0.75rem 1rem; color: var(--text); }
  .nav-links.open .nav-trigger { display: block; padding: 0.75rem 1rem; color: var(--text); }
  .nav-links.open .nav-submenu {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0.25rem 1rem;
    margin: 0;
    background: transparent;
    min-width: 0;
  }
  .nav-links.open .nav-submenu a {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
  }
}

/* ===== Floating quick-contact actions (right edge, always visible) ===== */
.float-actions {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 95;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.18);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.float-btn:hover { background: var(--yellow-hover); transform: scale(1.06); }
.float-btn:focus-visible { outline: 3px solid var(--black); outline-offset: 2px; }
.float-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
@media (max-width: 768px) {
  .float-actions { right: 0.75rem; gap: 0.4rem; }
  .float-btn { width: 44px; height: 44px; }
  .float-btn svg { width: 18px; height: 18px; }
}

/* ===== Cookie notice banner ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 110;
  background: var(--gray-900);
  color: var(--text-inverse);
  padding: 1rem 1.5rem;
  border-top: 3px solid var(--yellow);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.22);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.cookie-banner-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
.cookie-banner-text a { color: var(--yellow); text-decoration: underline; }
.cookie-banner-text a:hover { text-decoration: none; }
.cookie-banner-btn {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.cookie-banner-btn:hover { background: var(--yellow-hover); }
.cookie-banner-btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }
@media (max-width: 768px) {
  .cookie-banner { padding: 0.9rem 1rem; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .cookie-banner-btn { width: 100%; padding: 0.85rem 1rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
