/* =============================================
   VOMA Consulting — Global Stylesheet
   ============================================= */


/* --- Variables --- */
:root {
  --navy:         #0a1628;
  --navy-mid:     #1a2d4a;
  --slate:        #334155;
  --slate-light:  #64748b;
  --bg:           #ffffff;
  --bg-2:         #f7f8fa;
  --bg-3:         #eef0f3;
  --bg-card:      #ffffff;
  --text:         #0a1628;
  --text-muted:   #4a5568;
  --text-dim:     #94a3b8;
  --border:       rgba(10, 22, 40, 0.10);
  --border-strong:rgba(10, 22, 40, 0.22);
  --radius:       6px;
  --radius-lg:    10px;
  --shadow:       0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg:    0 8px 40px rgba(10,22,40,0.14);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); }
h1 { font-size: clamp(2.6rem, 5vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 16px;
}

/* --- Layout --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section       { padding: 100px 0; }
.section-sm    { padding: 64px 0; }
.section-dark  { background: var(--navy); }
.section-gray  { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}

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

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}

.nav__logo-main {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

.nav__logo-sep {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.40);
  margin: 0 8px;
}

.nav__logo-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

/* Nav Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__links > a,
.nav__dropdown-toggle {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}

.nav__links > a:hover,
.nav__dropdown-toggle:hover,
.nav__links > a.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

/* Nav scrolled: switch to dark colours */
.nav.scrolled .nav__logo-main { color: var(--navy); }
.nav.scrolled .nav__logo-sep  { color: var(--slate-light); }
.nav.scrolled .nav__logo-sub  { color: var(--slate-light); }

.nav.scrolled .nav__links > a,
.nav.scrolled .nav__dropdown-toggle {
  color: var(--text-muted);
}

.nav.scrolled .nav__links > a:hover,
.nav.scrolled .nav__dropdown-toggle:hover,
.nav.scrolled .nav__links > a.active {
  color: var(--navy);
  background: var(--bg-3);
}

.nav.scrolled .nav__hamburger span { background: var(--navy); }

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  z-index: 100;
}

.nav__dropdown.open .nav__dropdown-menu {
  display: block;
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav__dropdown-menu a:hover {
  background: var(--bg-2);
  color: var(--navy);
}

.nav__cta-ghost {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.85) !important;
  background: transparent !important;
  padding: 9px 18px !important;
  border-radius: var(--radius) !important;
  margin-left: 8px;
  transition: var(--transition) !important;
  border: 1.5px solid rgba(255,255,255,0.45) !important;
}
.nav__cta-ghost:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,0.80) !important;
  background: rgba(255,255,255,0.08) !important;
}
.nav.scrolled .nav__cta-ghost {
  color: var(--text-muted) !important;
  border-color: var(--border-strong) !important;
}
.nav.scrolled .nav__cta-ghost:hover {
  color: var(--navy) !important;
  border-color: var(--navy) !important;
  background: var(--bg-2) !important;
}

.nav__cta {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  background: #fff !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  margin-left: 6px;
  transition: var(--transition) !important;
  border: 1.5px solid #fff !important;
}

.nav__cta:hover {
  background: rgba(255,255,255,0.90) !important;
  transform: translateY(-1px);
}

.nav.scrolled .nav__cta {
  background: var(--navy) !important;
  color: #fff !important;
  border-color: var(--navy) !important;
}

.nav.scrolled .nav__cta:hover {
  background: var(--slate) !important;
  border-color: var(--slate) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav__links.open { display: flex; }
  .nav__links > a,
  .nav__dropdown-toggle { width: 100%; justify-content: center; }
  .nav__dropdown-menu { position: static; box-shadow: none; border: none; background: var(--bg-2); }
  .nav__cta, .nav__cta-ghost { margin-left: 0; text-align: center; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

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

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--bg-2);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 0.95rem;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }

.reveal.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Hero (with image) --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Navy gradient overlay — left solid for text, fades right over photo */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 22, 40, 1.0)  0%,
    rgba(10, 22, 40, 1.0)  35%,
    rgba(10, 22, 40, 0.60) 52%,
    rgba(10, 22, 40, 0.25) 100%
  );
}

/* Placeholder when no image is available */
.hero__image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1f38 0%, #1a3050 40%, #0f2640 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__image-placeholder::after {
  content: '📷  Hier erscheint Ihr Autohaus-Foto';
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.25);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  border: 1px dashed rgba(255,255,255,0.15);
  padding: 16px 32px;
  border-radius: 8px;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 140px 0 48px;
  max-width: 680px;
}

