/* ============================================
   net-pulse IT Solutions GmbH — Design System
   ============================================ */

/* --- Local Fonts (Inter) --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-semibold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/inter-extrabold.woff2') format('woff2');
}

/* --- CSS Variables --- */
:root {
  --primary: #326CB3;
  --primary-dark: #275894;
  --primary-light: #EBF1F9;
  --secondary: #00B4D8;
  --secondary-dark: #0096B4;
  --accent: #FF6B35;
  --accent-dark: #E55A25;
  --dark: #1A1A2E;
  --dark-soft: #2D2D44;
  --text: #333344;
  --text-light: #6C757D;
  --light: #F8F9FA;
  --lighter: #FFFFFF;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--lighter);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

.subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.6;
  max-width: 680px;
}

.section-label {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary);
  margin-bottom: .75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

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

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm { padding: .625rem 1.25rem; font-size: .9rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 32px;
  width: auto;
}

.nav { display: flex; align-items: center; gap: .25rem; }

.nav a {
  padding: .5rem 1rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav a:hover, .nav a.active {
  color: var(--primary);
  background: var(--primary-light);
}

/* Nav Dropdowns */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem 1rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  line-height: 1;
}

.nav-dropdown-toggle svg {
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.active > .nav-dropdown-toggle {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-dropdown.open > .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  transform: translateX(-50%);
}

.nav-dropdown-toggle:hover::after,
.nav-dropdown.active > .nav-dropdown-toggle::after {
  width: calc(100% - 2rem);
}

.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  display: block;
  padding: .65rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.nav-dropdown-menu a.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

.nav-cta {
  margin-left: .75rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav (outside header to avoid backdrop-filter containing block) */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 1.5rem;
  flex-direction: column;
  gap: .25rem;
  z-index: 9999;
  overflow-y: auto;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { background: var(--primary-light); color: var(--primary); }

/* --- Hero Sections --- */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-home {
  background: linear-gradient(160deg, var(--dark) 0%, #16213E 50%, var(--primary-dark) 100%);
  color: #fff;
  padding: 12rem 0 8rem;
}

.hero-home h1 { color: #fff; }
.hero-home .subtitle { color: rgba(255,255,255,.8); }

.hero-page {
  background: linear-gradient(160deg, var(--dark) 0%, #16213E 100%);
  color: #fff;
  padding: 10rem 0 5rem;
}
.hero-page h1 { color: #fff; }
.hero-page .subtitle { color: rgba(255,255,255,.75); }

.hero-bg-pattern {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0,102,204,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,180,216,.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }
.hero-buttons { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }

/* --- Sections --- */
.section { padding: 6rem 0; }
.section-dark { background: var(--dark); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .subtitle { color: rgba(255,255,255,.7); }
.section-dark .section-label { color: var(--secondary); }

.section-light { background: var(--light); }
.section-white { background: var(--lighter); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header .subtitle {
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  gap: 1.5rem;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.card h3 { margin-bottom: .75rem; }
.card p { color: var(--text-light); line-height: 1.7; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--primary);
}
.card-link:hover { gap: .7rem; }

/* Service card with top border accent */
.card-accent { border-top: 3px solid var(--primary); }

/* Dark card variant */
.card-dark {
  background: var(--dark-soft);
  border-color: rgba(255,255,255,.08);
  color: #fff;
}
.card-dark:hover { border-color: rgba(0,180,216,.3); }
.card-dark h3 { color: #fff; }
.card-dark p { color: rgba(255,255,255,.65); }
.card-dark .card-icon { background: rgba(0,180,216,.15); color: var(--secondary); }

/* --- Stats Bar --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.stat { text-align: center; }

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: .5rem;
}

.section-dark .stat-number { color: var(--secondary); }
.section-white .stat-number { color: var(--primary); }

.stat-label {
  font-size: .95rem;
  color: var(--text-light);
  font-weight: 500;
}
.section-dark .stat-label { color: rgba(255,255,255,.6); }

/* --- Feature List --- */
.feature-list {
  display: grid;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .8rem;
  margin-top: .2rem;
}

.feature-item h4 { margin-bottom: .25rem; }
.feature-item p { color: var(--text-light); font-size: .95rem; }

/* --- Pricing / Packages --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: .4rem 1.5rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: .25rem;
}

.pricing-target {
  font-size: .95rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}
.pricing-features li {
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.pricing-features li:last-child { border-bottom: none; }

.check-icon { color: var(--primary); font-weight: 700; flex-shrink: 0; }

.pricing-cta { width: 100%; text-align: center; justify-content: center; }

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-text { max-width: 560px; }
.two-col-text h2 { margin-bottom: 1.25rem; }
.two-col-text p { color: var(--text-light); margin-bottom: 1.5rem; }

.two-col-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-light) 0%, #dbeafe 50%, #bae6fd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 3rem;
  position: relative;
}

.image-placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 1.5rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--primary-dark);
  background: rgba(255,255,255,.8);
  padding: .4rem 1rem;
  border-radius: 20px;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-dot {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  z-index: 1;
}

.timeline-content h4 { margin-bottom: .25rem; }
.timeline-content p { color: var(--text-light); font-size: .95rem; }

/* --- Partner Logo Grid --- */
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.partner-logo {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  width: calc(25% - 1.125rem);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.partner-logo:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: transparent;
}

.partner-logo img {
  max-height: 50px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .7;
  transition: all var(--transition);
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Legal Content (Impressum, Datenschutz) --- */
/* --- Legal Pages (Impressum, Datenschutz) --- */
.legal-content {
  line-height: 1.7;
}

.legal-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}

.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: .6rem;
  color: var(--dark);
}

.legal-content h2:first-child,
.legal-col h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: .35rem;
  color: var(--dark);
}

.legal-content p {
  margin-bottom: 1.1rem;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(50,108,179,.3);
  text-underline-offset: 2px;
  transition: text-decoration-color var(--transition);
}

.legal-content a:hover {
  text-decoration-color: var(--primary);
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin: .5rem 0 1.25rem;
}

.legal-content ul li {
  padding: .25rem 0 .25rem 1.25rem;
  position: relative;
  line-height: 1.65;
}

.legal-content ul li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.legal-content strong {
  color: var(--dark);
  font-weight: 600;
}

.legal-info-card {
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: .5rem 0 1.5rem;
  line-height: 1.75;
}

.legal-info-card p {
  margin-bottom: .3rem;
  color: var(--text);
}

.legal-info-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .legal-two-col { grid-template-columns: 1fr; gap: 0; }
}

/* --- Team Profile Card --- */
.team-profile {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.team-photo {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-info {
  flex: 1;
}

.team-info h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: .25rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 1.25rem;
}

.team-quote {
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  padding-left: 1.25rem;
  border-left: 3px solid var(--secondary);
  margin-bottom: 1.25rem;
}

.team-bio {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: var(--transition);
}

.team-social a:hover {
  color: var(--primary-dark);
}

.team-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* --- Timeline + Team Grid --- */
.timeline-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.team-card-photo {
  width: 100%;
  max-height: 340px;
  overflow: hidden;
}

.team-card-photo img {
  width: 100%;
  display: block;
}

.team-card-body {
  padding: 1.75rem;
}

.team-card-body h3 {
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: .25rem;
}

.team-card-body .team-role {
  margin-bottom: 1rem;
}

.team-card-body .team-quote {
  font-size: .95rem;
  margin-bottom: 1rem;
}

.team-card-body .team-bio {
  font-size: .9rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .timeline-team-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    position: static;
  }
  .team-profile {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .team-photo {
    width: 180px;
    height: 180px;
  }
  .team-quote {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--secondary);
    padding-top: 1rem;
  }
}

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-card {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--light);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.value-card:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
}

.value-card h4 { margin-bottom: .35rem; }
.value-card p { color: var(--text-light); font-size: .95rem; }

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,102,204,.1);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-message {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  line-height: 1.5;
}
.form-message svg { flex-shrink: 0; margin-top: 2px; }
.form-message p { margin: .25rem 0 0; }
.form-message-success {
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .3);
  color: #065f46;
}
.form-message-success svg { color: #10b981; }
.form-message-error {
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .3);
  color: #991b1b;
}
.form-message-error svg { color: #ef4444; }
.form-message-info {
  background: rgba(50, 108, 179, .08);
  border: 1px solid rgba(50, 108, 179, .25);
  color: #1a365d;
}
.form-message-info svg { color: #326CB3; }

/* Externer-Link-Pfeil bei allen target="_blank" */
a[target="_blank"]::after {
  content: ' \2197';
  font-size: 0.8em;
}
/* Ausnahmen: Buttons, Social-Icons, Footer-Buttons */
.btn[target="_blank"]::after,
.footer-social__link[target="_blank"]::after {
  content: none;
}

.contact-info-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.contact-info-card h3 { color: #fff; margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.1rem;
}

.contact-detail h4 {
  color: #fff;
  font-size: .95rem;
  margin-bottom: .2rem;
}
.contact-detail p {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 2rem; font-size: 1.15rem; }

.cta-bg-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.cta-bg-circle:nth-child(1) { top: -200px; right: -100px; }
.cta-bg-circle:nth-child(2) { bottom: -200px; left: -100px; }

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: .95rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 320px;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,.6);
  padding: .35rem 0;
  font-size: .95rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }

/* Social Icons im Footer */
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}

.footer-social__link {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(232,232,236,.7);
  text-decoration: none;
  transition: all var(--transition);
}

.footer-social__link:hover {
  background: var(--primary);
  color: #fff;
}

.footer-social__link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 2rem; }

.footer .btn-primary,
.footer .btn-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .625rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.footer .btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  margin-top: 2rem;
}
.footer .btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.footer .btn-accent {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  margin-top: .75rem;
}
.footer .btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- SVG Icons (inline) --- */
.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.reveal-delay-6 { transition-delay: .6s; }
.reveal-delay-7 { transition-delay: .7s; }

