/* ==========================================================================
   AMA AUTOTEILE GmbH – PREMIUM STYLESHEET v7 (Concept06 Design System)
   Based on Concept06 visual identity. Ultra-modern, B2B-premium, responsive.
   ========================================================================== */

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

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */
:root {
  --navy:    #082b50;
  --navy2:   #0e3b69;
  --red:     #e82f37;
  --red2:    #ff5560;
  --ink:     #10263f;
  --text:    #43576d;
  --muted:   #75869a;
  --line:    #dce5ee;
  --ice:     #f3f7fb;
  --warm:    #f7f5f1;
  --white:   #fff;
  --max:     1320px;
  --radius:  28px;
  --shadow:  0 24px 70px rgba(8,43,80,.12);

  /* Legacy compat (keep for form/toast/misc styles) */
  --primary-color:   #082b50;
  --primary-light:   #0e3b69;
  --secondary-color: #e82f37;
  --secondary-light: #ff5560;
  --accent-border:   #dce5ee;
  --text-dark:       #10263f;
  --text-muted:      #43576d;
  --text-light:      #f8fafc;
  --bg-light:        #f3f7fb;
  --bg-white:        #ffffff;
  --whatsapp-color:  #25d366;
  --whatsapp-hover:  #20ba5a;
  --font-heading:    'Outfit', sans-serif;
  --font-body:       'Inter', sans-serif;
  --max-width:       1320px;
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:       0 1px 3px rgba(0,0,0,.1);
  --shadow-md:       0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -1px rgba(0,0,0,.04);
  --shadow-lg:       0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-glow:     0 0 15px rgba(232,47,55,.3);
  --shadow-whatsapp: 0 4px 15px rgba(37,211,102,.4);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--ink); font-weight: 700; line-height: 1.2; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { font: inherit; }

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: min(var(--max), calc(100% - 56px));
  margin: auto;
}
.section { padding: 110px 0; position: relative; }
.section-grey { background: var(--ice); }
.section-dark { background: var(--navy); color: var(--text-light); }
.section-dark h2, .section-dark h3 { color: #fff; }

/* ==========================================================================
   PAGE PROGRESS BAR
   ========================================================================== */
.page-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--red), var(--navy2) 85%);
  z-index: 1001; pointer-events: none;
}

/* ==========================================================================
   HEADER / NAVBAR – Glassmorphism Floating Pill
   ========================================================================== */
.site-header {
  position: fixed; left: 0; right: 0; top: 0; z-index: 100;
  padding: 12px 0 0;
  background: transparent;
  transition: .3s;
}
.nav-shell {
  width: min(1440px, calc(100% - 32px));
  height: 88px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.76));
  border: 1px solid rgba(220,229,238,.92);
  border-radius: 28px;
  backdrop-filter: blur(26px);
  box-shadow: 0 18px 44px rgba(8,43,80,.07), inset 0 1px 0 rgba(255,255,255,.55);
  transition: height .34s ease, background .34s ease, box-shadow .34s ease,
              transform .34s ease, border-radius .34s ease, width .34s ease;
  position: relative;
}
.nav-shell::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(90deg, rgba(232,47,55,.03), rgba(14,59,105,.02) 55%, rgba(255,255,255,0));
  pointer-events: none;
}
.site-header.scrolled .nav-shell {
  height: 74px;
  width: min(1360px, calc(100% - 26px));
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,255,255,.92));
  box-shadow: 0 24px 60px rgba(8,43,80,.14);
  transform: translateY(-4px);
  border-radius: 22px;
}

/* Brand / Logo */
.brand { width: 200px; flex: none; }
.brand img {
  width: 100%; height: 60px; object-fit: contain;
  transition: height .34s ease, transform .34s ease;
}
.site-header.scrolled .brand img { height: 50px; }

/* Desktop Navigation */
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: .875rem;
  font-weight: 700;
  white-space: nowrap;
}
.desktop-nav > a,
.nav-trigger {
  border: 0; background: none;
  padding: 28px 2px;
  color: #233b55;
  position: relative;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .24s ease, transform .24s ease;
}
.desktop-nav > a::after,
.nav-trigger::after {
  content: '';
  position: absolute; left: 0; bottom: 18px;
  width: 100%; height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #ff959e);
  transform: scaleX(0);
  transform-origin: left;
  transition: .22s;
}
.desktop-nav > a:hover::after,
.nav-trigger:hover::after,
.nav-item.open > .nav-trigger::after,
.nav-item.active > .nav-trigger::after,
.desktop-nav > a.active-link::after { transform: scaleX(1); }
.desktop-nav > a:hover,
.nav-trigger:hover,
.nav-item.open > .nav-trigger,
.desktop-nav > a.active-link { color: var(--navy); transform: translateY(-1px); }

