/* ================================================================
   TAURUS COMPETENCE — Design System v2.0
   Premium B2B · Entscheider-fokussiert · Vernetzte Digitallösungen
   ================================================================ */

/* ----------------------------------------------------------------
   0. Local Fonts (DSGVO-konform — kein Google-Server-Kontakt)
   ---------------------------------------------------------------- */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-400.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-400-italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/jetbrains-mono-400.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------------------------------
   1. Design Tokens
   ---------------------------------------------------------------- */
:root {
  /* Colors — Petrol Blue + Gold */
  --bg-deep:       #0a1628;
  --bg-primary:    #0e1e33;
  --bg-secondary:  #132a42;
  --bg-card:       rgba(16, 36, 58, 0.65);
  --bg-card-hover: rgba(22, 48, 76, 0.75);
  --bg-glass:      rgba(14, 30, 51, 0.6);

  --gold:          #c9a86c;
  --gold-light:    #ddb97c;
  --gold-bright:   #e8d5a8;
  --gold-dark:     #a88848;
  --gold-gradient: linear-gradient(135deg, #c9a86c 0%, #ddb97c 50%, #e8d5a8 100%);

  --text:          #eae4d9;
  --text-secondary:#b4bfcc;
  --text-muted:    #6b7d94;
  --white:         #ffffff;
  --success:       #4ade80;

  /* Typography */
  --font-display: 'Montserrat', -apple-system, sans-serif;
  --font-body:    'Montserrat', -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Sizes — Fluid */
  --text-xs:   clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --text-sm:   clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
  --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  --text-lg:   clamp(1.05rem, 1rem + 0.25vw, 1.15rem);
  --text-xl:   clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --text-2xl:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl:  clamp(2rem, 1.5rem + 2.5vw, 3.2rem);
  --text-4xl:  clamp(2.5rem, 1.8rem + 3.5vw, 4.5rem);
  --text-hero: clamp(2.8rem, 2rem + 4vw, 5.5rem);

  /* Spacing */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem;
  --s-4: 1rem;    --s-5: 1.5rem; --s-6: 2rem;
  --s-7: 3rem;    --s-8: 4rem;   --s-9: 6rem;
  --s-10: 8rem;   --s-11: 10rem; --s-12: 12rem;

  /* Layout */
  --max-width: 1280px;
  --nav-h: 76px;

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

  /* Effects */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.15);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.2);
  --shadow-lg:  0 16px 64px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px rgba(201,168,108,0.15);

  /* Transitions */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:    150ms;
  --dur-base:    300ms;
  --dur-slow:    500ms;
  --dur-slower:  800ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--nav-h);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

body.no-scroll { overflow: hidden; }

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

::selection {
  background: rgba(201,168,108,0.3);
  color: var(--white);
}

/* ----------------------------------------------------------------
   3. Canvas & Loader
   ---------------------------------------------------------------- */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__logo {
  color: var(--gold);
  animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

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

.section {
  position: relative;
  z-index: 1;
  padding: var(--s-11) 0;
}

/* ----------------------------------------------------------------
   5. Typography
   ---------------------------------------------------------------- */
.section__label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-5);
}
.section__label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: var(--s-5);
}
.section__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.section__intro {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 640px;
}

.section__header { margin-bottom: var(--s-9); }
.section__header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__header--center .section__label::before { display: none; }

/* ----------------------------------------------------------------
   6. Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { transition: transform var(--dur-base) var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--gold-gradient);
  color: var(--bg-deep);
  padding: 0.8em 1.8em;
  box-shadow: 0 4px 20px rgba(201,168,108,0.25);
}
.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(201,168,108,0.4);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1px solid rgba(201,168,108,0.4);
  color: var(--gold-light);
  padding: 0.8em 1.8em;
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,108,0.08);
}

.btn--ghost {
  color: var(--gold-light);
  padding: 0.8em 1.8em;
}
.btn--ghost:hover { color: var(--gold-bright); }

.btn--sm { padding: 0.55em 1.3em; font-size: var(--text-xs); }
.btn--lg { padding: 1em 2.2em; font-size: var(--text-base); }
.btn--full { width: 100%; justify-content: center; }

/* ----------------------------------------------------------------
   7. Navigation
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--dur-slow) var(--ease-out),
              box-shadow var(--dur-slow) var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(201,168,108,0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--s-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  color: var(--gold);
  transition: opacity var(--dur-base);
}
.nav__brand:hover { opacity: 0.85; }
.nav__logo { width: 53px; height: 53px; }
.nav__brand-text { display: flex; flex-direction: column; }
.nav__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.nav__brand-tagline {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.nav__links {
  display: flex;
  gap: var(--s-6);
}
.nav__link {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color var(--dur-base);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-base) var(--ease-out);
}
.nav__link:hover { color: var(--gold-light); }
.nav__link:hover::after { width: 100%; }

.nav__cta { margin-left: auto; }

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-out);
  transform-origin: center;
}
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(24px);
  padding: var(--s-5) var(--s-6) var(--s-6);
  border-top: 1px solid rgba(201,168,108,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav__mobile.is-open { display: block; }
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.nav__mobile-link {
  font-size: var(--text-lg);
  color: var(--text);
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
}
.nav__mobile-link:last-of-type { border-bottom: none; }
.nav__mobile-links .btn { margin-top: var(--s-3); }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* ----------------------------------------------------------------
   8. Hero
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + var(--s-8)) var(--s-6) var(--s-8);
}

.hero__content {
  max-width: 900px;
  text-align: center;
}

/* Badge removed */

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--s-6);
  letter-spacing: -0.02em;
}
.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.hero__title-line.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.hero-reveal { /* alias for hero lines */ }

