/* CSS Custom Properties from Design Tokens */
:root {
  /* Fonts */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Typography scale */
  --type-h1-size: clamp(2rem, 4vw, 3rem);
  --type-h1-weight: 700;
  --type-h1-lh: 1.1;
  --type-h1-ls: -0.02em;

  --type-h2-size: clamp(1.5rem, 3vw, 2.25rem);
  --type-h2-weight: 600;
  --type-h2-lh: 1.2;
  --type-h2-ls: -0.01em;

  --type-h3-size: clamp(1.25rem, 2.5vw, 1.75rem);
  --type-h3-weight: 600;
  --type-h3-lh: 1.3;
  --type-h3-ls: 0;

  --type-h4-size: 1.125rem;
  --type-h4-weight: 600;
  --type-h4-lh: 1.4;
  --type-h4-ls: 0;

  --type-body-size: 1rem;
  --type-body-weight: 400;
  --type-body-lh: 1.6;
  --type-body-ls: 0;

  --type-body-large-size: 1.125rem;
  --type-body-large-weight: 400;
  --type-body-large-lh: 1.6;
  --type-body-large-ls: 0;

  --type-small-size: 0.875rem;
  --type-small-weight: 400;
  --type-small-lh: 1.5;
  --type-small-ls: 0.01em;

  --type-caption-size: 0.75rem;
  --type-caption-weight: 500;
  --type-caption-lh: 1.4;
  --type-caption-ls: 0.02em;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Colors */
  --primary-50: #e8f4fd;
  --primary-100: #b9dff8;
  --primary-200: #8acaf3;
  --primary-300: #5bb5ee;
  --primary-400: #2ca0e9;
  --primary-500: #0d7cc4;
  --primary-600: #0a6299;
  --primary-700: #07486e;
  --primary-800: #042e43;
  --primary-900: #011418;

  --secondary-50: #fdf5e6;
  --secondary-100: #f9e0b3;
  --secondary-200: #f5cb80;
  --secondary-300: #f1b64d;
  --secondary-400: #eda11a;
  --secondary-500: #c4850e;
  --secondary-600: #91630a;
  --secondary-700: #5e4107;
  --secondary-800: #2b1f03;
  --secondary-900: #110d01;

  --neutral-0: #ffffff;
  --neutral-50: #f7f8f9;
  --neutral-100: #e8eaed;
  --neutral-200: #d3d7dc;
  --neutral-300: #b5bbc3;
  --neutral-400: #8c95a1;
  --neutral-500: #636e7d;
  --neutral-600: #4a5362;
  --neutral-700: #353c47;
  --neutral-800: #1f252d;
  --neutral-900: #0d1117;
  --neutral-1000: #000000;

  --accent: #10b981;
  --success: #10b981;
  --warn: #f59e0b;
  --error: #ef4444;

  --background: var(--neutral-0);
  --surface: var(--neutral-50);
  --surface-card: var(--neutral-0);
  --text-primary: var(--neutral-900);
  --text-secondary: var(--neutral-600);
  --text-tertiary: var(--neutral-400);
  --text-inverse: var(--neutral-0);
  --border-color: var(--neutral-200);

  /* Radius */
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-none: none;
  --shadow-sm: 0 1px 2px rgba(13, 17, 23, 0.05);
  --shadow-md: 0 4px 12px rgba(13, 17, 23, 0.08);
  --shadow-lg: 0 8px 24px rgba(13, 17, 23, 0.12);

  /* Motion */
  --motion-fast: 150ms;
  --motion-base: 250ms;
  --motion-slow: 500ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Container */
  --container-max: 1200px;
}

/* Font Loading */
@font-face {
  font-family: 'Outfit';
  src: url('./fonts/outfit-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('./fonts/outfit-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('./fonts/outfit-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 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-body);
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-body-lh);
  letter-spacing: var(--type-body-ls);
  color: var(--text-primary);
  background-color: var(--background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Elements */
h1 {
  font-family: var(--font-display);
  font-size: var(--type-h1-size);
  font-weight: var(--type-h1-weight);
  line-height: var(--type-h1-lh);
  letter-spacing: var(--type-h1-ls);
  margin-bottom: var(--space-4);
}

h2 {
  font-family: var(--font-display);
  font-size: var(--type-h2-size);
  font-weight: var(--type-h2-weight);
  line-height: var(--type-h2-lh);
  letter-spacing: var(--type-h2-ls);
  margin-bottom: var(--space-4);
}

h3 {
  font-family: var(--font-display);
  font-size: var(--type-h3-size);
  font-weight: var(--type-h3-weight);
  line-height: var(--type-h3-lh);
  letter-spacing: var(--type-h3-ls);
  margin-bottom: var(--space-3);
}

h4 {
  font-family: var(--font-display);
  font-size: var(--type-h4-size);
  font-weight: var(--type-h4-weight);
  line-height: var(--type-h4-lh);
  letter-spacing: var(--type-h4-ls);
  margin-bottom: var(--space-2);
}

p {
  margin-bottom: var(--space-4);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary-500);
  text-decoration: none;
  transition: color var(--motion-fast) var(--ease-out);
}

a:hover {
  color: var(--primary-700);
}

/* Layout & Containers */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  width: 100%;
}

.section {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.section--muted {
  background-color: var(--surface);
}

/* Nav Bar */
.navbar {
  background-color: var(--background);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-500);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.navbar__logo svg {
  width: 24px;
  height: 24px;
  fill: var(--secondary-400);
}

.navbar__menu {
  display: flex;
  gap: var(--space-5);
  list-style: none;
  align-items: center;
}

.navbar__link {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: var(--type-small-size);
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  transition: all var(--motion-fast) var(--ease-out);
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--primary-500);
  border-bottom-color: var(--primary-500);
}

.navbar__cta {
  background-color: var(--primary-500);
  color: var(--text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--type-small-size);
  transition: background-color var(--motion-fast) var(--ease-out);
}

.navbar__cta:hover {
  background-color: var(--primary-600);
  color: var(--text-inverse);
}

.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.navbar__toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-primary);
  fill: none;
  stroke-width: 2;
}