/* Dropdown nav items */
.nav-item { position: relative; }
.nav-item.has-panel { padding-bottom: 12px; margin-bottom: -12px; }
.nav-chevron { font-size: .74rem; color: #7c8ea2; transition: transform .22s ease; }
.nav-item.open .nav-chevron { transform: rotate(180deg); }

/* Nav Panel (Dropdown) */
.nav-panel {
  position: absolute; top: 74px; left: -18px;
  width: 310px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(220,229,238,.96);
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 28px 70px rgba(8,43,80,.14);
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.nav-item.has-panel.open > .nav-panel,
.shop-item.open > .nav-panel { opacity: 1; transform: none; pointer-events: auto; }
.nav-panel a { display: block; padding: 13px 14px; border-radius: 14px; border: 1px solid transparent; }
.nav-panel a:hover { background: linear-gradient(180deg, #f7faff, #edf3fb); border-color: rgba(215,226,237,.9); }
.nav-panel b, .nav-panel span { display: block; }
.nav-panel b { font-size: .9rem; color: var(--ink); }
.nav-panel span { font-size: .74rem; color: var(--muted); margin-top: 2px; }
.panel-overview { margin-bottom: 6px; background: var(--ice); }

/* Shop Trigger (highlighted red button) */
.shop-trigger {
  padding: 12px 16px !important;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(232,47,55,.12), rgba(14,59,105,.05));
  border: 1px solid rgba(232,47,55,.22) !important;
  box-shadow: 0 12px 26px rgba(232,47,55,.10), inset 0 1px 0 rgba(255,255,255,.75);
  color: var(--navy) !important;
  font-weight: 860;
  line-height: 1;
  gap: 8px;
  cursor: pointer;
}
.shop-trigger::before {
  content: ''; width: 8px; height: 8px; border-radius: 999px;
  background: var(--red); box-shadow: 0 0 0 5px rgba(232,47,55,.08);
  flex: none;
}
.shop-trigger span { color: var(--red); font-weight: 900; }
.shop-item.open .shop-trigger { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(232,47,55,.16), inset 0 1px 0 rgba(255,255,255,.92); }
.shop-item { position: relative; }
.shop-panel { left: auto; right: 0; }

/* Nav Actions (lang + CTA + burger) */
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 4px; flex: none; }

/* Language Switch */
.lang-switch {
  display: flex; align-items: center; gap: 3px;
  padding: 4px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,255,255,.78);
}
.lang {
  display: grid; place-items: center;
  min-width: 34px; height: 30px; border-radius: 999px;
  font-size: .69rem; font-weight: 850; color: #677a90;
}
.lang.active { background: var(--navy); color: #fff; }
.lang:hover { color: var(--navy); }

/* Header CTA Button */
.header-cta {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--navy);
  font-size: .82rem;
  font-weight: 780;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 10px 24px rgba(13,51,91,.08);
  transition: .2s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }

/* Burger Button */
.menu-btn {
  display: none;
  width: 48px; height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f6f8fb);
  box-shadow: 0 10px 24px rgba(8,43,80,.08);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease;
  flex: none;
}
.menu-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(8,43,80,.1); }
.menu-btn span { width: 19px; height: 2px; background: var(--navy); transition: .25s; display: block; }
.site-header.menu-open .menu-btn span:first-child { transform: translateY(4px) rotate(45deg); }
.site-header.menu-open .menu-btn span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 100px; right: 12px;
  width: min(390px, calc(100vw - 24px));
  height: calc(100dvh - 112px);
  background: rgba(255,255,255,.985);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(220,229,238,.94);
  border-radius: 24px;
  box-shadow: 0 28px 72px rgba(8,43,80,.18);
  transform: translateX(calc(100% + 30px));
  transition: transform .32s cubic-bezier(.22,.68,.2,1);
  overflow-y: auto;
  z-index: 99;
}
.site-header.menu-open .mobile-drawer { transform: translateX(0); }
.mobile-nav { padding: 14px 20px 30px; display: flex; flex-direction: column; }
.mobile-nav > a,
.mobile-parent {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px; border: 0; border-bottom: 1px solid var(--line);
  background: none; color: var(--ink); font-weight: 700; font-size: .95rem; text-align: left;
}
.mobile-parent { cursor: pointer; }
.mobile-sub { display: none; padding: 6px 0 10px 12px; }
.mobile-group.open .mobile-sub { display: block; }
.mobile-sub a { display: block; padding: 10px 8px; color: var(--text); font-size: .88rem; }
.mobile-sub a:hover { color: var(--navy); }
.shop-mobile .mobile-parent { color: var(--red); }
.mobile-main-cta {
  margin-top: 20px !important;
  background: var(--navy) !important;
  color: #fff !important;
  padding: 15px 17px !important;
  border-radius: 16px !important;
  border-bottom: 0 !important;
  text-align: center;
  font-weight: 800;
}
.mobile-lang {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin: 18px 0 4px;
}
.mobile-lang a {
  padding: 11px 8px; text-align: center;
  border: 1px solid var(--line); border-radius: 12px;
  font-weight: 800; font-size: .82rem;
}
.mobile-lang a.active { background: var(--navy); color: #fff; }
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 98;
  background: rgba(8,43,80,.12); backdrop-filter: blur(2px);
}
.mobile-overlay.active { display: block; }