.hero__title-line--accent {
  font-style: italic;
  font-weight: 500;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto var(--s-7);
}
.hero__subtitle strong {
  color: var(--white);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--s-9);
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-7);
  flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold-light);
  line-height: 1.2;
}
.hero__stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,108,0.2);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--s-7);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  color: var(--text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  60% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ----------------------------------------------------------------
   9. Challenges
   ---------------------------------------------------------------- */
.challenges { background: linear-gradient(180deg, var(--bg-deep), var(--bg-primary)); }

.challenges__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}

.challenge-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,108,0.08);
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  transition: all var(--dur-slow) var(--ease-out);
  backdrop-filter: blur(12px);
}
.challenge-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201,168,108,0.18);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.challenge-card__icon {
  color: var(--gold);
  margin-bottom: var(--s-5);
}

.challenge-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: var(--s-3);
  line-height: 1.3;
}

.challenge-card__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

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

/* ----------------------------------------------------------------
   10. Solutions
   ---------------------------------------------------------------- */
.solutions {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.solutions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,108,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.solutions__cta {
  text-align: center;
  margin-top: var(--s-8);
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,108,0.08);
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  transition: all var(--dur-slow) var(--ease-out);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}
.solution-card:hover::before { transform: scaleX(1); }
.solution-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201,168,108,0.15);
  transform: translateY(-4px);
}

.solution-card__number {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: var(--s-4);
  opacity: 0.6;
}

.solution-card__icon-wrap {
  color: var(--gold-light);
  margin-bottom: var(--s-5);
}

.solution-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: var(--s-3);
  line-height: 1.3;
}

.solution-card__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--s-5);
}

.solution-card__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.solution-card__benefits li {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding-left: var(--s-5);
  position: relative;
}
.solution-card__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 1024px) {
  .solutions__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .solutions__grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   11. Results (Interactive Charts)
   ---------------------------------------------------------------- */
.results {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.results__chart-section {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,108,0.08);
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  overflow: hidden;
  margin-bottom: var(--s-9);
  backdrop-filter: blur(12px);
}

.results__chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-7);
  flex-wrap: wrap;
  gap: var(--s-4);
}

.results__chart-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--white);
}

.results__chart-legend {
  display: flex;
  gap: var(--s-5);
}
.results__legend-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.results__legend-item span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.results__legend-item--before span { background: rgba(107, 125, 148, 0.4); }
.results__legend-item--after span { background: var(--gold); }

.results__bar-group {
  margin-bottom: var(--s-5);
}
.results__bar-group:last-child { margin-bottom: 0; }

.results__bar-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--s-2);
}

.results__bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.results__bar {
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  padding: 0 var(--s-3);
  width: 0;
  transition: width 1.5s var(--ease-expo);
  min-width: fit-content;
}
.results__bar.is-animated { width: var(--target-width); }

.results__bar--before {
  background: rgba(107, 125, 148, 0.25);
}
.results__bar--after {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.results__bar-value {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  white-space: nowrap;
}
.results__bar--before .results__bar-value { color: var(--text-muted); }
.results__bar--after .results__bar-value { color: var(--bg-deep); }

/* Impact Cards */
.results__impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.results__impact-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,108,0.08);
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  text-align: center;
  transition: all var(--dur-slow) var(--ease-out);
  backdrop-filter: blur(12px);
}
.results__impact-card:hover {
  border-color: rgba(201,168,108,0.18);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.results__impact-chart {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto var(--s-5);
}

.results__donut {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.results__donut-progress {
  transition: stroke-dashoffset 2s var(--ease-expo);
}

.results__impact-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold-light);
}

