/* ============================================================
   DCI – Deutsche Consulting International GmbH
   Design System & Styles
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
  /* Colors */
  --white: #FFFFFF;
  --off-white: #F6F7F8;
  --anthracite: #1C1E21;
  --gray-mid: #5A5F6B;
  --gray-light: #8A8F9A;
  --navy: #1A3A5C;
  --navy-hover: #122A42;
  --navy-light: #E8EDF2;
  --divider: #E2E5E9;
  --error: #B0292A;
  --success: #2E7D32;

  /* Type scale – fluid */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.78rem + 0.2vw, 0.9375rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --text-xl: clamp(1.375rem, 1.1rem + 0.9vw, 1.75rem);
  --text-2xl: clamp(1.75rem, 1.3rem + 1.5vw, 2.625rem);
  --text-3xl: clamp(2.25rem, 1.5rem + 2.5vw, 3.5rem);

  /* Spacing – 8px base */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-text: 720px;

  /* Radius */
  --radius: 4px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 200ms var(--ease);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(28,30,33,0.06);
  --shadow-md: 0 4px 16px rgba(28,30,33,0.08);

  /* Font families */
  --font-display: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-height: 100dvh;
  line-height: 1.7;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--anthracite);
  background-color: var(--white);
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.2;
}

p, li, figcaption {
  text-wrap: pretty;
  max-width: 72ch;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--navy-hover);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

::selection {
  background: rgba(26, 58, 92, 0.15);
  color: var(--anthracite);
}

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: var(--radius);
}

a, button, [role='button'], input, textarea, select {
  transition: color var(--transition), background var(--transition),
    border-color var(--transition), box-shadow var(--transition),
    opacity var(--transition);
}

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

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sp-6);
  padding-right: var(--sp-6);
}

@media (min-width: 1024px) {
  .container {
    padding-left: var(--sp-12);
    padding-right: var(--sp-12);
  }
}

.section {
  padding-top: clamp(var(--sp-12), 6vw, var(--sp-24));
  padding-bottom: clamp(var(--sp-12), 6vw, var(--sp-24));
}

.section--alt {
  background-color: var(--off-white);
}

.section--navy {
  background-color: var(--navy);
  color: var(--white);
}

.grid {
  display: grid;
  gap: var(--sp-8);
}

.grid--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
}

.grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: 1fr 1fr 1fr; }
}

.grid--4 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid--4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.grid--5 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid--5 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .grid--5 { grid-template-columns: 1fr 1fr 1fr; }
}

.grid--7-5 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--7-5 { grid-template-columns: 7fr 5fr; gap: var(--sp-12); }
}

.grid--5-7 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--5-7 { grid-template-columns: 5fr 7fr; gap: var(--sp-12); }
}

.text-center { text-align: center; }
.text-narrow { max-width: var(--max-text); margin-left: auto; margin-right: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

/* --- TYPOGRAPHY --- */
.h1, h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--anthracite);
}

.h2, h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--anthracite);
  margin-bottom: var(--sp-6);
}

.h3, h3 {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.25;
  color: var(--anthracite);
  margin-bottom: var(--sp-4);
}

.h4, h4 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.3;
  color: var(--anthracite);
  margin-bottom: var(--sp-3);
}

.overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}

.subline {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--gray-mid);
  line-height: 1.6;
  max-width: 56ch;
}

.body-text p {
  margin-bottom: var(--sp-5);
  color: var(--gray-mid);
  line-height: 1.8;
}

.body-text p:last-child {
  margin-bottom: 0;
}

/* --- HEADER --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow 0.3s var(--ease);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}

.header__logo-main {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--anthracite);
  letter-spacing: 0.02em;
}

.header__logo-sub {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 400;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
}

.header__nav {
  display: none;
  align-items: center;
  gap: var(--sp-8);
}

@media (min-width: 1024px) {
  .header__nav { display: flex; }
}

.header__nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-mid);
  text-decoration: none;
  padding: var(--sp-2) 0;
  position: relative;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--anthracite);
}

.header__nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--navy);
}

.header__cta {
  display: none;
}
@media (min-width: 1024px) {
  .header__cta { display: inline-flex; }
}

/* Mobile menu toggle */
.header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--anthracite);
}
@media (min-width: 1024px) {
  .header__toggle { display: none; }
}