/* --- Counter animation --- */
.counter { display: inline-block; }

/* ============================================
   DYNAMIC ENHANCEMENTS
   ============================================ */

/* --- Animated Hero Gradient --- */
@keyframes heroGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-home {
  background: linear-gradient(160deg, var(--dark) 0%, #16213E 25%, var(--primary-dark) 50%, #16213E 75%, var(--dark) 100%);
  background-size: 300% 300%;
  animation: heroGradientShift 12s ease infinite;
}

/* --- Hero Floating Orbs --- */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: orbFloat 6s ease-in-out infinite;
}

.hero-orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,180,216,.12) 0%, transparent 70%);
  top: 10%;
  right: 5%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.hero-orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(50,108,179,.15) 0%, transparent 70%);
  bottom: 15%;
  left: 10%;
  animation-delay: 2s;
  animation-duration: 10s;
}

.hero-orb-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255,107,53,.08) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation-delay: 4s;
  animation-duration: 7s;
}

@keyframes orbFloat {
  0%, 100% {
    opacity: .6;
    transform: translate(0, 0) scale(1);
  }
  25% {
    opacity: .8;
    transform: translate(20px, -30px) scale(1.1);
  }
  50% {
    opacity: .5;
    transform: translate(-15px, 15px) scale(.95);
  }
  75% {
    opacity: .9;
    transform: translate(10px, 20px) scale(1.05);
  }
}