.hero__content .section-label {
  color: rgba(255,255,255,0.65);
}

.hero__title {
  color: #fff;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
}

.hero__triad {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  white-space: nowrap;
}

.hero__tagline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

/* Stats strip inside hero (on dark bg) */
.hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: nowrap;
}

.hero__stat .number {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}

.hero__stat .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Expertise tiles inside hero — lives as direct child of .container */
.hero__expertise {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 36px;
  padding-bottom: 80px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.expertise-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.expertise-card__title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.expertise-card__tags {
  font-size: 0.97rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero__content { padding: 120px 0 36px; }
  .hero__stats { gap: 28px; margin-top: 48px; }
  .hero__expertise { grid-template-columns: repeat(2, 1fr); gap: 10px; padding-bottom: 56px; }
  .hero__triad { white-space: normal; }
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  pointer-events: none;
}

.page-hero .section-label { color: rgba(255,255,255,0.5); }
.page-hero h1             { color: #fff; margin-bottom: 20px; }
.page-hero p              { color: rgba(255,255,255,0.70); font-size: 1.1rem; max-width: 580px; }

@media (max-width: 768px) {
  .page-hero { padding: 130px 0 60px; }
}

/* --- Section Header --- */
.section-header {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header p { margin-top: 14px; font-size: 1.05rem; }

/* Left-aligned variant */
.section-header--left { text-align: left; margin-left: 0; }

/* --- n8n Showcase --- */
.n8n-news-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 99px;
  padding: 5px 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.n8n-news-badge:hover { background: rgba(255,255,255,0.22); }

/* Handelsblatt callout card (n8n showcase) */
.hb-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-bottom: 24px;
  text-decoration: none;
}
.hb-callout__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}
.hb-mark {
  font-size: 1.2rem;
  font-weight: 900;
  color: #e2001a;
  letter-spacing: -0.03em;
}
.hb-name {
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.hb-callout__divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.hb-callout__text {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  margin: 0;
  line-height: 1.4;
}
.hb-callout__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  flex-shrink: 0;
}
.hb-callout__link:hover { color: #fff; }

/* News callout (homepage, below hero) */
.news-callout {
  background: #0d1b2e;
  border-bottom: 2px solid rgba(226,0,26,0.35);
  padding: 28px 0;
}
.news-callout__inner {
  display: flex;
  align-items: center;
  gap: 36px;
}
.news-callout__source {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding-right: 36px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hb-mark-lg {
  font-size: 2.8rem;
  font-weight: 900;
  color: #e2001a;
  letter-spacing: -0.05em;
  line-height: 1;
}
.news-callout__publisher {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}
.news-callout__date {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  margin-top: 3px;
}
.news-callout__content {
  flex: 1;
}
.news-callout__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}
.news-callout__headline {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
.news-callout__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.news-callout__btn {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0d1b2e;
  background: #fff;
  border-radius: 6px;
  padding: 9px 18px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.news-callout__btn:hover { opacity: 0.88; }
.news-callout__ext {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  white-space: nowrap;
}
.news-callout__ext:hover { color: rgba(255,255,255,0.75); }
@media (max-width: 768px) {
  .news-callout__inner { flex-wrap: wrap; gap: 20px; }
  .news-callout__source { border-right: none; padding-right: 0; }
  .news-callout__actions { width: 100%; flex-direction: row; align-items: center; }
}
.n8n-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.n8n-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem;
}
.n8n-facts li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.workflow-screenshot {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.workflow-img {
  width: 100%;
  height: auto;
  display: block;
}
.workflow-placeholder {
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: var(--radius);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
.workflow-placeholder svg { opacity: 0.35; }

/* --- Grid --- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

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

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

/* --- Versprechen-Kacheln (Homepage: Ziel / Zeit / Kunde) --- */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.promise-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  border-top: 3px solid var(--navy);
}

.promise-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.promise-icon {
  width: 44px;
  height: 44px;
  color: var(--navy);
  margin-bottom: 20px;
  display: block;
}

.promise-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.promise-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

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

/* --- Leistung Grid (5 Kacheln, 2. Reihe zentriert) --- */
.leistung-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.leistung-grid > .card {
  flex: 1 1 280px;
  max-width: calc(33.333% - 16px);
}

@media (max-width: 900px) {
  .leistung-grid > .card { max-width: calc(50% - 12px); }
}

@media (max-width: 580px) {
  .leistung-grid > .card { max-width: 100%; }
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Service cards (on homepage) */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

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

.service-card__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.service-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--navy);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 28px;
  line-height: 1.75;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.service-card__link:hover { gap: 14px; }

/* --- Metrics Strip --- */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.metrics-strip__item {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.metrics-strip__item:last-child { border-right: none; }

.metrics-strip__item .number {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.metrics-strip__item .label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .metrics-strip__item:nth-child(2) { border-right: none; }
  .metrics-strip__item:nth-child(3),
  .metrics-strip__item:nth-child(4) { border-top: 1px solid var(--border); }
}

/* --- Icon Box --- */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--slate);
  flex-shrink: 0;
}

.icon-box svg { width: 24px; height: 24px; }

/* Dark variant (for dark sections) */
.icon-box--dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.80);
}

/* § symbol variant */
.icon-box--symbol {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: Georgia, 'Times New Roman', serif;
  color: rgba(255,255,255,0.90);
}

/* Social platform icons row */
.social-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.si {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.si svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}

.si--instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.si--x         { background: #000; }
.si--linkedin  { background: #0077b5; }
.si--youtube   { background: #ff0000; }
.si--tiktok    { background: #010101; }
.si--facebook  { background: #1877f2; }
.si--whatsapp  { background: #25d366; }

/* Card category badge */
.card-category {
  display: inline-block;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(10, 22, 40, 0.08);
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* --- Process Steps (horizontal) --- */
.steps-h {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-h::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: var(--border-strong);
}

.step-h {
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.step-h__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step-h h4 { margin-bottom: 8px; font-size: 0.95rem; }
.step-h p  { font-size: 0.825rem; }

@media (max-width: 768px) {
  .steps-h { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-h::before { display: none; }
}

@media (max-width: 480px) {
  .steps-h { grid-template-columns: 1fr; }
}

/* --- Process Steps (vertical) --- */
.steps-v { display: flex; flex-direction: column; gap: 28px; }

.step-v {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-v__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-v__body h4 { margin-bottom: 6px; }
.step-v__body p  { font-size: 0.875rem; }

/* --- Feature List --- */
.feature-list { display: flex; flex-direction: column; gap: 14px; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--slate);
  flex-shrink: 0;
  margin-top: 8px;
}

/* --- About Teaser --- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-teaser { grid-template-columns: 1fr; gap: 48px; }
}

.about-photo {
  aspect-ratio: 3/4;
  background: var(--bg-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  max-height: 460px;
  position: relative;
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-photo__placeholder {
  text-align: center;
  padding: 40px;
  color: var(--text-dim);
}

.about-photo__placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.3;
  margin-bottom: 12px;
}

.about-photo__placeholder p { font-size: 0.8rem; }

/* --- Philosophy Quote --- */
.philosophy {
  background: var(--navy);
  padding: 80px 0;
}

.philosophy__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy__quote {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.90);
  line-height: 1.6;
  margin-bottom: 32px;
}

.philosophy__principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.philosophy__principles--4 {
  grid-template-columns: repeat(2, 1fr);
}

.philosophy__principle {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
}

.philosophy__principle h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.philosophy__principle p {
  color: rgba(255,255,255,0.60);
  font-size: 0.85rem;
}

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

/* --- Segment Strip (Über uns: Volumen / Premium / Luxus) --- */
.segment-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0 0;
}

.segment-card {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.segment-card:last-child { border-right: none; }

.segment-card__num {
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 14px;
}

.segment-card h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.segment-card p {
  color: rgba(255,255,255,0.58);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .segment-strip { grid-template-columns: 1fr; }
  .segment-card  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .segment-card:last-child { border-bottom: none; }
}

/* --- Outcome Cards --- */
.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.outcome-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-top: 3px solid var(--navy);
}

.outcome-card .outcome-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--navy);
}
.outcome-card .outcome-icon svg {
  width: 44px;
  height: 44px;
}

.outcome-card h4 { margin-bottom: 8px; font-size: 1rem; }
.outcome-card p  { font-size: 0.875rem; }

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

/* --- Symptom Cards (problem side) --- */
.symptom-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--slate-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
}

.symptom-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.symptom-card p  { font-size: 0.85rem; }

/* --- Quote Cards (authentic voice) --- */
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
}

.quote-card__role {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.quote-card__text {
  font-size: 1rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
}

.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.70); margin-bottom: 36px; font-size: 1rem; }

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-banner { padding: 48px 24px; }
}

/* --- Contact Form --- */
.contact-section {
  background: var(--bg-2);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--slate);
  flex-shrink: 0;
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--navy);
  background: #fff;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(51,65,85,0.08);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 580px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  display: none;
}