.results__impact-info h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: var(--s-2);
}
.results__impact-info p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

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

/* ----------------------------------------------------------------
   12. Case Study
   ---------------------------------------------------------------- */
.case-study {
  background: var(--bg-secondary);
}

.case-study__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}

.case-study__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--s-5);
}

.case-study__desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--s-7);
}

.case-study__metrics {
  display: flex;
  gap: var(--s-7);
  flex-wrap: wrap;
}

.case-study__metric { text-align: center; }
.case-study__metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold-light);
  line-height: 1.2;
}
.case-study__metric-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* Visual Network */
.case-study__visual {
  display: flex;
  justify-content: center;
}

.case-study__visual-inner {
  position: relative;
  width: 300px;
  height: 300px;
}

.case-study__lines {
  position: absolute;
  inset: 0;
  color: var(--gold);
}

.case-study__node {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,108,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  backdrop-filter: blur(12px);
  z-index: 2;
  animation: nodeFloat 4s ease-in-out infinite;
}

.case-study__node--1 { top: 28px; left: 28px; animation-delay: 0s; }
.case-study__node--2 { top: 28px; right: 28px; animation-delay: 0.8s; }
.case-study__node--3 { bottom: 8px; left: 50%; transform: translateX(-50%); animation-delay: 1.6s; }
.case-study__node--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-color: var(--gold);
  background: rgba(201,168,108,0.1);
  color: var(--gold);
  animation: nodePulse 3s ease-in-out infinite;
}

@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.case-study__node--3 {
  animation-name: nodeFloat3;
}
@keyframes nodeFloat3 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}
@keyframes nodePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 0 rgba(201,168,108,0.2); }
  50% { transform: translate(-50%, -50%) scale(1.05); box-shadow: 0 0 30px 5px rgba(201,168,108,0.1); }
}

@media (max-width: 768px) {
  .case-study__wrap { grid-template-columns: 1fr; }
  .case-study__visual { order: -1; }
}

/* ----------------------------------------------------------------
   13. Vision
   ---------------------------------------------------------------- */
.vision {
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}

.vision__timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.vision__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,108,0.1));
  transform: translateX(-50%);
}

.vision__item {
  position: relative;
  width: 50%;
  padding-right: var(--s-7);
  padding-bottom: var(--s-8);
}
.vision__item--right {
  margin-left: 50%;
  padding-right: 0;
  padding-left: var(--s-7);
}

.vision__dot {
  position: absolute;
  right: calc(-6px - 0.5px);
  top: var(--s-4);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg-primary);
  z-index: 2;
  box-shadow: 0 0 12px rgba(201,168,108,0.4);
}
.vision__item--right .vision__dot {
  left: calc(-6px - 0.5px);
  right: auto;
}

.vision__card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,108,0.08);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  backdrop-filter: blur(12px);
  transition: all var(--dur-slow) var(--ease-out);
}
.vision__card:hover {
  border-color: rgba(201,168,108,0.18);
  box-shadow: var(--shadow-glow);
}

.vision__phase {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
  display: block;
}

.vision__card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: var(--s-3);
}

.vision__card-text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .vision__line { left: 16px; }
  .vision__item,
  .vision__item--right {
    width: 100%;
    margin-left: 0;
    padding-left: var(--s-8);
    padding-right: 0;
  }
  .vision__dot,
  .vision__item--right .vision__dot {
    left: 10px;
    right: auto;
  }
}

/* ----------------------------------------------------------------
   14. About
   ---------------------------------------------------------------- */
.about {
  background: var(--bg-primary);
}

.about__wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-9);
  align-items: center;
}

.about__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--s-6);
  letter-spacing: -0.02em;
}
.about__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.about__text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--s-5);
}

.about__credentials {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.about__credential {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  color: var(--text);
  font-size: var(--text-sm);
}
.about__credential svg { color: var(--gold); flex-shrink: 0; }

.about__visual-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,108,0.12);
  border-radius: var(--radius-xl);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  backdrop-filter: blur(12px);
}

.about__visual-stat { text-align: center; }
.about__visual-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--s-2);
}
.about__visual-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.about__visual-divider {
  height: 1px;
  background: rgba(201,168,108,0.12);
}

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

/* ----------------------------------------------------------------
   15. CTA Section
   ---------------------------------------------------------------- */