/* --- Hero Typing Cursor --- */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--secondary);
  margin-left: 4px;
  animation: cursorBlink .8s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* --- Nav Link Animated Underline --- */
.nav a {
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  transform: translateX(-50%);
}

.nav a:hover::after,
.nav a.active::after {
  width: calc(100% - 2rem);
}

/* --- Card Hover Glow & Tilt --- */
.card {
  transform-style: preserve-3d;
  perspective: 600px;
}

.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 40%, rgba(50,108,179,.15) 50%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: -1;
}

.card:hover::before {
  opacity: 1;
}

/* --- Card Icon Animation on Hover --- */
.card .card-icon {
  transition: all .4s cubic-bezier(.4,0,.2,1);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(-3deg);
  background: var(--primary);
  color: #fff;
}

.card-dark:hover .card-icon {
  background: var(--secondary);
  color: #fff;
}

/* --- Card Link Arrow Animation --- */
.card-link::after {
  content: '';
  display: inline-block;
  transition: transform .3s ease;
}

.card:hover .card-link {
  color: var(--primary-dark);
  gap: .9rem;
}

/* --- Pricing Card Shine Effect --- */
.pricing-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,.1) 50%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(30deg) translateY(100%);
  transition: transform .8s ease;
  pointer-events: none;
}

