/* ============================================================
   SCHERRER DIGITAL – Design System
   Palette: #0D1B2A (Navy) · #FFD700 (Gold) · #F7F8FA (Off-White)
   Type: Inter (variable)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Tokens ── */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1A2E42;
  --navy-soft:  #243447;
  --gold:       #FFD700;
  --gold-dim:   rgba(255,215,0,0.15);
  --gold-line:  rgba(255,215,0,0.35);
  --white:      #FFFFFF;
  --off-white:  #F7F8FA;
  --slate:      #64748B;
  --slate-light:#94A3B8;
  --border:     #E2E8F0;
  --text:       #0D1B2A;
  --text-soft:  #475569;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(13,27,42,0.08);
  --shadow-md:  0 4px 20px rgba(13,27,42,0.10);
  --shadow-lg:  0 12px 48px rgba(13,27,42,0.13);
  --shadow-xl:  0 24px 80px rgba(13,27,42,0.16);

  --transition: 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:  1140px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 60px; } }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.0);
  backdrop-filter: blur(0px);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
  padding: 0;
}
.nav.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,215,0,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .nav-inner { padding: 0 40px; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: none;
  gap: 4px;
  align-items: center;
}
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-cta {
  display: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy) !important;
  background: var(--gold);
  padding: 9px 20px !important;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition), transform var(--transition) !important;
  background: var(--gold) !important;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
@media (min-width: 900px) { .nav-cta { display: block; } }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }
@media (min-width: 900px) { .nav-hamburger { display: none; } }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 24px 20px;
  background: rgba(13,27,42,0.98);
  border-top: 1px solid rgba(255,215,0,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-mobile a:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.nav-mobile-cta {
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy) !important;
  background: var(--gold);
  padding: 14px 20px !important;
  border-radius: var(--radius-sm);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Signature element: gold vertical accent line */
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.6;
}

/* Subtle grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,215,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.hero-visual {
  display: none;
}
@media (min-width: 900px) { .hero-visual { display: block; } }

.hero-cards-stack {
  position: relative;
  height: 360px;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(10px);
}
.hero-card-main {
  width: 280px;
  top: 0; right: 0;
  animation: float 6s ease-in-out infinite;
}
.hero-card-sub {
  width: 220px;
  bottom: 40px; left: 0;
  animation: float 6s ease-in-out infinite 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-card-icon {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.hero-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.hero-card-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.hero-card-sub-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.hero-card-dot {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: -0.2px;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: #FFE033;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn svg { flex-shrink: 0; }

/* ── SECTIONS ── */
section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--gold); }
.section-subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 580px;
}
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.section-header.center .section-title em { display: block; }

/* ── PROBLEM SECTION ── */
.problem {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line), transparent);
}
.problem::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line), transparent);
}
.problem .section-title { color: var(--white); }
.problem .section-subtitle { color: rgba(255,255,255,0.6); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .problem-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.problem-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.problem-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.problem-point.visible { opacity: 1; transform: translateX(0); }
.problem-point-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.problem-point-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.problem-point-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.problem-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: border-color var(--transition);
}
.problem-stat:hover { border-color: rgba(255,215,0,0.25); }
.problem-stat-num {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.problem-stat-text {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ── SERVICES ── */
.services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,215,0,0.3);
}
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--gold-dim);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-card-icon { background: rgba(255,215,0,0.22); }
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}
.service-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 16px;
}

/* ── BENEFITS ── */
.benefits { background: var(--white); }

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

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(16px);
}
.benefit-item.visible { opacity: 1; transform: translateY(0); }
.benefit-item:hover {
  border-color: rgba(255,215,0,0.35);
  box-shadow: var(--shadow-sm);
}
.benefit-icon {
  font-size: 26px;
  line-height: 1;
}
.benefit-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.benefit-item p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ── FOR WHOM ── */
.forwho { background: var(--off-white); }

.forwho-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) { .forwho-grid { grid-template-columns: repeat(4, 1fr); } }

.forwho-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.forwho-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,215,0,0.3);
}
.forwho-card-icon {
  font-size: 36px;
  margin-bottom: 14px;
  line-height: 1;
}
.forwho-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.forwho-card p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.forwho-card.highlight {
  background: var(--navy);
  border-color: var(--gold-line);
}
.forwho-card.highlight h3,
.forwho-card.highlight p { color: rgba(255,255,255,0.8); }