.cta-section {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,108,0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

.cta-section__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--s-5);
  letter-spacing: -0.02em;
}
.cta-section__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.cta-section__text {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-bottom: var(--s-7);
}

.cta-section__actions {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--s-5);
}

.cta-section__note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
}

/* ----------------------------------------------------------------
   16. Footer
   ---------------------------------------------------------------- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(201,168,108,0.08);
  padding: var(--s-8) 0 var(--s-6);
  background: var(--bg-deep);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-6);
  flex-wrap: wrap;
  margin-bottom: var(--s-7);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.footer__logo { color: var(--gold); }
.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--white);
}
.footer__brand span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.footer__links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--dur-base);
}
.footer__links a:hover { color: var(--gold-light); }

.footer__social a {
  color: var(--text-muted);
  transition: color var(--dur-base);
}
.footer__social a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--s-4);
}
.footer__legal a {
  color: var(--text-muted);
  transition: color var(--dur-base);
}
.footer__legal a:hover { color: var(--gold-light); }

@media (max-width: 768px) {
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ----------------------------------------------------------------
   17. Scroll Reveal Animations
   ---------------------------------------------------------------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------------
   18. Cursor Glow (Desktop)
   ---------------------------------------------------------------- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,108,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  will-change: left, top;
}

/* ----------------------------------------------------------------
   19. Smooth Scrollbar
   ---------------------------------------------------------------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
  background: rgba(201,168,108,0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(201,168,108,0.35); }

/* ----------------------------------------------------------------
   20. Page Hero (Subpages)
   ---------------------------------------------------------------- */
.page-hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + var(--s-10)) var(--s-6) var(--s-8);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--s-5);
  letter-spacing: -0.02em;
}
.page-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}
.page-hero__intro {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
}

/* Active nav link */
.nav__link--active { color: var(--gold-light); }
.nav__link--active::after { width: 100%; }

/* ----------------------------------------------------------------
   21. Service Detail (Leistungen page)
   ---------------------------------------------------------------- */
.service-detail {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--s-7);
  padding: var(--s-8) 0;
  border-bottom: 1px solid rgba(201,168,108,0.08);
}
.service-detail:last-child { border-bottom: none; }

.service-detail__header { padding-top: var(--s-2); }
.service-detail__number {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--s-3);
}
.service-detail__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.service-detail__text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--s-6);
  max-width: 700px;
}

.service-detail__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.service-detail__item h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--s-2);
}
.service-detail__item p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; gap: var(--s-4); }
  .service-detail__items { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   22. About Page
   ---------------------------------------------------------------- */
.about-page {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--s-9);
  align-items: start;
}
.about-page__main h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s-5);
  letter-spacing: -0.01em;
}
.about-page__main h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-top: var(--s-7);
  margin-bottom: var(--s-4);
}
.about-page__main p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--s-4);
}
.about-page__main strong { color: var(--white); }

.about-page__card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,108,0.1);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  backdrop-filter: blur(12px);
  margin-bottom: var(--s-5);
}
.about-page__card h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s-4);
}

.about-page__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.about-page__list li {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding-left: var(--s-5);
  position: relative;
}
.about-page__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.about-page__stats {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.about-page__stat { text-align: center; }
.about-page__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--s-1);
}
.about-page__stat span {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.about-page__portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--s-5);
  border: 2px solid rgba(201,168,108,0.2);
}
.about-page__portrait-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.about-page__image {
  margin: var(--s-7) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-page__image-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .about-page { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   22b. About Teaser (Homepage)
   ---------------------------------------------------------------- */
.about-teaser__wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--s-9);
  align-items: center;
}
.about-teaser__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(201,168,108,0.2);
}
.about-teaser__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.about-teaser__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s-2);
  letter-spacing: -0.01em;
}
.about-teaser__role {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--gold);
  margin-bottom: var(--s-5);
  letter-spacing: 0.02em;
}
.about-teaser__text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--s-4);
}

@media (max-width: 900px) {
  .about-teaser__wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-teaser__image {
    max-width: 280px;
    margin: 0 auto var(--s-5);
  }
}

/* ----------------------------------------------------------------
   22c. Legal Pages (Impressum, Datenschutz)
   ---------------------------------------------------------------- */
.legal-content {
  max-width: 800px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-top: var(--s-7);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid rgba(201,168,108,0.15);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin-top: var(--s-5);
  margin-bottom: var(--s-3);
}
.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--s-3);
}
.legal-content ul {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--s-4);
  padding-left: var(--s-5);
}
.legal-content li { margin-bottom: var(--s-2); }
.legal-content a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--gold-bright); }

