@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --navy: #2f4e6f;
  --gold: #C8B09A;
  --cream: #F5F0E8;
  --warm-grey: #8A8070;
  --white: #FFFFFF;
  --dark-surface: #090909;
  --background: #090909;
  --cta-orange: #D4820A;

  --gold-05: rgba(200, 176, 154, 0.05);
  --gold-10: rgba(200, 176, 154, 0.10);
  --gold-20: rgba(200, 176, 154, 0.20);
  --gold-30: rgba(200, 176, 154, 0.30);
  --border-light: #E8E0D0;

  --nav-height: 80px;
  --section-pad: 96px 0;
  --container: 1200px;
  --radius: 4px;
  --ease: 300ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  line-height: 1.6;
  position: relative;
}

/* Anti-Overflow: Bilder und Media dürfen den Container nie sprengen */
img, video, iframe { max-width: 100%; height: auto; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.12;
  font-weight: 500;
}

h1 { font-size: clamp(40px, 5.5vw, 70px); }
h2 { font-size: clamp(30px, 3.8vw, 52px); }
h3 { font-size: clamp(20px, 2.4vw, 30px); }
h4 { font-size: clamp(18px, 1.8vw, 24px); }

p { font-size: 16px; line-height: 1.8; color: var(--warm-grey); }

.text-gold  { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-white { color: var(--white); }
.text-navy  { color: var(--navy); }
.text-center { text-align: center; }
.italic { font-style: italic; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.section       { padding: var(--section-pad); }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); }
.section--dark  { background: var(--dark-surface); }

.grid-2   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-2-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--ease), backdrop-filter var(--ease), box-shadow var(--ease);
}

.nav.scrolled {
  background: rgba(47, 78, 111, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(200, 176, 154, 0.18);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Logo links | Menü mittig | CTA rechts */
  align-items: center;
  gap: 24px;
}
.nav-logo { justify-self: start; }
.nav-links { justify-self: center; }
.nav-cta-desktop { justify-self: end; }
/* Mobile-Variante des CTA (nur im Hamburger-Menu sichtbar) */
.nav-cta-mobile { display: none; }

/* Desktop-CTA-Button-Style (derselbe wie .nav-cta) */
.nav-cta-desktop {
  background: var(--cta-orange);
  color: var(--white) !important;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap;
}
.nav-cta-desktop:hover {
  background: #e8930a;
  transform: translateY(-1px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.85);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color var(--ease);
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--ease);
  transform-origin: left;
}

.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* CTA button in nav */
.nav-cta {
  background: var(--cta-orange);
  color: var(--white) !important;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: background var(--ease), transform var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #e8930a; transform: translateY(-1px); color: var(--white) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-arrow {
  display: inline-block;
  margin-left: 3px;
  font-size: 10px;
  transition: transform var(--ease);
  font-style: normal;
}
.nav-dropdown:hover .dropdown-arrow { transform: rotate(90deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(47, 78, 111, 0.98);
  border: 1px solid rgba(200, 176, 154, 0.22);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 270px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown.open .dropdown-arrow { transform: rotate(90deg); }

.dropdown-menu a {
  display: block;
  padding: 11px 24px;
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.75);
  letter-spacing: 0.02em;
  transition: color var(--ease), padding-left var(--ease), background var(--ease);
  border-left: 2px solid transparent;
}

.dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(200, 176, 154, 0.06);
  padding-left: 28px;
  border-left-color: var(--gold);
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 2px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(245, 240, 232, 0.85);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: var(--cta-orange);
  color: var(--white);
  border: 2px solid var(--cta-orange);
}
.btn-gold:hover {
  background: #e8930a;
  border-color: #e8930a;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 130, 10, 0.30);
}

.btn-outline {
  background: transparent;
  color: rgba(245, 240, 232, 0.85);
  border: 1px solid rgba(245, 240, 232, 0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ============================================================
   HERO - FULL SCREEN
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy) url('hero-buero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Dark overlay for readability */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 25, 40, 0.85) 0%,
    rgba(15, 25, 40, 0.70) 55%,
    rgba(15, 25, 40, 0.50) 100%
  );
  pointer-events: none;
}

/* Subtle vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, transparent 40%, rgba(15, 25, 40, 0.35) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 176, 154, 0.35);
  padding: 9px 18px;
  border-radius: 2px;
  margin-bottom: 36px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 400;
  line-height: 1.08;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 52px;
  max-width: 580px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Subpage hero (shorter) */