/* ── WHY SCHERRER ── */
.why { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.why-item:hover {
  border-color: var(--border);
  background: var(--off-white);
}
.why-item-dot {
  width: 36px; height: 36px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

.why-aside {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(255,215,0,0.12);
  position: relative;
  overflow: hidden;
}
.why-aside::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,215,0,0.08), transparent 70%);
}
.why-aside-quote {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.why-aside-quote::before {
  content: '"';
  font-size: 80px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -20px; left: -10px;
  line-height: 1;
  font-style: normal;
}
.why-aside-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.why-aside-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--gold-line);
  overflow: hidden;
  flex-shrink: 0;
}
.why-aside-avatar img { width: 100%; height: 100%; object-fit: cover; }
.why-aside-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.why-aside-role {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ── PROCESS ── */
.process { background: var(--off-white); }

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.process-step {
  padding: 40px 32px;
  position: relative;
}
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 52px;
    right: -1px;
    width: 1px;
    height: 60px;
    background: var(--border);
  }
}
.process-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.process-step-num::before {
  content: '';
  display: block;
  width: 28px; height: 28px;
  background: var(--navy);
  border-radius: 8px;
  flex-shrink: 0;
}
/* Add step numbers via CSS counter */
.process-steps { counter-reset: step-counter; }
.process-step { counter-increment: step-counter; }
.process-step-num::before {
  content: counter(step-counter);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: 12px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,215,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line), transparent);
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-banner h2 em { font-style: normal; color: var(--gold); }
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.58);
  margin-bottom: 36px;
  line-height: 1.65;
}
.cta-banner-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cta-banner-note::before { content: '✓'; color: var(--gold); }

/* ── FOOTER ── */
.footer {
  background: #080F18;
  padding: 64px 0 40px;
  border-top: 1px solid rgba(255,215,0,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.5;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line), transparent);
}
.page-hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-label::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--gold);
  display: block;
  border-radius: 1px;
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 560px;
}

/* ── LEISTUNGEN PAGE ── */
.leistungen-section { background: var(--off-white); }

.leistungen-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .leistungen-detail-grid { grid-template-columns: 1fr 1fr; } }

.leistung-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.leistung-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(255,215,0,0.25);
}
.leistung-card-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}
.leistung-card-icon {
  width: 54px; height: 54px;
  background: var(--navy);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.leistung-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: 4px;
}
.leistung-card .leistung-sub {
  font-size: 13px;
  color: var(--text-soft);
}
.leistung-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}
.leistung-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.leistung-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
}
.leistung-feature::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

/* ── ÜBER MICH PAGE ── */
.ueber-section { background: var(--white); }

.ueber-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}
@media (min-width: 900px) { .ueber-grid { grid-template-columns: 2fr 3fr; } }

.ueber-photo-wrap {
  position: sticky;
  top: 100px;
}
.ueber-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--off-white);
  border: 3px solid rgba(255,215,0,0.2);
  box-shadow: var(--shadow-xl);
}
.ueber-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ueber-photo-tag {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.ueber-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
}
.ueber-tag svg { color: var(--gold); }

.ueber-content h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.1;
}
.ueber-content .ueber-role {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
}
.ueber-content p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 20px;
}
.ueber-content p strong { color: var(--navy); font-weight: 700; }

.ueber-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}
.ueber-value {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color var(--transition);
}
.ueber-value:hover { border-color: rgba(255,215,0,0.35); }
.ueber-value-icon { font-size: 22px; margin-bottom: 8px; }
.ueber-value h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.ueber-value p {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ── KONTAKT PAGE ── */
.kontakt-section { background: var(--off-white); }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .kontakt-grid { grid-template-columns: 1fr 1fr; } }

.kontakt-info h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--navy);
  margin-bottom: 12px;
}
.kontakt-info > p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 32px;
}
.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kontakt-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-soft);
}
.kontakt-detail-icon {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.kontakt-detail a { color: var(--navy); font-weight: 600; transition: color var(--transition); }
.kontakt-detail a:hover { color: var(--gold); }

.kontakt-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.2px;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-submit { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--slate-light);
  margin-top: 12px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--text-soft); }

/* ── LEGAL PAGES (Impressum / Datenschutz) ── */
.legal-section {
  background: var(--white);
  padding: 80px 0 100px;
}
.legal-content {
  max-width: 720px;
}
.legal-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 12px;
  letter-spacing: -0.5px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 6px;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── HERO LOAD ANIMATION ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-animate { animation: heroFadeUp 0.7s cubic-bezier(0.4,0,0.2,1) both; }
.hero-animate-1 { animation-delay: 0.1s; }
.hero-animate-2 { animation-delay: 0.22s; }
.hero-animate-3 { animation-delay: 0.34s; }
.hero-animate-4 { animation-delay: 0.46s; }
.hero-animate-5 { animation-delay: 0.58s; }

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