.form-success {
  text-align: center;
  padding: var(--s-9) var(--s-6);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--success);
  margin-bottom: var(--s-4);
}
.form-success p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   23. Contact Page & Lead Form
   ---------------------------------------------------------------- */
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--s-9);
  align-items: start;
}

.lead-form {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,108,0.1);
  border-radius: var(--radius-xl);
  padding: var(--s-8);
  backdrop-filter: blur(12px);
  position: relative;
}

.form-step { display: none; }
.form-step.is-active { display: block; }

.form-step__header { margin-bottom: var(--s-7); }
.form-step__count {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--s-3);
}
.form-step__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s-2);
}
.form-step__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.form-step__actions {
  display: flex;
  gap: var(--s-4);
  justify-content: flex-end;
  margin-top: var(--s-7);
}

/* Option Tiles */
.option-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.option-group--multi {
  grid-template-columns: repeat(3, 1fr);
}

.option-tile {
  cursor: pointer;
  display: block;
}
.option-tile input { position: absolute; opacity: 0; pointer-events: none; }
.option-tile__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-4) var(--s-3);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,108,0.1);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--dur-base) var(--ease-out);
}
.option-tile__content:hover {
  border-color: rgba(201,168,108,0.25);
  background: rgba(201,168,108,0.05);
}
.option-tile input:checked + .option-tile__content,
.option-tile.is-selected .option-tile__content {
  border-color: var(--gold);
  background: rgba(201,168,108,0.1);
  box-shadow: 0 0 20px rgba(201,168,108,0.1);
}

.option-tile__icon { color: var(--gold); }
.option-tile__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
}

.option-tile--compact .option-tile__content {
  flex-direction: row;
  padding: var(--s-3) var(--s-4);
}

/* Form inputs */
.form-group { margin-bottom: var(--s-4); }
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--s-2);
}
.form-input {
  width: 100%;
  padding: var(--s-3) var(--s-4);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,108,0.12);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,108,0.1);
}
.form-input--textarea { resize: vertical; min-height: 100px; }

.form-group--checkbox { margin-top: var(--s-4); }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}
.form-checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.form-checkbox__box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--text-muted);
  border-radius: 4px;
  margin-top: 2px;
  transition: all 0.2s;
  position: relative;
}
.form-checkbox input:checked + .form-checkbox__box {
  background: var(--gold);
  border-color: var(--gold);
}
.form-checkbox input:checked + .form-checkbox__box::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--bg-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-checkbox__label a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-checkbox__label a:hover { color: var(--gold-bright); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

/* Progress Dots */
.form-dots {
  display: flex;
  justify-content: center;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.form-dots__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,108,0.2);
  transition: all var(--dur-base);
}
.form-dots__dot.is-active {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,108,0.3);
}
.form-dots__dot.is-done { background: var(--gold); opacity: 0.5; }

/* Contact Sidebar */
.contact__info-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,108,0.1);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  backdrop-filter: blur(12px);
  margin-bottom: var(--s-5);
}
.contact__info-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s-5);
}
.contact__info-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--s-3);
}
.contact__info-item svg { color: var(--gold); flex-shrink: 0; }
.contact__info-item a { color: var(--gold-light); transition: color var(--dur-base); }
.contact__info-item a:hover { color: var(--gold-bright); }

.contact__expect-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.contact__expect-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}
.contact__expect-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 768px) {
  .contact__wrap { grid-template-columns: 1fr; }
  .option-group--multi { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   24. Mobile Global Responsive Fixes
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
  .container { padding: 0 var(--s-4); }
  .section { padding: var(--s-8) 0; }
  .nav__inner { padding: 0 var(--s-4); }
  .page-hero { padding-top: calc(var(--nav-h) + var(--s-6)); padding-bottom: var(--s-6); }
  .lead-form { padding: var(--s-5); }
  .option-group { grid-template-columns: 1fr; }
  .option-group--multi { grid-template-columns: 1fr 1fr; }
}

/* ----------------------------------------------------------------
   25. Cookie Consent Banner
   ---------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,168,108,0.2);
  padding: var(--s-5) var(--s-6);
  transform: translateY(110%);
  transition: transform 0.5s var(--ease-out);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.3);
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.cookie-banner__text {
  flex: 1;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}
.cookie-banner__text a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__text a:hover { color: var(--gold-bright); }
.cookie-banner__actions {
  display: flex;
  gap: var(--s-3);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .cookie-banner { padding: var(--s-5) var(--s-4); }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-4);
  }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}