.hero--sub {
  min-height: 62vh;
  padding-bottom: 32px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark-surface);
  padding: 64px 0;
  border-bottom: 1px solid rgba(200, 176, 154, 0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  text-align: center;
  padding: 16px 40px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(200, 176, 154, 0.18);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.55);
  letter-spacing: 0.04em;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title { font-family: 'Cormorant Garamond', serif; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--gold); }

.section-subtitle {
  font-size: 17px;
  line-height: 1.75;
  color: var(--warm-grey);
  max-width: 580px;
}

.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

.divider-gold {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}
.divider-gold.centered { margin: 20px auto; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--ease);
  transform-origin: bottom;
}

.card:hover {
  box-shadow: 0 14px 52px rgba(47, 78, 111, 0.08);
  transform: translateY(-4px);
  border-color: rgba(200, 176, 154, 0.28);
}
.card:hover::before { transform: scaleY(1); }

.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
  font-weight: 300;
  color: rgba(200, 176, 154, 0.10);
  position: absolute;
  top: 8px;
  right: 20px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
}
.card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3, .card h4 { margin-bottom: 12px; }
.card p { font-size: 15px; }

/* Card variants */
.card--dark {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(200, 176, 154, 0.14);
}
.card--dark h3, .card--dark h4 { color: var(--white); }
.card--dark p { color: rgba(245, 240, 232, 0.6); }
.card--dark:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(200, 176, 154, 0.28); }

/* ============================================================
   SERVICE CARDS (index)
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.service-card:hover {
  box-shadow: 0 18px 64px rgba(47, 78, 111, 0.10);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card h3 { font-size: 22px; color: var(--navy); }
.service-card p { font-size: 14.5px; color: var(--warm-grey); flex: 1; line-height: 1.7; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--ease);
}
.service-card:hover .service-link { gap: 13px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-list { position: relative; }

.process-item {
  display: flex;
  gap: 32px;
  padding-bottom: 48px;
  position: relative;
}
.process-item:last-child { padding-bottom: 0; }

.process-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.process-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(200, 176, 154, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}

.process-line {
  width: 1px;
  flex: 1;
  min-height: 36px;
  margin-top: 8px;
  background: linear-gradient(to bottom, rgba(200, 176, 154, 0.4), rgba(200, 176, 154, 0.04));
}
.process-item:last-child .process-line { display: none; }

.process-body { padding-top: 8px; }
.process-body h4 { font-size: 20px; margin-bottom: 8px; }
.process-body p  { font-size: 15px; }

/* Dark process */
.process-item--dark .process-body h4 { color: var(--white); }
.process-item--dark .process-body p  { color: rgba(245, 240, 232, 0.6); }

/* Horizontal steps (short) */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.step-item {
  padding: 40px 36px;
  border-right: 1px solid rgba(200, 176, 154, 0.12);
  position: relative;
}
.step-item:last-child { border-right: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}
.step-item h4 { color: var(--white); margin-bottom: 10px; font-size: 20px; }
.step-item p  { font-size: 14px; color: rgba(245, 240, 232, 0.6); }

/* ============================================================
   TESTIMONIAL / QUOTE
   ============================================================ */
.testimonial {
  padding: 88px 0;
  text-align: center;
}

.testimonial-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 24px;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.8vw, 30px);
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.55;
  max-width: 780px;
  margin: 0 auto 32px;
}

.testimonial-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* Expert inline quote */
.expert-quote {
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  background: rgba(200, 176, 154, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.expert-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  color: var(--navy);
  line-height: 1.6;
}
.expert-quote--dark { background: rgba(255,255,255,0.04); }
.expert-quote--dark p { color: var(--cream); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.about-portrait {
  aspect-ratio: 3 / 4;
  background: var(--navy) url('sebastian-engel-portrait.jpg') center/cover no-repeat;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.about-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 176, 154, 0.16);
  border-radius: var(--radius);
  pointer-events: none;
}

.about-portrait-inner {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(47,78,111,0.95) 0%, transparent 100%);
}
.about-portrait-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.about-portrait-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
}

.about-content h2 { margin-bottom: 24px; }
.about-content p  { margin-bottom: 18px; font-size: 16px; }