.header__toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: var(--sp-8) var(--sp-6);
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  display: block;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--anthracite);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--divider);
  text-decoration: none;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav .btn {
  margin-top: var(--sp-8);
  text-align: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--navy-hover);
  color: var(--white);
}

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

.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover {
  background: var(--off-white);
  color: var(--navy-hover);
}

.btn--sm {
  padding: 10px 20px;
  font-size: var(--text-xs);
}

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.link-arrow:hover {
  gap: var(--sp-3);
  color: var(--navy-hover);
}
.link-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.link-arrow:hover svg {
  transform: translateX(4px);
}

/* --- HERO --- */
.hero {
  padding-top: clamp(var(--sp-16), 10vw, var(--sp-32));
  padding-bottom: clamp(var(--sp-12), 8vw, var(--sp-24));
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin-bottom: var(--sp-6);
}

.hero .subline {
  margin-bottom: var(--sp-8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

/* Page hero (for inner pages) */
.page-hero {
  padding-top: clamp(var(--sp-12), 8vw, var(--sp-20));
  padding-bottom: clamp(var(--sp-8), 4vw, var(--sp-16));
  border-bottom: 1px solid var(--divider);
}

.page-hero h1 {
  margin-bottom: var(--sp-4);
}

.page-hero .subline {
  margin-bottom: 0;
}

/* --- CARDS --- */
.card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: var(--sp-8);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--navy);
}

.card__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--sp-3);
}

.card p {
  color: var(--gray-mid);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.card .link-arrow {
  margin-top: auto;
}

/* Alt card on gray bg */
.section--alt .card {
  background: var(--white);
}

/* Navy highlight card */
.card--navy {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}
.card--navy h3,
.card--navy h4 { color: var(--white); }
.card--navy p { color: rgba(255,255,255,0.8); }

/* --- POSITIONING BAND --- */
.band {
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-10) 0;
  text-align: center;
}

.band p {
  font-size: var(--text-lg);
  max-width: 56ch;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.6;
}

/* --- SPLIT CTA (Zielgruppen) --- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; }
}

.split__item {
  padding: clamp(var(--sp-10), 5vw, var(--sp-16));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split__item:first-child {
  background: var(--off-white);
  border-bottom: 1px solid var(--divider);
}
@media (min-width: 768px) {
  .split__item:first-child {
    border-bottom: none;
    border-right: 1px solid var(--divider);
  }
}

.split__item h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--sp-4);
}

.split__item p {
  color: var(--gray-mid);
  margin-bottom: var(--sp-6);
  max-width: 40ch;
}

/* --- PROCESS STEPS --- */
.steps {
  counter-reset: step;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-5);
  padding-bottom: var(--sp-8);
  position: relative;
}

.step:last-child {
  padding-bottom: 0;
}

.step::before {
  content: counter(step);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 700;
  flex-shrink: 0;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: var(--divider);
}

.step h4 {
  margin-bottom: var(--sp-2);
}

.step p {
  color: var(--gray-mid);
  font-size: var(--text-sm);
}

/* Horizontal steps for desktop */
@media (min-width: 768px) {
  .steps--horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--sp-8);
    counter-reset: step;
  }
  .steps--horizontal .step {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 0;
  }
  .steps--horizontal .step::before {
    margin: 0 auto var(--sp-4);
  }
  .steps--horizontal .step::after {
    display: none;
  }
}

/* --- HIGHLIGHT BOX --- */
.highlight-box {
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-8);
  border-radius: var(--radius);
}

.highlight-box p,
.highlight-box li {
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

.highlight-box ul {
  padding-left: 0;
}

.highlight-box li {
  padding: var(--sp-2) 0;
  padding-left: var(--sp-6);
  position: relative;
  font-size: var(--text-sm);
}

.highlight-box li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.6);
}