.pricing-card:hover::after {
  transform: rotate(30deg) translateY(-100%);
}

/* --- Stat Number Glow --- */
.stat-number {
  transition: text-shadow .4s ease;
}

.stats.visible .stat-number {
  text-shadow: 0 0 40px rgba(0,180,216,.3);
}

/* --- CTA Pulse Effect --- */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,.4); }
  50% { box-shadow: 0 0 0 12px rgba(255,107,53,0); }
}

.cta-section .btn-white {
  animation: ctaPulseWhite 2.5s ease-in-out infinite;
}

@keyframes ctaPulseWhite {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.3); }
  50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

.hero-buttons .btn-accent {
  animation: ctaPulse 2.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* --- CTA Background Orb Animation --- */
@keyframes ctaOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}

.cta-bg-circle {
  animation: ctaOrbFloat 8s ease-in-out infinite;
}

.cta-bg-circle:nth-child(2) {
  animation-delay: 4s;
  animation-direction: reverse;
}

/* --- Scroll Progress Indicator --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 1001;
  transition: width .1s linear;
  width: 0;
}

/* --- Image Placeholder Shimmer --- */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.image-placeholder {
  background: linear-gradient(
    90deg,
    var(--primary-light) 25%,
    #dbeafe 37%,
    #bae6fd 50%,
    #dbeafe 63%,
    var(--primary-light) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}

/* --- Feature Icon Pulse on Reveal --- */
.feature-icon {
  transition: all .4s ease;
}

.visible .feature-icon {
  animation: featureIconPop .5s cubic-bezier(.4,0,.2,1);
}

@keyframes featureIconPop {
  0%   { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* --- Timeline Dot Pulse --- */
.timeline-dot {
  position: relative;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: timelinePulse 2s ease-in-out infinite;
}

@keyframes timelinePulse {
  0%, 100% { transform: scale(1); opacity: 0; }
  50% { transform: scale(1.3); opacity: .4; }
}

/* --- Value Card Slide-in from sides --- */
.value-card {
  transition: all .5s cubic-bezier(.4,0,.2,1);
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  background: var(--primary);
  color: #fff;
}

.value-icon {
  transition: all .4s cubic-bezier(.4,0,.2,1);
}

/* --- Contact Form Focus Glow --- */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(50,108,179,.12), 0 0 20px rgba(50,108,179,.08);
  transform: translateY(-1px);
}

/* --- Footer Link Slide Effect --- */
.footer-links a {
  position: relative;
  padding-left: 0;
  transition: color var(--transition), padding-left .3s ease;
}

.footer-links a:hover {
  padding-left: .5rem;
}

/* --- Parallax Elements --- */
.parallax-layer {
  position: absolute;
  pointer-events: none;
  transition: transform .1s linear;
  will-change: transform;
}

/* --- Smooth section transitions --- */
.section {
  position: relative;
}

/* --- Button ripple --- */
.btn {
  position: relative;
  overflow: hidden;
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: scale(0);
  animation: rippleEffect .6s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .partner-grid .partner-logo { width: calc(33.333% - 1rem); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  /* Tablet portrait: switch to hamburger menu */
  .nav { display: none; }
  .nav-cta { display: none; }
  .nav-dropdown-menu { display: none !important; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .logo img { height: 24px; }
  .header-inner { height: 64px; }
  .mobile-nav { top: 64px; }
  .hero { padding: 8rem 0 4rem; }
  .hero-home { padding: 9rem 0 5rem; }
  .section { padding: 4rem 0; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col-reverse .two-col-image { order: -1; }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .partner-grid .partner-logo { width: calc(50% - .75rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal { justify-content: center; }
  .section-header { margin-bottom: 3rem; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .stats { grid-template-columns: 1fr 1fr; }
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: var(--lighter);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  line-height: 1.4;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s cubic-bezier(.4,0,.2,1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text);
  line-height: 1.7;
}

/* ============================================
   Cookie-Consent-Banner
   ============================================ */

/* Backdrop */
.consent-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 46, .6);
  backdrop-filter: blur(3px);
  opacity: 1;
  transition: opacity .3s ease;
}
.consent-backdrop--hidden {
  opacity: 0;
  pointer-events: none;
}

/* Modal */
.consent-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 92%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  transform: scale(.96);
  opacity: 0;
  animation: consentFadeIn .3s ease forwards;
}
.consent-backdrop--hidden .consent-modal {
  animation: none;
  opacity: 0;
  transform: scale(.96);
}
@keyframes consentFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.consent-modal__title {
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--dark);
  margin-bottom: .75rem;
}
.consent-modal__text {
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.consent-modal__link {
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-modal__link:hover {
  color: var(--secondary-dark);
}

/* Aufklappbare Details */
.consent-modal__details {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-bottom: 1.5rem;
}
.consent-modal__details[hidden] {
  display: none;
}
.consent-modal__kategorie {
  margin-bottom: 1rem;
}
.consent-modal__kategorie:last-child {
  margin-bottom: 0;
}
.consent-modal__label {
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  font-size: .9375rem;
  color: var(--dark);
}
.consent-modal__label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.consent-modal__beschreibung {
  font-size: .8125rem;
  color: var(--text-light);
  margin: .25rem 0 0 1.625rem;
}

/* Buttons */
.consent-modal__buttons {
  display: flex;
  gap: .75rem;
}
.consent-modal__btn {
  flex: 1;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
  line-height: 1.3;
  border: 2px solid transparent;
}
.consent-modal__btn--einstellungen {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.consent-modal__btn--einstellungen:hover {
  border-color: var(--text-light);
  color: var(--dark);
}
.consent-modal__btn--ablehnen {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.consent-modal__btn--ablehnen:hover {
  border-color: var(--text-light);
  color: var(--dark);
}
.consent-modal__btn--akzeptieren {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.consent-modal__btn--akzeptieren:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Responsive: Buttons untereinander auf Mobile */
@media (max-width: 480px) {
  .consent-modal {
    padding: 1.5rem;
  }
  .consent-modal__buttons {
    flex-direction: column;
  }
  .consent-modal__btn {
    width: 100%;
  }
}

/* ============================================
   Consent-Platzhalter (Maps, OneCal)
   ============================================ */
.consent-platzhalter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--light);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  gap: .75rem;
}
.consent-platzhalter__icon {
  width: 48px;
  height: 48px;
  color: var(--text-light);
}
.consent-platzhalter__titel {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--dark);
  margin: 0;
}
.consent-platzhalter__text {
  font-size: .875rem;
  color: var(--text-light);
  max-width: 340px;
  line-height: 1.5;
  margin: 0;
}
.consent-platzhalter__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: .25rem;
}
.consent-platzhalter__btn:hover {
  background: var(--primary-dark);
}
.consent-platzhalter__link {
  font-size: .8125rem;
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
}
.consent-platzhalter__link:hover {
  color: var(--secondary-dark);
}
.consent-platzhalter__fallback {
  font-size: .8125rem;
  color: var(--text-light);
  margin: .5rem 0 0;
}