/* ==========================================================================
   HERO – Startseite (Fullscreen Slider)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100dvh;
  padding-top: 100px;
  overflow: hidden;
  background: #0a2748;
}
.hero-slides, .hero-slide, .hero-slide img, .hero-shade, .hero-lines {
  position: absolute; inset: 0;
}
.hero-slide {
  opacity: 0; transform: scale(1.035);
  transition: opacity .9s ease, transform 7s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(6,28,52,.92) 0%, rgba(6,28,52,.7) 40%, rgba(6,28,52,.14) 75%, rgba(6,28,52,.24) 100%),
    linear-gradient(0deg, rgba(7,31,57,.46), transparent 52%);
}
.hero-lines {
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(to right, #000 0%, transparent 72%);
  opacity: .34;
}
.hero-inner {
  position: relative; z-index: 3;
  width: min(var(--max), calc(100% - 56px));
  margin: auto;
  padding-top: 180px;
  padding-bottom: 80px;
}
.hero-kicker {
  font-size: .76rem; font-weight: 820; letter-spacing: .19em; color: #dfeaff;
}
.hero h1 {
  font-size: clamp(3.8rem, 7vw, 7.6rem);
  line-height: .86; letter-spacing: -.062em;
  color: #fff; margin: 22px 0 28px; max-width: 10ch;
}
.hero h1 em { font-style: normal; color: #dbeaff; }
.hero-copy { font-size: 1.08rem; max-width: 630px; color: #dce7f2; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta {
  position: absolute; z-index: 3; right: 44px; bottom: 64px;
  display: grid; gap: 1px; width: 340px;
}
.hero-meta div {
  display: grid; grid-template-columns: 50px 1fr; align-items: center;
  background: rgba(255,255,255,.87); backdrop-filter: blur(14px);
  padding: 15px 18px;
}
.hero-meta div:first-child { border-radius: 18px 18px 0 0; }
.hero-meta div:last-child { border-radius: 0 0 18px 18px; }
.hero-meta span { font-size: .72rem; color: var(--red); font-weight: 800; }
.hero-meta b { font-size: .88rem; }
.hero-pagination {
  position: absolute; z-index: 5; left: 50%; bottom: 36px;
  transform: translateX(-50%); display: flex; gap: 10px;
}
.hero-pagination button {
  width: 30px; height: 3px; border: 0; padding: 0;
  background: rgba(255,255,255,.35); cursor: pointer; transition: .25s;
}
.hero-pagination button.active { width: 70px; background: #fff; }

/* Reveal Animations */
.reveal-up {
  opacity: 0; transform: translateY(22px);
  animation: revealUp .8s forwards cubic-bezier(.22,.68,.2,1);
}
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }
@keyframes revealUp { to { opacity: 1; transform: none; } }

/* Scroll Reveal */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22,.68,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.image-clip { clip-path: inset(0 0 0 0 round 34px); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary, .btn-glass, .btn-white, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px; padding: 0 24px; border-radius: 999px; font-weight: 800;
  cursor: pointer; border: 0; transition: .22s; white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 14px 30px rgba(232,47,55,.27); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(232,47,55,.35); }