.form-status--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.form-status--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* --- Video Placeholder --- */
.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, transparent 70%);
}

.video-placeholder__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.video-placeholder__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.video-placeholder:hover .video-placeholder__play {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.50);
}

.video-placeholder__play svg {
  width: 28px;
  height: 28px;
  color: #fff;
  margin-left: 4px;
}

.video-placeholder__caption {
  color: rgba(255,255,255,0.70);
  font-size: 0.875rem;
}

.video-placeholder__caption strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}

/* --- Calendly Section --- */
.calendly-section { background: var(--bg-2); }

.calendly-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.calendly-inline-widget {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy), var(--slate-light), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 4px rgba(10,22,40,0.10);
}

.timeline-item .year {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--slate-light);
  margin-bottom: 4px;
}

.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p  { font-size: 0.875rem; }

/* --- Quote Block --- */
.quote-block {
  background: var(--bg-2);
  border-left: 3px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin: 40px 0;
}

.quote-block blockquote {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}

/* --- About Stats --- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

.about-stat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.about-stat .number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.about-stat .label {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 6px;
  line-height: 1.4;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 10px 20px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}
.linkedin-link svg { color: #0a66c2; flex-shrink: 0; }
.linkedin-link:hover { background: var(--bg-2); border-color: var(--navy); }

/* --- Footer --- */
.footer {
  background: var(--navy);
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand .nav__logo-main { color: #fff; font-size: 1.25rem; }
.footer__brand .nav__logo-sep  { color: rgba(255,255,255,0.35); }
.footer__brand .nav__logo-sub  { color: rgba(255,255,255,0.40); }

.footer__brand p {
  font-size: 0.875rem;
  margin-top: 16px;
  max-width: 260px;
  color: rgba(255,255,255,0.50);
}

.footer__col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.40);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  padding: 5px 0;
  transition: var(--transition);
}