/* Hero Section */
.hero {
  background-color: var(--primary-900);
  background-image: linear-gradient(rgba(1, 20, 24, 0.8), rgba(1, 20, 24, 0.9)), url('./assets/hero/hero-bg.png');
  background-size: cover;
  background-position: center;
  color: var(--text-inverse);
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 700px;
}

.hero__subline {
  color: var(--primary-100);
  font-size: var(--type-body-large-size);
  margin-bottom: var(--space-5);
  font-weight: 500;
}

.hero__cta-group {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-5);
  font-size: var(--type-body-size);
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--motion-fast) var(--ease-out);
  gap: var(--space-2);
}

.btn--primary {
  background-color: var(--primary-500);
  color: var(--text-inverse);
}

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

.btn--secondary {
  background-color: transparent;
  border-color: var(--neutral-100);
  color: var(--text-inverse);
}

.btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Badge System */
.trust-badge-container {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-inverse);
  transition: all var(--motion-fast) var(--ease-out);
}

.trust-badge:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary-400);
}

.trust-badge__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge__info {
  display: flex;
  flex-direction: column;
}

.trust-badge__title {
  font-size: var(--type-caption-size);
  color: var(--neutral-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.trust-badge__rating {
  font-size: var(--type-body-size);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.trust-badge__rating span {
  color: var(--secondary-400);
}

/* Service Cards / Features */
.section__title-group {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-7);
}

.section__subtitle {
  color: var(--primary-500);
  text-transform: uppercase;
  font-weight: 700;
  font-size: var(--type-caption-size);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.grid {
  display: grid;
  gap: var(--space-5);
}

.grid--3-col {
  grid-template-columns: 1fr;
}

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

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

.card {
  background-color: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  transition: all var(--motion-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  transition: background-color var(--motion-fast) var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-300);
}

.card:hover::before {
  background-color: var(--primary-500);
}

.card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--primary-500);
}

.card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card__title {
  margin-bottom: var(--space-2);
}

.card__text {
  color: var(--text-secondary);
  font-size: var(--type-small-size);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.card__link {
  font-size: var(--type-small-size);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.card__link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform var(--motion-fast) var(--ease-out);
}

.card:hover .card__link svg {
  transform: translateX(4px);
}

/* Proof / Review Section */
.proof-section {
  background-color: var(--surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.testimonial {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background-color: var(--background);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: var(--type-h3-size);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: var(--space-4);
}

.testimonial__quote::before,
.testimonial__quote::after {
  color: var(--primary-200);
}

.testimonial__author {
  font-weight: 700;
  color: var(--text-primary);
  font-size: var(--type-small-size);
  margin-bottom: var(--space-1);
}

.testimonial__meta {
  font-size: var(--type-caption-size);
  color: var(--text-tertiary);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
}

.testimonial__stars {
  color: var(--secondary-400);
}

/* Detailed Services Sections (Leistungen.html) */
.service-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 768px) {
  .service-section {
    flex-direction: row;
  }
  .service-section:nth-child(even) {
    flex-direction: row-reverse;
  }
  .service-section > * {
    flex: 1;
  }
}

.service-section__image-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.service-section__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

.service-section__content {
  padding: var(--space-4);
}

.service-section__title {
  margin-bottom: var(--space-3);
  color: var(--primary-600);
}

.service-section__list {
  list-style: none;
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-section__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--type-small-size);
  color: var(--text-secondary);
}

.service-section__list-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Contact Page Layout & Forms */
.contact-layout {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-info__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-500);
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-info__title {
  font-weight: 700;
  font-size: var(--type-small-size);
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-info__value {
  color: var(--text-secondary);
  font-size: var(--type-small-size);
}

/* Forms */
.form {
  background-color: var(--surface-card);
  border: 1px solid var(--border-color);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

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

.form__label {
  font-size: var(--type-small-size);
  font-weight: 600;
  color: var(--text-primary);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--type-body-size);
  color: var(--text-primary);
  background-color: var(--background);
  transition: border-color var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(13, 124, 196, 0.15);
}

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

.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--type-small-size);
  color: var(--text-secondary);
  cursor: pointer;
}

.form__checkbox-label input {
  margin-top: 3px;
  cursor: pointer;
}

.form__checkbox-label a {
  text-decoration: underline;
}

.form__demo-note {
  font-size: var(--type-caption-size);
  color: var(--text-tertiary);
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: var(--space-3);
  margin-top: var(--space-2);
}

/* Anfahrt Map placeholder */
.map-container {
  height: 300px;
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.map-container svg {
  width: 48px;
  height: 48px;
  color: var(--primary-500);
  margin-bottom: var(--space-3);
}

.map-container__text {
  font-size: var(--type-small-size);
  color: var(--text-secondary);
  max-width: 400px;
  margin-bottom: var(--space-4);
  z-index: 2;
}

.map-container__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 20%, var(--neutral-100) 80%), repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(13, 17, 23, 0.02) 20px, rgba(13, 17, 23, 0.02) 21px), repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(13, 17, 23, 0.02) 20px, rgba(13, 17, 23, 0.02) 21px);
}