.btn-glass { color: #fff; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.btn-glass:hover { background: rgba(255,255,255,.16); }
.btn-white { background: #fff; color: var(--navy); box-shadow: 0 10px 24px rgba(8,43,80,.1); }
.btn-white:hover { transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.link-white { color: #fff; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 6px; }

/* Legacy btn classes */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 800; cursor: pointer; border: 0; transition: .22s; }
.btn-secondary { background: var(--ice); color: var(--navy); border: 1px solid var(--line); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-outline-white { color: #fff; border: 1.5px solid rgba(255,255,255,.5); background: transparent; border-radius: 999px; padding: 0 22px; min-height: 50px; display: inline-flex; align-items: center; font-weight: 800; }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.35); border-radius: 999px; padding: 0 22px; min-height: 50px; display: inline-flex; align-items: center; font-weight: 800; backdrop-filter: blur(12px); }

/* ==========================================================================
   CHANNEL STRIP (Quick Access Bar)
   ========================================================================== */
.channel-strip { position: relative; z-index: 5; background: #fff; border-bottom: 1px solid var(--line); }
.channel-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.channel-grid a {
  min-height: 118px; display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center; gap: 12px; padding: 18px 22px;
  border-right: 1px solid var(--line); transition: .2s;
}
.channel-grid a:first-child { border-left: 1px solid var(--line); }
.channel-grid a:hover { background: var(--ice); }
.channel-grid span { font-size: .68rem; color: var(--red); font-weight: 850; }
.channel-grid b, .channel-grid small { display: block; }
.channel-grid b { font-size: .98rem; }
.channel-grid small { font-size: .76rem; color: var(--muted); margin-top: 3px; }
.channel-grid i { font-style: normal; font-size: 1.2rem; color: var(--navy); }

/* ==========================================================================
   INTRO SECTION
   ========================================================================== */
.intro-section { background: #fff; }
.intro-grid {
  display: grid; grid-template-columns: 150px 1.25fr .75fr; gap: 50px; align-items: start;
}
.intro-grid-2col {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center;
  max-width: 1080px; margin: 0 auto;
}
.section-index { font-size: .72rem; font-weight: 800; letter-spacing: .16em; color: var(--muted); padding-top: 12px; }
.eyebrow { font-size: .72rem; letter-spacing: .17em; font-weight: 850; color: var(--red); }
.intro-copy h2, .cap-head h2, .brands-copy h2, .contact-copy h2,
.business-content h2, .chapter-copy h2, .page-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 1.01; letter-spacing: -.045em; margin: 14px 0;
}
.intro-note p, .cap-head p, .brands-copy p, .contact-copy p,
.chapter-copy p, .business-content p {
  color: var(--text); font-size: 1rem; line-height: 1.75;
}
.text-link { display: inline-flex; gap: 14px; align-items: center; font-weight: 800; color: var(--navy); margin-top: 14px; }
.text-link span { color: var(--red); }

/* ==========================================================================
   CHAPTER SECTIONS (alternating light/dark)
   ========================================================================== */
.chapter { padding: 100px 0; }
.chapter-light { background: var(--warm); }
.chapter-dark { background: #0b294a; color: #fff; }
.chapter-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 72px; align-items: center; }
.chapter-grid.reverse { grid-template-columns: .88fr 1.12fr; }
.chapter-grid.reverse .chapter-media { order: 2; }
.chapter-media {
  position: relative; border-radius: 34px; overflow: hidden;
  min-height: 560px; box-shadow: var(--shadow);
}
.chapter-media img {
  width: 100%; height: 100%; position: absolute; inset: 0;
  object-fit: cover; transition: transform 1.2s ease;
}
.chapter-media:hover img { transform: scale(1.025); }
.media-label {
  position: absolute; left: 22px; bottom: 22px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  padding: 12px 16px; border-radius: 999px;
  font-size: .72rem; font-weight: 850; letter-spacing: .12em;
  color: var(--ink);
}
.media-label span { color: var(--red); margin-right: 8px; }
.chapter-dark .chapter-copy p { color: #ccd9e6; }
.chapter-dark .chapter-copy h2 { color: #ffffff; }
.eyebrow.light { color: #c9def4; }
.chapter-links { display: grid; margin-top: 26px; border-top: 1px solid var(--line); }
.chapter-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 0; border-bottom: 1px solid var(--line); font-weight: 800;
}
.chapter-links a:hover { color: var(--red); }
.outline-link {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 22px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.35); font-weight: 800;
}
.outline-link span { color: #d8e8f8; }

/* ==========================================================================
   CAPABILITIES GRID (4 cards)
   ========================================================================== */
.capabilities-section { background: #fff; }
.cap-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 46px; }
.cap-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.cap-card {
  position: relative; min-height: 340px; padding: 30px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: .25s;
}
.cap-card:hover { background: var(--ice); transform: translateY(-6px); box-shadow: 0 20px 44px rgba(8,43,80,.07); }
.cap-card > span { font-size: .68rem; color: var(--red); font-weight: 850; }
.cap-card h3 { font-size: 1.55rem; margin: 80px 0 12px; }
.cap-card p { color: var(--text); font-size: .92rem; }
.cap-card i { position: absolute; right: 28px; bottom: 26px; font-style: normal; font-size: 1.4rem; color: var(--navy); }

/* ==========================================================================
   BUSINESS STAGE (full-bleed CTA image section)
   ========================================================================== */
.business-stage {
  position: relative; min-height: 760px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.business-image, .business-image img, .business-overlay { position: absolute; inset: 0; }
.business-image img { width: 100%; height: 100%; object-fit: cover; }
.business-overlay { background: linear-gradient(90deg, rgba(5,27,51,.92), rgba(5,27,51,.64) 48%, rgba(5,27,51,.16)); }
.business-content { position: relative; z-index: 2; color: #fff; padding-bottom: 90px; }
.business-content h2 { max-width: 820px; color: #ffffff; }
.business-content p { color: #d5e2ef; max-width: 650px; }
.business-actions { display: flex; gap: 18px; align-items: center; margin-top: 30px; }

/* ==========================================================================
   BRANDS RAIL (scrolling brand ticker)
   ========================================================================== */
.brands-section { background: #f6f8fb; }
.brands-layout { display: grid; grid-template-columns: 420px 1fr; gap: 70px; align-items: center; }
.brand-rail { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }
.brand-track { display: flex; width: max-content; gap: 44px; animation: rail 28s linear infinite; }
.brand-track span { font-size: 1.4rem; font-weight: 820; color: #14395f; white-space: nowrap; }
.brand-track span::after { content: '·'; color: var(--red); margin-left: 44px; }
@keyframes rail { to { transform: translateX(-50%); } }

/* ==========================================================================
   CONTACT STAGE
   ========================================================================== */
.contact-stage { padding: 100px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-actions { border-top: 1px solid var(--line); }
.contact-actions a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 19px 4px; border-bottom: 1px solid var(--line); font-weight: 800; transition: .2s;
}
.contact-actions a:hover { padding-left: 12px; background: linear-gradient(90deg, var(--ice), transparent); }
.contact-actions i { font-style: normal; color: var(--red); font-size: 1.2rem; }
.contact-actions .contact-main span { color: var(--red); }

/* ==========================================================================
   PAGE HERO ALT (Unterseiten)
   ========================================================================== */
.page-hero-alt { padding-top: 112px; padding-bottom: 48px; background: linear-gradient(180deg, #f3f7fb 0%, #ffffff 100%); }
.page-hero-shell {
  position: relative; min-height: 680px;
  border-radius: 36px; overflow: hidden; background: #0a2748;
  box-shadow: var(--shadow);
}
.page-slides, .page-slide, .page-slide img, .page-shade, .page-lines { position: absolute; inset: 0; }
.page-slide { opacity: 0; transform: scale(1.03); transition: opacity .9s ease, transform 6.2s ease; }
.page-slide.active { opacity: 1; transform: scale(1); }
.page-slide img { width: 100%; height: 100%; object-fit: cover; }
.page-shade { background: linear-gradient(90deg, rgba(6,28,52,.88) 0%, rgba(6,28,52,.58) 48%, rgba(6,28,52,.16) 100%), linear-gradient(0deg, rgba(7,31,57,.44), transparent 50%); }
.page-lines {
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(to right, #000 0%, transparent 80%);
  opacity: .26;
}
.page-hero-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 680px; padding: 70px 64px 84px; max-width: 780px;
}
.page-hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: .92; letter-spacing: -.05em; color: #fff; margin: 18px 0 24px;
}
.page-hero-content .hero-copy { max-width: 620px; }
.page-hero-content .hero-actions { margin-top: 28px; }
.page-pagination {
  position: absolute; z-index: 5; left: 64px; bottom: 32px;
  display: flex; gap: 10px;
}
.page-pagination button {
  width: 30px; height: 3px; border: 0; padding: 0;
  background: rgba(255,255,255,.35); cursor: pointer; transition: .25s;
}
.page-pagination button.active { width: 70px; background: #fff; }

/* Sub Grid (3-column card row) */
.sub-grid-wrap { padding: 0 0 20px; }
.sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sub-card {
  background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 28px;
  box-shadow: 0 18px 40px rgba(8,43,80,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.sub-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(8,43,80,.09); }
.sub-card h3 { font-size: 1.3rem; line-height: 1.1; margin: 0 0 12px; }
.sub-card p { margin: 0; color: var(--text); font-size: .96rem; line-height: 1.72; }
.sub-card .text-link { margin-top: 18px; }

/* Chip Row */
.page-chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.page-chip-row span {
  padding: 11px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: .84rem; font-weight: 760; color: var(--navy);
}

/* ==========================================================================
   SECTION HEADER (legacy, for FAQ/trust sections)
   ========================================================================== */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-header .subtitle {
  font-family: var(--font-heading); color: var(--red); text-transform: uppercase;
  font-weight: 700; font-size: 0.875rem; letter-spacing: 0.15em; display: block; margin-bottom: 0.5rem;
}
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.process-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 2.5rem 2rem;
  position: relative; transition: .25s; box-shadow: 0 8px 30px rgba(8,43,80,.05);
}
.process-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(8,43,80,.09); }
.process-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--red); color: #fff; font-weight: 800; font-size: .9rem;
  margin-bottom: 1.5rem;
}
.process-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--ice); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.process-icon svg { width: 28px; height: 28px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.process-card h3 { font-size: 1.15rem; margin-bottom: .75rem; }
.process-card p { color: var(--text); font-size: .95rem; line-height: 1.7; }

/* ==========================================================================
   SERVICE CARDS (Dienstleistungen/Index)
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden;
  transition: .25s; box-shadow: 0 8px 30px rgba(8,43,80,.05);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(8,43,80,.1); }
.service-card-image { position: relative; height: 220px; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-card-number {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(8,43,80,.78); color: #fff; backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 999px; font-size: .74rem; font-weight: 800; letter-spacing: .08em;
}
.service-card-content { padding: 1.5rem; }
.service-card-content h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.service-card-content p { color: var(--text); font-size: .9rem; line-height: 1.65; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 1rem;
  font-weight: 700; color: var(--navy); font-size: .9rem;
}
.service-card-link svg { width: 16px; height: 16px; stroke: var(--red); fill: none; stroke-width: 2; transition: transform .2s; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ==========================================================================
   TRUST BADGES
   ========================================================================== */
.trust-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.trust-badge-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem;
  transition: .25s; box-shadow: 0 4px 16px rgba(8,43,80,.04);
}
.trust-badge-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(8,43,80,.08); border-color: rgba(232,47,55,.2); }
.trust-badge-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: linear-gradient(135deg, var(--ice), #e8f0fc);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.trust-badge-icon svg { width: 26px; height: 26px; stroke: var(--red); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.trust-badge-card h4 { font-size: .9rem; font-weight: 700; line-height: 1.3; }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-container { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: box-shadow .25s; }
.faq-item:hover { box-shadow: 0 12px 30px rgba(8,43,80,.07); }
.faq-item.active { box-shadow: 0 12px 30px rgba(8,43,80,.09); border-color: rgba(232,47,55,.2); }
.faq-header {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.75rem; background: none; border: 0; cursor: pointer;
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--ink); text-align: left; gap: 1rem;
}
.faq-arrow { width: 20px; height: 20px; flex: none; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; transition: transform .3s ease; }
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.22,.68,.2,1); }
.faq-panel p { padding: 0 1.75rem 1.5rem; color: var(--text); line-height: 1.75; }

/* ==========================================================================
   ADVANTAGES GRID (About Section on Index)
   ========================================================================== */
.advantages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.advantages-image-container { border-radius: 28px; overflow: hidden; }
.advantages-image-container img { width: 100%; height: 480px; object-fit: cover; transition: transform .6s ease; }
.advantages-image-container:hover img { transform: scale(1.03); }

/* ==========================================================================
   CONTACT / FORM AREA
   ========================================================================== */
.advantages-grid.contact-layout { grid-template-columns: 1fr 1fr; }

/* Contact info card */
.contact-info-card {
  background: var(--navy); color: #fff; border-radius: 28px; padding: 2.5rem;
}
.contact-info-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 1.5; flex: none; margin-top: 2px; }
.contact-info-item a { color: #dce8f5; font-size: .95rem; }
.contact-info-item a:hover { color: #fff; }
.social-links { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: .5rem;
  color: #aebfd0; font-size: .88rem; transition: color .2s;
}
.social-link:hover { color: #fff; }
.social-link svg { width: 18px; height: 18px; }

/* Form Styles */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 2.5rem; box-shadow: 0 12px 40px rgba(8,43,80,.07); }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: .5rem; }
.form-label span { color: var(--red); }
.form-control, .form-select, .form-textarea {
  width: 100%; padding: .875rem 1.1rem; border: 1.5px solid var(--line);
  border-radius: 14px; font-family: var(--font-body); font-size: .95rem;
  color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
  outline: none; appearance: none;
}
.form-control:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(8,43,80,.08);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* File Upload */
.file-upload-wrapper {
  position: relative;
  border: 2px dashed var(--line); border-radius: 10px; padding: .65rem 1rem;
  display: flex; flex-direction: row; align-items: center; justify-content: flex-start;
  cursor: pointer; transition: border-color .2s; text-align: left; gap: .65rem;
}
.file-upload-wrapper:hover { border-color: var(--navy); }
.file-upload-wrapper input[type="file"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-upload-label { font-weight: 700; color: var(--navy); font-size: .85rem; }
.file-upload-note { font-size: .75rem; color: var(--muted); }
.file-upload-icon { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 1.5; flex: none; }

/* Checkbox */
.form-check { display: flex; align-items: flex-start; gap: .75rem; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--navy); }
.form-check label { font-size: .88rem; color: var(--text); line-height: 1.5; }
.form-check label a { color: var(--red); text-decoration: underline; }

/* Submit Button */
.btn-submit {
  width: 100%; padding: 1rem; border-radius: 999px;
  background: var(--red); color: #fff; font-weight: 800; font-size: 1rem;
  border: 0; cursor: pointer; transition: .22s;
  box-shadow: 0 14px 30px rgba(232,47,55,.27);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(232,47,55,.35); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Success Message */
.form-success-message {
  display: none; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem;
  background: #f0fdf4; border: 1.5px solid #86efac; border-radius: 16px; margin-top: 1rem;
}
.form-success-message.active { display: flex; }
.form-success-message svg { width: 24px; height: 24px; flex: none; stroke: #16a34a; fill: none; stroke-width: 2; }

/* Danke Page */
.danke-section { min-height: 80dvh; display: flex; align-items: center; justify-content: center; padding: 8rem 1.5rem; }
.danke-card {
  max-width: 580px; width: 100%; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: 32px;
  padding: 4rem 3rem; box-shadow: 0 24px 70px rgba(8,43,80,.1);
}
.danke-icon { width: 72px; height: 72px; border-radius: 50%; background: #f0fdf4; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.danke-icon svg { width: 36px; height: 36px; stroke: #16a34a; fill: none; stroke-width: 2; }
.danke-card h1 { font-size: 2rem; margin-bottom: 1rem; }
.danke-card p { color: var(--text); margin-bottom: 2rem; }

/* WhatsApp Channel Strip */
.whatsapp-strip {
  background: var(--whatsapp-color); color: #fff; padding: 1rem 0;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  font-weight: 700; font-size: .95rem;
}
.whatsapp-strip svg { width: 22px; height: 22px; }

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: .5rem; }
.toast {
  display: flex; align-items: center; gap: .75rem; padding: .9rem 1.25rem;
  background: var(--navy); color: #fff; border-radius: 16px;
  box-shadow: 0 16px 40px rgba(8,43,80,.2); min-width: 280px; max-width: 380px;
  transform: translateY(12px); opacity: 0; transition: .35s cubic-bezier(.22,.68,.2,1);
}
.toast.show { transform: none; opacity: 1; }
.toast-icon { width: 22px; height: 22px; flex: none; }
.toast-content { font-size: .9rem; line-height: 1.4; }

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp-color);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-whatsapp);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float-btn:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 25px rgba(37,211,102,.5); }
.whatsapp-float-btn svg { width: 30px; height: 30px; fill: #fff; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: #082746; color: #dce8f3; padding: 70px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 50px; }
.footer-brand img {
  width: 220px; height: 76px; object-fit: contain;
  background: #fff; border-radius: 16px; padding: 8px; margin-bottom: 1rem;
}
.footer-brand p { color: #aebfd0; font-size: .9rem; line-height: 1.6; }
.footer-social-links { display: flex; gap: 1rem; align-items: center; margin-top: 1.25rem; flex-wrap: wrap; }
.footer-social-link { display: flex; align-items: center; gap: .5rem; color: #94a3b8; font-size: .88rem; transition: color .2s; }
.footer-social-link:hover { color: #fff; }
.footer-social-link svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col b { color: #fff; margin-bottom: 8px; font-size: .92rem; }
.footer-col a, .footer-col span { font-size: .88rem; color: #b8c8d7; }
.footer-col a:hover { color: #fff; }
.footer-col .footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .75rem; }
.footer-col .footer-contact-item svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 1.5; flex: none; margin-top: 2px; }
.footer-bottom {
  margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13);
  display: flex; justify-content: space-between; font-size: .8rem; color: #90a5b9; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: #90a5b9; }
.footer-bottom a:hover { color: #fff; }
.footer-legal-links { display: flex; gap: 18px; }

/* ==========================================================================
   DETAIL SLIDER (used in existing pages)
   ========================================================================== */
.detail-slider-container { position: relative; border-radius: 24px; overflow: hidden; }
.slide { display: none; }
.slide.active { display: block; }
.slide img { width: 100%; border-radius: 24px; }
.slider-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.prev-btn, .next-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: .2s;
}
.prev-btn:hover, .next-btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.slider-counter { font-size: .88rem; color: var(--muted); font-weight: 700; }
.thumbnail { width: 80px; height: 56px; object-fit: cover; border-radius: 10px; cursor: pointer; opacity: .5; transition: opacity .2s; }
.thumbnail.active { opacity: 1; outline: 2px solid var(--red); }

/* ==========================================================================
   RTL SUPPORT (Arabic)
   ========================================================================== */
html[dir="rtl"] body { font-family: "Segoe UI", Tahoma, Arial, sans-serif; }
html[dir="rtl"] .desktop-nav { direction: rtl; }
html[dir="rtl"] .hero-inner,
html[dir="rtl"] .page-hero-content,
html[dir="rtl"] .intro-grid,
html[dir="rtl"] .chapter-copy,
html[dir="rtl"] .contact-copy { text-align: right; }
html[dir="rtl"] .text-link,
html[dir="rtl"] .btn-primary,
html[dir="rtl"] .contact-actions a { direction: rtl; }
html[dir="rtl"] .hero-meta { right: auto; left: 44px; }
html[dir="rtl"] .page-pagination { left: auto; right: 64px; }

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1300px) {
  .desktop-nav, .header-cta, .lang-switch { display: none !important; }
  .menu-btn { display: flex !important; }
  .nav-shell { justify-content: space-between; }
  .nav-actions { margin-left: auto !important; }
  html[dir="rtl"] .nav-actions { margin-left: 0 !important; margin-right: auto !important; }
  .mobile-drawer { display: block !important; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-layout { grid-template-columns: 1fr; gap: 35px; }
  .chapter-grid, .chapter-grid.reverse { gap: 40px; }
  .cap-head { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 980px) {
  .nav-shell { height: 78px !important; border-radius: 22px; padding: 0 14px; }
  .mobile-drawer { top: 90px !important; height: calc(100dvh - 102px) !important; }
  .hero { min-height: 840px; }
  .hero-inner { padding-top: 160px; }
  .hero h1 { font-size: clamp(3.2rem, 10vw, 5.8rem); }
  .hero-meta { display: none; }
  .hero-pagination { left: 28px; transform: none; }
  .channel-grid { grid-template-columns: 1fr 1fr; }
  .channel-grid a:nth-child(2) { border-right: 0; }
  .channel-grid a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro-grid, .intro-grid-2col { grid-template-columns: 1fr; gap: 22px; }
  .section-index { padding-top: 0; }
  .chapter-grid, .chapter-grid.reverse { grid-template-columns: 1fr; }
  .chapter-grid.reverse .chapter-media { order: 0; }
  .chapter-media { min-height: 460px; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .business-stage { min-height: 660px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .advantages-image-container img { height: 320px; }
  .page-hero-shell, .page-hero-content { min-height: 580px; }
  .page-hero-content { padding: 50px 32px 72px; max-width: 100%; }
  .page-pagination { left: 32px; }
  .sub-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-shell { width: calc(100% - 16px) !important; height: 70px !important; padding: 0 12px !important; border-radius: 18px !important; }
  .brand { width: 148px !important; }
  .brand img { height: 46px !important; }
  .menu-btn { width: 44px !important; height: 44px !important; }
  .mobile-drawer { top: 80px !important; right: 8px !important; width: calc(100vw - 16px) !important; height: calc(100dvh - 90px) !important; }
  .container { width: min(100% - 30px, var(--max)); }
  .hero { min-height: 100dvh; }
  .hero-inner { padding-top: 130px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .hero-copy { font-size: .96rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-glass { width: 100%; justify-content: center; }
  .channel-grid { grid-template-columns: 1fr; }
  .channel-grid a { border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line); }
  .section, .chapter { padding: 72px 0; }
  .intro-copy h2, .cap-head h2, .brands-copy h2, .contact-copy h2, .business-content h2, .chapter-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .chapter-media { min-height: 340px; border-radius: 22px; }
  .cap-grid { grid-template-columns: 1fr; }
  .cap-card { min-height: 240px; }
  .cap-card h3 { margin-top: 50px; }
  .card-grid { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
  .business-stage { min-height: 600px; }
  .business-actions { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .brand-track { gap: 28px; }
  .brand-track span { font-size: 1.1rem; }
  .brand-track span::after { margin-left: 28px; }
  .page-hero-shell, .page-hero-content { min-height: 520px; border-radius: 22px; }
  .page-hero-content { padding: 38px 22px 72px; }
  .page-hero-content h1 { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .page-pagination { left: 22px; bottom: 22px; }
  .sub-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero-alt { padding-top: 88px; }
  .hero-actions { flex-wrap: wrap; }
}

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

/* ==========================================================================
   CONTACT INFO SIDE (kontakt.html split layout)
   ========================================================================== */
.contact-info-side { padding: 2.5rem 0; }
.contact-info-side h2 { line-height: 1.1; }

.contact-channel-list { display: flex; flex-direction: column; gap: 12px; margin-top: 1.5rem; }
.contact-channel-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--ice);
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: all .25s;
  color: var(--ink);
}
.contact-channel-item:hover { background: var(--white); border-color: var(--navy); transform: translateX(4px); }
.contact-channel-item.whatsapp-channel { border-left: 3px solid #25d366; }
.contact-channel-item.whatsapp-channel:hover { background: #f0fff5; }
.contact-channel-item.no-hover:hover { transform: none; background: var(--ice); border-color: var(--line); }
.ch-icon { flex-shrink:0; width:38px; height:38px; display:flex; align-items:center; justify-content:center; background:var(--white); border-radius:10px; border:1px solid var(--line); }
.ch-icon svg { width:20px; height:20px; stroke:var(--navy); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.contact-channel-item.whatsapp-channel .ch-icon svg { fill:#25d366; stroke:none; }
.contact-channel-item div { flex:1; }
.contact-channel-item b { display:block; font-size:.92rem; font-weight:700; color:var(--ink); }
.contact-channel-item span { font-size:.82rem; color:var(--muted); }
.contact-channel-item > i { font-style:normal; color:var(--muted); font-size:1rem; }

html[dir="rtl"] .contact-info-side { padding-left: 20px; padding-right: 0; }
html[dir="rtl"] .contact-channel-item:hover { transform: translateX(-4px); }
html[dir="rtl"] .contact-channel-item.whatsapp-channel { border-left: none; border-right: 3px solid #25d366; }
html[dir="rtl"] .contact-channel-item > i { display: inline-block; transform: scaleX(-1); }

.kontakt-split-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start;
}

/* ==========================================================================
   TRUST BADGE CARDS
   ========================================================================== */
.trust-bar-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:2.5rem; }
.trust-badge-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  border: 1.5px solid var(--line);
  transition: all .25s;
  text-align: center;
}
.trust-badge-card:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: var(--shadow); }
.trust-badge-icon {
  width: 52px; height: 52px;
  background: var(--ice);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.trust-badge-icon svg { width:24px; height:24px; fill:none; stroke:var(--navy); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.trust-badge-card h4 { font-size:.95rem; font-weight:700; color:var(--ink); margin-bottom:.35rem; }

/* Responsive for contact split */
@media (max-width: 1000px) {
  .kontakt-split-grid, .container[style*="grid-template-columns:1fr 2fr"] { display: flex !important; flex-direction: column !important; gap: 2rem !important; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .hero-slide, .reveal, .brand-track { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   STAT STRIP
   ========================================================================== */
.stat-strip {
  background: var(--navy); color: #fff;
  padding: 60px 0;
}
.stat-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-item .stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900; letter-spacing: -.04em;
  color: #fff; display: block; line-height: 1;
}
.stat-item .stat-label {
  font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; color: #a0bcd8;
  margin-top: .4rem; display: block; text-transform: uppercase;
}
.stat-item .stat-accent { color: var(--red); }

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.process-section { padding: 80px 0; background: var(--warm); }
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem; margin-top: 3rem; position: relative;
}
.process-step {
  position: relative; padding: 2rem;
  background: #fff; border-radius: 20px;
  box-shadow: 0 4px 24px rgba(8,43,80,.06);
  border-top: 4px solid var(--red);
}
.process-step-number {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-weight: 900; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.process-step h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: .5rem; color: var(--ink); }
.process-step p { font-size: .9rem; color: var(--text); line-height: 1.65; }

/* ==========================================================================
   TWO-COL TEXT BLOCK
   ========================================================================== */
.two-col-section { padding: 80px 0; }
.two-col-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start;
}
.two-col-section h2 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); letter-spacing: -.03em; margin-bottom: 1.2rem; }
.two-col-section p { font-size: .97rem; color: var(--text); line-height: 1.8; margin-bottom: 1rem; }
.two-col-section ul {
  list-style: none; padding: 0; margin: 0;
}
.two-col-section ul li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .93rem; color: var(--text); line-height: 1.6;
  margin-bottom: .6rem;
}
.two-col-section ul li::before {
  content: "✓"; color: var(--red); font-weight: 900;
  flex: none; margin-top: .05rem;
}

/* ==========================================================================
   BRANDS TEXT BLOCK
   ========================================================================== */
.brands-text-block { padding: 60px 0; background: #f4f6f9; }
.brands-text-block .eyebrow { margin-bottom: .75rem; }
.brands-text-block h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: .75rem; color: var(--ink); }
.brands-text-block p { font-size: .93rem; color: var(--text); line-height: 1.8; }
.brand-pill-list {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem;
}
.brand-pill {
  padding: .35rem .85rem; background: #fff;
  border: 1.5px solid var(--line); border-radius: 999px;
  font-size: .8rem; font-weight: 700; color: var(--navy);
  letter-spacing: .03em;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section { padding: 80px 0; }
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.faq-question {
  width: 100%; background: none; border: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem; cursor: pointer; text-align: left;
  font-size: 1rem; font-weight: 700; color: var(--ink);
  gap: 1rem;
}
.faq-question:hover { color: var(--red); }
.faq-icon {
  width: 22px; height: 22px; flex: none;
  border: 2px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: transform .25s, background .25s;
  color: var(--navy);
}
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.5rem; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: .93rem; color: var(--text); line-height: 1.75; }

/* ==========================================================================
   FEATURE KACHELN (3er Grid, groß)
   ========================================================================== */
.feature-grid-section { padding: 80px 0; }
.feature-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.feature-card {
  background: var(--navy); color: #fff;
  border-radius: 20px; padding: 2rem;
}
.feature-card .fc-number {
  font-size: 3rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,.15); letter-spacing: -.05em;
  margin-bottom: .75rem;
}
.feature-card h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: .6rem; color: #fff; }
.feature-card p { font-size: .88rem; color: #a0bcd8; line-height: 1.7; }

/* ==========================================================================
   TRUST BADGE 6er GRID
   ========================================================================== */
.trust-bar-grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

/* ==========================================================================
   RESPONSIVE NEUE ELEMENTE
   ========================================================================== */
@media (max-width: 900px) {
  .stat-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .process-grid { grid-template-columns: 1fr; }
  .two-col-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature-grid-3 { grid-template-columns: 1fr; }
  .trust-bar-grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .stat-strip-grid { grid-template-columns: repeat(2, 1fr); }
}