/* ============================================================
   anrufansagen.de — Design System
   BrennerMedien GmbH, Augsburg
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --navy-950: #060d1f;
  --navy-900: #0a1628;
  --navy-800: #0f2140;
  --navy-700: #1a2b4a;
  --navy-600: #2a3f5f;
  --navy-500: #3d5474;
  --navy-400: #5a7394;
  --navy-300: #8ba3be;
  --navy-200: #b8cade;
  --navy-100: #dfe8f0;
  --navy-50:  #f0f4f8;

  --cyan-600: #0891b2;
  --cyan-500: #00b4d8;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --cyan-200: #a5f3fc;
  --cyan-100: #cffafe;

  --mint-500: #06d6a0;
  --mint-400: #34d399;

  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;

  --red-500: #ef4444;

  /* Gradients */
  --gradient-accent: linear-gradient(135deg, var(--cyan-500), var(--mint-500));
  --gradient-hero: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 50%, #0c2a4a 100%);
  --gradient-card: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  --gradient-cta: linear-gradient(135deg, var(--cyan-600), var(--cyan-500));
  --gradient-cta-hover: linear-gradient(135deg, var(--cyan-500), var(--mint-500));

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.15);
  --shadow-card: 0 4px 20px rgba(10,22,40,.06);
  --shadow-card-hover: 0 12px 40px rgba(10,22,40,.12);
  --shadow-glow: 0 0 40px rgba(0,180,216,.15);

  /* Typography */
  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-padding: clamp(3rem, 8vw, 6rem);
  --container-width: 1200px;
  --container-padding: clamp(1.25rem, 4vw, 2rem);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
}

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

body {
  font-family: var(--font-sans);
  color: var(--navy-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html.nav-open,
html.nav-open body {
  overflow: hidden;
  touch-action: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { max-width: 65ch; }
.text-center p { margin-inline: auto; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--navy-500); line-height: 1.8; }
.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-600);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 1px;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: var(--section-padding);
}

.section--dark {
  background: var(--navy-900);
  color: var(--navy-200);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark .eyebrow { color: var(--cyan-400); }
.section--dark .lead { color: var(--navy-300); }

.section--alt { background: var(--gray-50); }

.text-center { text-align: center; }

.grid {
  display: grid;
  gap: 1.5rem;
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 28rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.grid--4 > .card { display: flex; flex-direction: column; }
.grid--4 > .card p { flex: 1; }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.header__logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.header__logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-600);
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast), background var(--duration-fast);
}
.nav a:hover {
  color: var(--navy-900);
  background: var(--gray-100);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-out),
              opacity var(--duration-fast);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem var(--container-padding);
    gap: 0.25rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--duration-normal) var(--ease-out),
                opacity var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-lg);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  .nav .btn { margin-top: 0.5rem; text-align: center; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-cta);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0,180,216,.25);
}
.btn--primary:hover {
  background: var(--gradient-cta-hover);
  box-shadow: 0 6px 25px rgba(0,180,216,.35);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--white);
  color: var(--navy-800);
  border: 1.5px solid var(--gray-300);
}
.btn--secondary:hover {
  border-color: var(--cyan-500);
  color: var(--cyan-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.btn--large {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn--icon svg {
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
}

/* --- Hero --- */
.hero {
  background: var(--gradient-hero);
  color: var(--white);
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(4rem, 10vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(0,180,216,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,180,216,.3), transparent);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 50rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--navy-300);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 40rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--navy-300);
}
.hero__badge svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--cyan-400);
  flex-shrink: 0;
}

/* Audio samples in hero */
.hero__samples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media (max-width: 600px) {
  .hero__samples { grid-template-columns: 1fr; }
}
.sample-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  color: var(--navy-200);
  font-size: 0.9rem;
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
}
.sample-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(0,180,216,.3);
  color: var(--white);
}
.sample-btn svg {
  width: 2rem;
  height: 2rem;
  fill: var(--cyan-400);
  flex-shrink: 0;
}
.sample-btn__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.sample-btn__title { font-weight: 600; font-size: 0.85rem; }
.sample-btn__voice { font-size: 0.75rem; color: var(--navy-400); }

/* --- Trust Bar --- */
.trustbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}
.trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--navy-500);
  white-space: nowrap;
}
.trustbar__item svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: var(--cyan-600);
  flex-shrink: 0;
}
.trustbar__item strong {
  color: var(--navy-800);
  font-weight: 700;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--duration-normal) var(--ease-out);
}
.card:hover {
  border-color: var(--cyan-200);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: var(--cyan-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--cyan-600);
}

.card h3 { margin-bottom: 0.75rem; }
.card p {
  color: var(--navy-500);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--cyan-100);
  color: var(--cyan-600);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cyan-600);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--duration-normal) var(--ease-out);
}
.card__link:hover { gap: 0.7rem; }
.card__link svg { width: 1rem; height: 1rem; fill: currentColor; }