.footer__col a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom a {
  color: rgba(255,255,255,0.50);
  transition: var(--transition);
}

.footer__bottom a:hover { color: rgba(255,255,255,0.90); }

/* --- Divider --- */
.divider { height: 1px; background: var(--border); }

/* --- Flip Cards --- */
.flip-card {
  perspective: 1000px;
  cursor: pointer;
}

.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card__inner,
.flip-card.is-flipped .flip-card__inner {
  transform: rotateY(180deg);
}

.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.flip-card__front {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-md);
}

.flip-card__front h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.flip-card__front p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.7;
}

.flip-card__front .flip-hint {
  font-size: 0.70rem;
  color: rgba(255,255,255,0.35);
  margin-top: auto;
  padding-top: 16px;
  letter-spacing: 0.04em;
}

.flip-card__back {
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transform: rotateY(180deg);
  justify-content: center;
}

.flip-card__back h4 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.flip-card__back p {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.flip-card__back .flip-stat {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--slate);
  font-weight: 600;
}

.flip-grid {
  display: grid;
  gap: 24px;
}

.flip-grid--3 { grid-template-columns: repeat(3, 1fr); }
.flip-grid--4 { grid-template-columns: repeat(4, 1fr); }
.flip-grid--2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 960px) {
  .flip-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .flip-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .flip-grid--2 { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .flip-grid--3,
  .flip-grid--4,
  .flip-grid--2 { grid-template-columns: 1fr; }
  .flip-card__inner { min-height: 220px; }
}

/* --- KI Human Banner (KI-Strategie Seite) --- */
.ki-human-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
}

.ki-human-banner__text { flex: 1; }

.ki-human-banner__text .section-label {
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.ki-human-banner__text h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin-bottom: 16px;
}

.ki-human-banner__text p {
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 560px;
}

.ki-human-banner__stat {
  text-align: center;
  flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,0.10);
  padding-left: 48px;
}

.ki-human-banner__stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ki-human-banner__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .ki-human-banner {
    flex-direction: column;
    padding: 36px 28px;
    gap: 32px;
  }
  .ki-human-banner__stat {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-left: 0;
    padding-top: 28px;
    width: 100%;
  }
}

/* --- Impressum / Datenschutz --- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 { margin-top: 48px; margin-bottom: 16px; font-size: 1.4rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p  { margin-bottom: 16px; font-size: 0.95rem; }
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content ul li { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 8px; }

/* --- Utility --- */
.text-center   { text-align: center; }
.text-white    { color: #fff; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
}