.credential-list { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--warm-grey);
}
.credential-item::before { content: '▸'; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:first-child { border-top: 1px solid var(--border-light); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: color var(--ease);
}
.faq-trigger:hover, .faq-trigger.open { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: transform var(--ease);
}
.faq-trigger.open .faq-icon { transform: rotate(45deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms ease, padding 420ms ease;
}
.faq-body.open { max-height: 500px; }

.faq-body-inner { padding-bottom: 28px; }
.faq-body p { font-size: 15px; line-height: 1.82; color: var(--warm-grey); }

/* Dark FAQ */
.faq-item--dark { border-bottom-color: rgba(200,176,154,0.14); }
.faq-item--dark:first-child { border-top-color: rgba(200,176,154,0.14); }
.faq-trigger--dark { color: rgba(245,240,232,0.85); }
.faq-trigger--dark:hover, .faq-trigger--dark.open { color: var(--gold); }
.faq-body--dark p { color: rgba(245,240,232,0.6); }

/* ============================================================
   RESULT / CASE STUDY CARDS
   ============================================================ */
.result-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--ease);
}
.result-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), rgba(200,176,154,0.15));
}
.result-card:hover {
  box-shadow: 0 14px 52px rgba(47,78,111,0.09);
  transform: translateY(-3px);
}

.result-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,176,154,0.08);
  border: 1px solid rgba(200,176,154,0.2);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.result-metric {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.result-card h4 { font-size: 21px; margin-bottom: 12px; }
.result-card p  { font-size: 14.5px; }

/* ============================================================
   RISK / PROBLEM CARDS (dark bg)
   ============================================================ */
.risk-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,176,154,0.12);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--ease);
}
.risk-card:hover {
  border-color: rgba(200,176,154,0.3);
  background: rgba(255,255,255,0.055);
}
.risk-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,176,154,0.7);
  margin-bottom: 12px;
}
.risk-card h4 { color: var(--white); margin-bottom: 12px; font-size: 18px; }
.risk-card p  { font-size: 14px; color: rgba(245,240,232,0.58); }

/* ============================================================
   STRENGTH CARDS (steuerstrafrecht)
   ============================================================ */
.strength-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px;
  transition: all var(--ease);
  position: relative;
}
.strength-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.strength-card:hover {
  box-shadow: 0 12px 48px rgba(47,78,111,0.08);
  transform: translateY(-3px);
}
.strength-card:hover::before { transform: scaleX(1); }
.strength-card h4 { font-size: 20px; margin-bottom: 10px; }
.strength-card p  { font-size: 15px; }

/* ============================================================
   PHASE / STRATEGY (3-col)
   ============================================================ */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(200,176,154,0.14);
  border-radius: var(--radius);
  overflow: hidden;
}
.phase-item {
  padding: 40px 36px;
  border-right: 1px solid rgba(200,176,154,0.14);
  position: relative;
}
.phase-item:last-child { border-right: none; }
.phase-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.phase-item h4 { color: var(--white); margin-bottom: 12px; font-size: 20px; }
.phase-item p  { font-size: 14px; color: rgba(245,240,232,0.6); }