/* Card variant: featured */
.card--featured {
  background: var(--gradient-hero);
  border-color: transparent;
  color: var(--navy-200);
}
.card--featured h3 { color: var(--white); }
.card--featured p { color: var(--navy-300); }
.card--featured .card__icon {
  background: rgba(0,180,216,.15);
}
.card--featured .card__icon svg { fill: var(--cyan-400); }

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 2rem;
  counter-reset: step;
}
.step {
  position: relative;
  text-align: center;
  counter-increment: step;
}
.step__number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(0,180,216,.2);
}
.step h3 { margin-bottom: 0.5rem; }
.step p {
  color: var(--navy-500);
  font-size: 0.9rem;
  margin-inline: auto;
}

/* Connector line between steps */
@media (min-width: 600px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.75rem;
    left: calc(50% + 2.5rem);
    width: calc(100% - 5rem);
    height: 2px;
    background: var(--gray-200);
    background: linear-gradient(90deg, var(--cyan-300), var(--gray-200));
  }
}

/* --- Features Grid --- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 2rem;
}
.feature {
  display: flex;
  gap: 1rem;
}
.feature__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: var(--cyan-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.section--dark .feature__icon {
  background: rgba(0,180,216,.12);
}
.feature__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--cyan-600);
}
.section--dark .feature__icon svg { fill: var(--cyan-400); }
.feature h4 { margin-bottom: 0.35rem; }
.feature p {
  color: var(--navy-500);
  font-size: 0.9rem;
}
.section--dark .feature p { color: var(--navy-300); }

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 48rem;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question:hover { color: var(--cyan-600); }
.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--navy-400);
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-out);
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out),
              padding var(--duration-normal) var(--ease-out);
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}
.faq-answer p {
  color: var(--navy-500);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--gradient-hero);
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(0,180,216,.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner p {
  color: var(--navy-300);
  margin-bottom: 2rem;
  margin-inline: auto;
  position: relative;
}
.cta-banner .btn { position: relative; }

/* --- Footer --- */
.footer {
  background: var(--navy-950);
  color: var(--navy-400);
  padding: 4rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--navy-400);
  margin-top: 1rem;
  max-width: 20rem;
}
.footer__brand .header__logo {
  font-size: 1.1rem;
  color: var(--white);
}

.footer h4 {
  color: var(--navy-200);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer__links li + li { margin-top: 0.5rem; }
.footer__links a {
  font-size: 0.9rem;
  color: var(--navy-400);
  transition: color var(--duration-fast);
}
.footer__links a:hover { color: var(--cyan-400); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.8rem;
}
.footer__bottom a {
  color: var(--navy-400);
  transition: color var(--duration-fast);
}
.footer__bottom a:hover { color: var(--cyan-400); }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.memberof {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--navy-500);
  font-size: 0.8rem;
  transition: color var(--duration-fast);
}
.memberof:hover { color: var(--navy-300); }
.memberof span {
  display: inline-flex;
  align-items: center;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -8px 30px rgba(0,0,0,.1);
  padding: 1.5rem var(--container-padding);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--duration-slow) var(--ease-out);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-banner__inner {
  max-width: var(--container-width);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}
.cookie-banner__text {
  flex: 1;
  min-width: 20rem;
  font-size: 0.9rem;
  color: var(--navy-600);
}
.cookie-banner__text a { color: var(--cyan-600); text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.cookie-banner__actions .btn { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* --- Generator Embed --- */
.generator-section {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-top: 2rem;
}
.generator-section ai-generator {
  display: block;
  min-height: 400px;
}

/* --- Page Header (for subpages) --- */
.page-header {
  background: var(--gradient-hero);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(0,180,216,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.page-header .lead {
  color: var(--navy-300);
  position: relative;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--navy-400);
  margin-bottom: 1.5rem;
  position: relative;
}
.breadcrumb a { color: var(--navy-400); transition: color var(--duration-fast); }
.breadcrumb a:hover { color: var(--cyan-400); }
.breadcrumb span { color: var(--navy-500); }

/* --- Content Sections --- */
.content-section h2 { margin-bottom: 1rem; }
.content-section p + p { margin-top: 1rem; }
.content-section ul {
  list-style: none;
  margin-top: 1rem;
}
.content-section ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--navy-600);
  font-size: 0.95rem;
}
.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 1rem;
  height: 1rem;
  background: var(--cyan-500);
  border-radius: 50%;
  opacity: 0.2;
}
.content-section ul li::after {
  content: '';
  position: absolute;
  left: 0.3rem;
  top: 0.85rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--cyan-600);
  border-radius: 50%;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- Spacing Utilities --- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.gap-3 { gap: 1.5rem; }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* --- Print --- */
@media print {
  .header, .footer, .cookie-banner, .cta-banner { display: none; }
  .hero { background: var(--navy-900) !important; color: #000 !important; }
}