/* --- CHECKLIST --- */
.checklist {
  padding-left: 0;
}

.checklist li {
  padding: var(--sp-3) 0;
  padding-left: var(--sp-8);
  position: relative;
  color: var(--gray-mid);
  border-bottom: 1px solid var(--divider);
  font-size: var(--text-sm);
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: var(--white);
}

.checklist li::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

/* --- ABOUT SECTION --- */
.about-compact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.about-compact .stat {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-3) 0;
}

.about-compact .stat__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.about-compact .stat__icon svg {
  width: 20px;
  height: 20px;
}

.about-compact .stat__text {
  font-size: var(--text-sm);
  color: var(--gray-mid);
}

.about-compact .stat__text strong {
  color: var(--anthracite);
}

/* --- PROJEKT-KONTEXT CARDS --- */
.kontext-card {
  padding: var(--sp-8);
  border-left: 3px solid var(--navy);
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.kontext-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--sp-3);
}

.kontext-card p {
  color: var(--gray-mid);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-4);
}

.kontext-card ul {
  padding-left: var(--sp-5);
}

.kontext-card li {
  color: var(--gray-mid);
  font-size: var(--text-sm);
  padding: var(--sp-1) 0;
  position: relative;
  padding-left: var(--sp-4);
}

.kontext-card li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--navy);
}

/* --- CTA SECTION --- */
.cta-section {
  background: var(--off-white);
  border-top: 1px solid var(--divider);
  padding: clamp(var(--sp-12), 6vw, var(--sp-20)) 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: var(--sp-4);
}

.cta-section p {
  color: var(--gray-mid);
  max-width: 50ch;
  margin: 0 auto var(--sp-8);
}

/* --- CONTACT FORM --- */
.form {
  display: grid;
  gap: var(--sp-6);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 768px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}

.form__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--anthracite);
}

.form__label--optional::after {
  content: ' (optional)';
  font-weight: 400;
  color: var(--gray-light);
}

.form__input,
.form__select,
.form__textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--navy);
  outline: none;
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A5F6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__hint {
  font-size: var(--text-xs);
  color: var(--gray-light);
  margin-top: var(--sp-1);
}

.form__privacy {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--gray-mid);
}

.form__privacy input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--navy);
  flex-shrink: 0;
}

/* --- FOOTER --- */
.footer {
  background: var(--anthracite);
  color: rgba(255,255,255,0.7);
  padding-top: clamp(var(--sp-12), 5vw, var(--sp-20));
  padding-bottom: var(--sp-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-8); }
}

.footer__brand p {
  font-size: var(--text-xs);
  line-height: 1.7;
  max-width: 32ch;
  color: rgba(255,255,255,0.5);
}

.footer__brand .header__logo {
  margin-bottom: var(--sp-5);
}

.footer__brand .header__logo-main {
  color: var(--white);
}

.footer__brand .header__logo-sub {
  color: rgba(255,255,255,0.5);
}

.footer h4 {
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact-info {
  font-size: var(--text-xs);
  line-height: 1.8;
}

.footer__contact-info a {
  color: rgba(255,255,255,0.6);
}

.footer__contact-info a:hover {
  color: var(--white);
}

.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}

.footer__bar p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: var(--sp-6);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* --- BREADCRUMB --- */
.breadcrumb {
  font-size: var(--text-xs);
  color: var(--gray-light);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--gray-mid);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--navy);
}

.breadcrumb span {
  color: var(--gray-light);
}

/* --- PRIVACY NOTE --- */
.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-5);
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--navy);
  font-size: var(--text-xs);
  color: var(--gray-mid);
  line-height: 1.6;
}

.privacy-note svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--navy);
  margin-top: 2px;
}

/* --- ANIMATE ON SCROLL (subtle) --- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- MISC --- */
.divider {
  border: none;
  border-top: 1px solid var(--divider);
  margin: var(--sp-12) 0;
}

.badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--sp-1) var(--sp-3);
  background: var(--navy-light);
  color: var(--navy);
  border-radius: var(--radius);
}