/* ============================================================
   WHY / BENEFIT GRIDS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.why-item h4 { font-size: 22px; margin-bottom: 12px; }
.why-item p  { font-size: 15px; }

/* Dark why */
.why-item--dark h4 { color: var(--cream); }
.why-item--dark p  { color: rgba(245,240,232,0.6); }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.benefit-item { text-align: center; padding: 40px 24px; }
.benefit-item .benefit-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 24px;
}
.benefit-item .benefit-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.benefit-item h4 { font-size: 21px; margin-bottom: 10px; }
.benefit-item p  { font-size: 15px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,176,154,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.cta-section h2 { color: var(--white); max-width: 680px; margin: 0 auto 16px; }
.cta-section h2 em { font-style: italic; color: var(--gold); }
.cta-section > .container > p { color: rgba(245,240,232,0.6); max-width: 480px; margin: 0 auto 40px; }
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(200,176,154,0.2);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 36px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(245,240,232,0.45);
  line-height: 1.75;
  max-width: 230px;
}
.footer-heading {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(245,240,232,0.55);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright { font-size: 12.5px; color: rgba(245,240,232,0.3); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200,176,154,0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  transition: all var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 100ms; }
.stagger > *:nth-child(3) { transition-delay: 200ms; }
.stagger > *:nth-child(4) { transition-delay: 300ms; }
.stagger > *:nth-child(5) { transition-delay: 400ms; }
.stagger > *:nth-child(6) { transition-delay: 500ms; }

/* ============================================================
   UTILITIES
   ============================================================ */
.mb-8  { margin-bottom: 8px;  }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ============================================================
   WEBSITE-UPDATE 2026 — Logo, Schriftgrößen, Mobile, Formular
   ============================================================ */

/* Logo in der Nav (volles Logo statt Icon).
   Initial (Top-of-Hero, transparente Nav) ist Hero-Hintergrund dunkel -> weißes Logo.
   Nach Scroll wird Nav navy-blur -> ebenfalls weißes Logo. */
.nav-logo-img {
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: opacity var(--ease);
}
.nav-logo-img:hover { opacity: 1; }

/* Größere Section-Überschriften + Labels */
.section-title { font-size: clamp(34px, 4.4vw, 58px); }
.section-label { font-size: 12px; letter-spacing: 0.24em; }
.section-subtitle { font-size: 18px; }

/* Fließtexte in Karten etwas größer */
.card p, .service-card p, .process-body p, .benefit-item p, .why-item p,
.strength-card p, .phase-item p, .step-item p, .risk-card p, .result-card p {
  font-size: 15.5px;
  line-height: 1.75;
}

/* FAQ Labels größer */
.faq-trigger { font-size: 17px; }

/* Hero-Text passt, aber Sub etwas mehr Luft */
.hero-sub { font-size: 19px; line-height: 1.7; }

/* Nav-Links dezenter Hintergrund, damit auf hellem Hero-Overlay lesbar */
.nav:not(.scrolled) .nav-link { color: rgba(255, 255, 255, 0.92); }
.nav-cta { background: var(--cta-orange); color: #fff !important; }

/* Footer: Logo-Bereich */
.footer-logo-img {
  display: block;
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Social Icons: LinkedIn SVG */
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(200, 176, 154, 0.08);
  border: 1px solid rgba(200, 176, 154, 0.3);
}
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }

/* Kontaktformular */
.contact-form {
  max-width: 680px;
  margin: 40px auto 0;
  display: grid;
  gap: 18px;
  text-align: left;
}
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 8px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 176, 154, 0.25);
  border-radius: var(--radius);
  transition: border-color var(--ease), background var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}
.contact-form .checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(245, 240, 232, 0.85);
  cursor: pointer;
}
.contact-form .checkbox-item input { width: 16px; height: 16px; accent-color: var(--cta-orange); }
.contact-form .submit-wrap { display: flex; justify-content: center; margin-top: 12px; }
.contact-form .form-note {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.55);
  margin-top: 6px;
}
@media (max-width: 640px) {
  .contact-form .form-row-2,
  .contact-form .checkbox-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VIDEO-TESTIMONIALS
   ============================================================ */
.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-testimonial { position: relative; }

.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 12px 40px rgba(47, 78, 111, 0.12);
  border: 1px solid var(--border-light);
  transition: transform var(--ease), box-shadow var(--ease);
}
.video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 56px rgba(47, 78, 111, 0.18);
  border-color: rgba(200, 176, 154, 0.35);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

@media (max-width: 960px) {
  .video-testimonials-grid { grid-template-columns: 1fr; gap: 20px; max-width: 560px; margin: 0 auto; }
}

/* ============================================================
   COOKIE-BANNER (DSGVO)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1800;
  padding: 20px;
  transform: translateY(120%);
  transition: transform 420ms cubic-bezier(0.2, 0.9, 0.3, 1);
  pointer-events: none;
}
.cookie-banner.open { transform: translateY(0); pointer-events: auto; }

.cookie-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--navy);
  border: 1px solid rgba(200, 176, 154, 0.3);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.cookie-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 6px;
}
.cookie-banner-text p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.75);
  margin: 0;
  max-width: 680px;
}
.cookie-banner-text a.cookie-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.cookie-banner-text a.cookie-link:hover { color: var(--white); }

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-banner-actions .btn { padding: 11px 20px; font-size: 11px; }

.btn-outline-navy {
  background: transparent;
  color: rgba(245, 240, 232, 0.85);
  border: 1px solid rgba(245, 240, 232, 0.25);
}
.btn-outline-navy:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 900px) {
  .cookie-banner { padding: 12px; }
  .cookie-banner-inner { grid-template-columns: 1fr; padding: 22px 22px 20px; gap: 18px; }
  .cookie-banner-actions { justify-content: stretch; flex-direction: column; }
  .cookie-banner-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* Cookie-Modal (Einstellungen verwalten) */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 20px;
  overflow-y: auto;
}
.cookie-modal.open { display: flex; }

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 40, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  animation: modalFade 250ms ease;
}