/* Call to Action Banner */
.cta-banner {
  background-color: var(--primary-900);
  color: var(--text-inverse);
  text-align: center;
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
  border-top: 4px solid var(--secondary-400);
}

.cta-banner__title {
  margin-bottom: var(--space-2);
}

.cta-banner__text {
  color: var(--primary-100);
  font-size: var(--type-body-large-size);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-5);
}

/* Footer */
.footer {
  background-color: var(--neutral-900);
  color: var(--neutral-300);
  border-top: 1px solid var(--neutral-800);
  padding-top: var(--space-8);
  padding-bottom: var(--space-6);
}

.footer__grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-7);
}

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

.footer__brand-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__brand-title svg {
  width: 24px;
  height: 24px;
  fill: var(--secondary-400);
}

.footer__brand-text {
  font-size: var(--type-small-size);
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: var(--space-4);
}

.footer__section-title {
  color: var(--text-inverse);
  font-size: var(--type-small-size);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__link {
  color: var(--neutral-400);
  font-size: var(--type-small-size);
  transition: color var(--motion-fast) var(--ease-out);
}

.footer__link:hover {
  color: var(--text-inverse);
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--type-small-size);
}

.footer__contact-info p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.footer__contact-info svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-400);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid var(--neutral-800);
  padding-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  font-size: var(--type-caption-size);
  color: var(--neutral-500);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__legal-links {
  display: flex;
  gap: var(--space-4);
}

.footer__legal-link {
  color: var(--neutral-500);
  transition: color var(--motion-fast) var(--ease-out);
}

.footer__legal-link:hover {
  color: var(--text-inverse);
}

.footer__partner-note {
  font-size: var(--type-caption-size);
  color: var(--neutral-600);
  line-height: 1.4;
  margin-top: var(--space-4);
  border-top: 1px dashed var(--neutral-800);
  padding-top: var(--space-3);
}

/* Mobile Hamburger Menu */
.navbar__menu-wrapper {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .navbar__toggle {
    display: block;
    z-index: 101;
  }
  .navbar__menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: var(--background);
    flex-direction: column;
    padding: var(--space-6) var(--space-4);
    gap: var(--space-5);
    transform: translateX(100%);
    transition: transform var(--motion-base) var(--ease-out);
    z-index: 100;
    border-top: 1px solid var(--border-color);
  }
  .navbar__menu--open {
    transform: translateX(0);
  }
  .navbar__menu-item {
    width: 100%;
    text-align: center;
  }
  .navbar__link {
    font-size: var(--type-body-large-size);
    display: block;
    padding: var(--space-3) 0;
  }
  .navbar__cta {
    display: block;
    text-align: center;
    width: 100%;
    padding: var(--space-3);
  }
}

/* Animations & Motion */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    animation: fadeIn var(--motion-slow) var(--ease-out) forwards;
  }
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp var(--motion-slow) var(--ease-out) forwards;
  }
  .delay-1 { animation-delay: 100ms; }
  .delay-2 { animation-delay: 200ms; }
  .delay-3 { animation-delay: 300ms; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
    font-size: 12pt;
  }
  .navbar, .navbar__toggle, .btn, .form, .map-container, .cta-banner, .footer__list, .navbar__cta {
    display: none !important;
  }
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .section {
    padding: 20px 0;
    page-break-inside: avoid;
  }
  .card {
    border: 1px solid #ccc;
    box-shadow: none !important;
    transform: none !important;
  }
  h1, h2, h3 {
    page-break-after: avoid;
  }
}