.cookie-modal-dialog {
  position: relative;
  background: var(--navy);
  border: 1px solid rgba(200, 176, 154, 0.25);
  border-radius: var(--radius);
  max-width: 680px;
  width: 100%;
  padding: 48px 52px 40px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  animation: modalSlide 320ms cubic-bezier(0.2, 0.9, 0.3, 1);
  margin: auto;
  z-index: 1;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.cookie-category {
  border-top: 1px solid rgba(200, 176, 154, 0.14);
  padding: 18px 0;
}
.cookie-category:last-child { border-bottom: 1px solid rgba(200, 176, 154, 0.14); }
.cookie-category-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  cursor: pointer;
}
.cookie-category-head > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cookie-category-head strong {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}
.cookie-cat-sub {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.55;
}

/* Toggle-Switch */
.cookie-toggle {
  position: relative;
  width: 46px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  transition: background var(--ease);
  cursor: pointer;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: rgba(245, 240, 232, 0.85);
  border-radius: 50%;
  transition: transform var(--ease), background var(--ease);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--gold);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(22px);
  background: var(--white);
}
.cookie-toggle--locked .cookie-toggle-slider { cursor: not-allowed; opacity: 0.75; }

.cookie-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal-actions .btn { padding: 12px 22px; font-size: 11px; }

@media (max-width: 640px) {
  .cookie-modal { padding: 0; }
  .cookie-modal-dialog { border-radius: 0; padding: 56px 22px 28px; min-height: 100vh; }
  .cookie-modal-actions { flex-direction: column; }
  .cookie-modal-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* Footer-Link „Cookie-Einstellungen" */
.cookie-settings-link { cursor: pointer; }

/* ============================================================
   MODAL (Kontaktformular-Popup)
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 20px;
  overflow-y: auto;
}
.modal.open { display: flex; }
body.modal-open { overflow: hidden; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 40, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  animation: modalFade 250ms ease;
}

.modal-dialog {
  position: relative;
  background: var(--navy);
  border: 1px solid rgba(200, 176, 154, 0.25);
  border-radius: var(--radius);
  max-width: 720px;
  width: 100%;
  padding: 48px 52px 40px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  animation: modalSlide 320ms cubic-bezier(0.2, 0.9, 0.3, 1);
  margin: auto;
}

@keyframes modalFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modalSlide {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 38px;
  height: 38px;
  font-size: 28px;
  color: rgba(245, 240, 232, 0.7);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--ease), transform var(--ease);
  line-height: 1;
}
.modal-close:hover { color: var(--gold); transform: rotate(90deg); }

.modal-content .section-label { color: var(--gold); }
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 500;
  line-height: 1.15;
}
.modal-title em { font-style: italic; color: var(--gold); }

.modal .contact-form { max-width: none; margin: 0; }

@media (max-width: 640px) {
  .modal { padding: 0; align-items: stretch; }
  .modal-dialog { border-radius: 0; padding: 64px 24px 32px; min-height: 100vh; }
}

/* ============================================================
   RESPONSIVE - TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 320px 1fr; gap: 48px; }
  .grid-3, .benefit-grid, .phase-grid, .steps-row { grid-template-columns: repeat(2, 1fr); }
  .phase-item { border-right: none; border-bottom: 1px solid rgba(200,176,154,0.12); }
  .phase-item:last-child { border-bottom: none; }
}

/* ============================================================
   RESPONSIVE - MOBILE (≤ 768px) — komplett überarbeitet
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 56px 0; --nav-height: 64px; --container: 100%; }

  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }

  /* --- Typografie: klare Hierarchie, gut lesbar --- */
  h1 { font-size: clamp(30px, 8.5vw, 44px); line-height: 1.15; overflow-wrap: break-word; hyphens: auto; }
  h2 { font-size: clamp(26px, 7vw, 36px); line-height: 1.2; overflow-wrap: break-word; }
  h3 { font-size: 22px; line-height: 1.25; }
  h4 { font-size: 18px; line-height: 1.3; }
  p  { font-size: 15px; line-height: 1.7; }

  .section-title { font-size: clamp(26px, 7vw, 36px); }
  .section-label { font-size: 11px; letter-spacing: 0.18em; }
  .section-subtitle { font-size: 15.5px; line-height: 1.65; }
  .section-header { margin-bottom: 32px; }

  /* --- Hero --- */
  .hero { min-height: auto; padding: calc(var(--nav-height) + 56px) 0 56px; background-attachment: scroll; background-position: center center; }
  .hero--sub { min-height: auto; padding: calc(var(--nav-height) + 40px) 0 40px; }
  /* Mobile-Overlay: vertikaler, gleichmäßig dunkler Verlauf (rechts nicht mehr zu hell) */
  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(15, 25, 40, 0.80) 0%,
      rgba(15, 25, 40, 0.70) 50%,
      rgba(15, 25, 40, 0.82) 100%
    );
  }
  .hero::after { display: none; }
  .hero h1 { margin-bottom: 20px; }
  .hero-sub { font-size: 16px; line-height: 1.65; margin-bottom: 32px; max-width: 100%; }
  .hero-badge { font-size: 10px; padding: 7px 14px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; padding: 14px 20px; }

  /* --- Nav Mobile --- */
  .nav-container {
    grid-template-columns: 1fr auto; /* Logo | Burger */
    padding: 0 20px;
  }
  .nav-cta-desktop { display: none !important; } /* Desktop-CTA auf Mobile verbergen */
  .nav-cta-mobile { display: flex !important; }   /* Mobile-CTA im Hamburger-Menu anzeigen */
  .nav-burger { display: flex; justify-self: end; }
  .nav-logo-img { height: 36px !important; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(47,78,111,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 32px;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 380ms ease, opacity 380ms ease, visibility 380ms ease;
    z-index: 998;
    border-bottom: 1px solid rgba(200,176,154,0.2);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }

  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    font-size: 13px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-cta {
    margin-top: 16px;
    width: 100%;
    text-align: center;
    padding: 14px;
    justify-content: center;
    border-bottom: none;
  }

  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none;
    backdrop-filter: none;
    background: rgba(255,255,255,0.03);
    border: none;
    border-left: 2px solid rgba(200,176,154,0.3);
    margin-left: 16px;
    display: none;
    border-radius: 0;
    width: calc(100% - 16px);
    min-width: 0;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { padding: 13px 16px; font-size: 13px; }

  /* --- Stats-Bar --- */
  .stats-bar { padding: 40px 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-item { padding: 20px; text-align: center; }
  .stat-item:not(:last-child) { border-bottom: 1px solid rgba(200,176,154,0.12); }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-number { font-size: 42px !important; }
  .stat-label { font-size: 12.5px; }

  /* --- Grids: alles auf 1 Spalte --- */
  .grid-2, .grid-3, .grid-2-3,
  .benefit-grid, .why-grid, .steps-row,
  .phase-grid, .footer-grid,
  .about-grid,
  .contact-form .form-row-2,
  .contact-form .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* --- Cards --- */
  .card, .service-card, .strength-card, .benefit-item, .why-item, .risk-card {
    padding: 28px 22px;
  }
  .card-num { font-size: 64px; top: 4px; right: 14px; }
  .card p, .service-card p, .benefit-item p, .why-item p, .strength-card p, .risk-card p, .result-card p {
    font-size: 14.5px;
    line-height: 1.7;
  }
  .card-icon { width: 38px; height: 38px; margin-bottom: 18px; }

  /* --- Service-Cards auf der Startseite --- */
  .service-card { padding: 32px 24px; }
  .service-card h3 { font-size: 20px; }

  /* --- Testimonial (Zitat) --- */
  .testimonial-mark { font-size: 72px !important; }
  .testimonial-quote { font-size: 20px !important; line-height: 1.4 !important; padding: 0 !important; }
  .testimonial-author { font-size: 12px; }

  /* --- Process (5 Schritte) --- */
  .process-item { gap: 20px; padding-bottom: 32px; }
  .process-circle { width: 40px; height: 40px; font-size: 13px; }
  .process-body h4 { font-size: 18px; }
  .process-body p { font-size: 14.5px; }

  /* --- About / Portrait --- */
  .about-grid { gap: 32px; }
  .about-portrait { aspect-ratio: 3/4; max-height: 420px; max-width: 100%; margin: 0 auto; }
  .about-portrait-name { font-size: 20px; }
  .about-portrait-title { font-size: 10px; }
  .about-content h2 { margin-bottom: 18px; }
  .about-content p { font-size: 15px; margin-bottom: 14px; }

  /* --- Credentials-Liste --- */
  .credential-list { margin-top: 22px; gap: 10px; }
  .credential-item { font-size: 13.5px; line-height: 1.5; gap: 10px; }

  /* --- FAQ --- */
  .faq-trigger { font-size: 15.5px !important; padding: 20px 0; gap: 12px; min-height: 44px; }
  .faq-icon { width: 28px; height: 28px; font-size: 18px; flex-shrink: 0; }
  .faq-body-inner p { font-size: 14.5px; line-height: 1.7; }

  /* --- CTA-Sektion --- */
  .cta-section { padding: 56px 0; }
  .cta-section h2 { font-size: 30px; margin-bottom: 14px; }
  .cta-section > .container > p { font-size: 15px; margin-bottom: 28px; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-actions .btn { width: 100%; text-align: center; justify-content: center; padding: 14px 20px; }

  /* --- Footer --- */
  .footer { padding: 48px 0 28px; }
  .footer-grid { gap: 32px; padding-bottom: 32px; }
  .footer-logo-img { height: 40px; }
  .footer-tagline { font-size: 13px; max-width: 100%; }
  .footer-heading { font-size: 12px; }
  .footer-links a { font-size: 13px; padding: 4px 0; display: inline-block; min-height: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .footer-copyright { font-size: 12px; }

  /* --- Buttons generell --- */
  .btn { padding: 13px 22px; font-size: 11px; min-height: 44px; }

  /* --- Modals auf Mobile full-screen --- */
  .modal { padding: 0; align-items: stretch; }
  .modal-dialog { border-radius: 0; padding: 56px 20px 28px; min-height: 100vh; max-width: 100%; }
  .modal-title { font-size: 24px; margin-bottom: 20px; }
  .modal-close { top: 12px; right: 14px; }

  /* --- Kontaktformular Mobile --- */
  .contact-form { gap: 14px; }
  .contact-form label { font-size: 11px; }
  .contact-form input, .contact-form select, .contact-form textarea { font-size: 16px; padding: 12px 14px; } /* 16px verhindert iOS-Zoom */
  .contact-form .checkbox-item { font-size: 14px; padding: 6px 0; min-height: 32px; }

  /* --- Cookie-Banner Mobile --- */
  .cookie-banner { padding: 10px; }
  .cookie-banner-inner { grid-template-columns: 1fr; padding: 20px; gap: 14px; }
  .cookie-title { font-size: 18px; }
  .cookie-banner-text p { font-size: 13px; }
  .cookie-banner-actions { grid-template-columns: 1fr; flex-direction: column; }
  .cookie-banner-actions .btn { width: 100%; text-align: center; justify-content: center; }

  /* --- Cookie-Modal Mobile --- */
  .cookie-modal { padding: 0; }
  .cookie-modal-dialog { border-radius: 0; padding: 56px 20px 28px; min-height: 100vh; max-width: 100%; }
  .cookie-modal-actions { flex-direction: column; }
  .cookie-modal-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .cookie-category-head { gap: 16px; }
  .cookie-category-head strong { font-size: 14px; }
  .cookie-cat-sub { font-size: 12px; }

  /* --- Urgency Badge (Steuerstrafrecht) --- */
  .urgency-badge { font-size: 10px !important; padding: 8px 12px; }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  :root { --section-pad: 48px 0; }

  .container { padding: 0 16px; }
  .nav-container { padding: 0 16px; }

  h1 { font-size: clamp(26px, 7.5vw, 34px); }

  .hero-badge { font-size: 9.5px; letter-spacing: 0.14em; padding: 6px 12px; }
  .hero-sub { font-size: 15px; }

  .card, .service-card, .strength-card, .benefit-item, .why-item, .risk-card {
    padding: 24px 18px;
  }
  .card-num { font-size: 52px; top: 0; right: 12px; }

  .stat-number { font-size: 36px !important; }
  .stat-label { font-size: 12px; }

  .testimonial-quote { font-size: 18px !important; }

  .cta-section h2 { font-size: 26px; }

  .modal-dialog, .cookie-modal-dialog { padding: 48px 16px 24px; }
  .modal-title { font-size: 22px; }

  .btn { font-size: 10.5px; padding: 12px 18px; }

  .section-label { font-size: 10.5px; letter-spacing: 0.16em; }
}
