/* ============================================
   SALESMATIK — styles.css
   ============================================ */

/* ── CCM19 Cookie Banner: Brand-Farbe ─────── */
.ccm-root button,
.ccm-root .ccm-btn,
.ccm-root .ccm--btn,
#ccm-root button,
#ccm-root .ccm-btn,
#ccm-root .ccm--btn {
  background-color: #001F5B !important;
  border-color: #001F5B !important;
  color: #ffffff !important;
}
.ccm-root button:hover,
.ccm-root .ccm-btn:hover,
.ccm-root .ccm--btn:hover,
#ccm-root button:hover,
#ccm-root .ccm-btn:hover,
#ccm-root .ccm--btn:hover {
  background-color: #002a7a !important;
  border-color: #002a7a !important;
}

html {
  scroll-behavior: smooth;
}

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

:root {
  --primary: #001F5B;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --accent-light: #EEF2FF;
  --bg-light: #F8F9FA;
  --border: #E5E7EB;
  --text-muted: #6B7280;
  --text-dark: #0A0A0A;
  --grid-color: #F0F2F5;
  --font-headline: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--white);
  color: #374151;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 31, 91, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 31, 91, 0.08);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 8px 32px rgba(0, 31, 91, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

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

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}

.nav-dropdown-toggle:hover {
  color: var(--primary);
}

.nav-dropdown-toggle .chevron {
  transition: transform 0.2s;
}

.nav-dropdown:hover .chevron,
.nav-dropdown.open .chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 228px;
  box-shadow: 0 8px 40px rgba(0, 31, 91, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

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

.nav-dropdown-item-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 6px;
  color: var(--primary);
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile-link {
  display: block;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.nav-mobile-link:last-of-type {
  border-bottom: none;
}

.nav-mobile .btn {
  margin-top: 12px;
  text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
              background 160ms cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 160ms cubic-bezier(0.23, 1, 0.32, 1),
              border-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
              color 160ms cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
  line-height: 1.4;
}

.btn:active {
  transform: scale(0.97) translateY(0) !important;
  box-shadow: none !important;
}

.btn-primary {
  background: #001F5B;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
              background 160ms cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: #002a7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 31, 91, 0.35);
  }
}

.btn-primary:active {
  transform: scale(0.97) translateY(0) !important;
  box-shadow: none !important;
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

@media (hover: hover) and (pointer: fine) {
  .btn-secondary:hover {
    background: var(--accent-light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 31, 91, 0.12);
  }
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

@media (hover: hover) and (pointer: fine) {
  .btn-white:hover {
    background: #f0f4ff;
    color: var(--primary);
  }
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

/* ============================================
   HERO — INDEX
   ============================================ */

.hero {
  min-height: 100vh;
  padding: 160px 0;
  display: flex;
  align-items: center;
  background-color: var(--white);
  background-image:
    linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
  background-size: 48px 48px;
  text-align: center;
}

.hero .container {
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-sub--mobile { display: none; }
.hero-sub--desktop { display: block; }

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */

.section {
  padding: 96px 0;
}

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

.section-badge {
  display: block;
  background: none;
  color: #6B7280;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  border-radius: 0;
  margin-bottom: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title .highlight {
  color: var(--primary);
}

.section-title .highlight-italic {
  color: var(--primary);
  font-style: italic;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-sub {
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.problem-card:hover {
  border-color: rgba(0, 31, 91, 0.25);
  box-shadow: 0 4px 24px rgba(0, 31, 91, 0.06);
}

.problem-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 12px;
  color: var(--primary);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */

.solutions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solutions-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solutions-row-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(0, 31, 91, 0.08);
}

.product-card.featured {
  background: var(--primary);
  border-color: var(--primary);
}

.product-card.featured:hover {
  box-shadow: 0 8px 40px rgba(0, 31, 91, 0.25);
}

.product-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 12px;
  color: var(--primary);
  margin-bottom: 20px;
}

.product-card.featured .product-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.product-card h3 {
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
}

.product-card.featured h3 {
  color: var(--white);
}

.product-tagline {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  opacity: 0.8;
}

.product-card.featured .product-tagline {
  color: rgba(255, 255, 255, 0.7);
}

.product-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.product-card.featured p {
  color: rgba(255, 255, 255, 0.75);
}

.product-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-link:hover {
  gap: 8px;
}

.product-card.featured .product-link {
  color: var(--white);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

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

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.step-card.highlighted {
  background: var(--primary);
  border-color: var(--primary);
}

.step-num-label {
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.step-card.highlighted .step-num-label {
  color: rgba(255, 255, 255, 0.5);
}

.step-bg-number {
  position: absolute;
  bottom: -10px;
  right: 16px;
  font-family: var(--font-headline);
  font-size: 88px;
  font-weight: 800;
  color: rgba(0, 31, 91, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.step-card.highlighted .step-bg-number {
  color: rgba(255, 255, 255, 0.08);
}

.step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 12px;
  color: var(--primary);
  margin-bottom: 20px;
}

.step-card.highlighted .step-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.step-card h3 {
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.step-card.highlighted h3 {
  color: var(--white);
}

.step-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-card.highlighted p {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   TRUST SECTION
   ============================================ */

.logo-bar {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.logo-placeholder {
  flex: 1;
  min-width: 140px;
  max-width: 196px;
  height: 72px;
  background: #F3F4F6;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: #9CA3AF;
}

.testimonial-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.testimonial-quote-mark {
  font-family: var(--font-headline);
  font-size: 80px;
  font-weight: 800;
  line-height: 0.8;
  color: var(--primary);
  margin-bottom: 24px;
  display: block;
}

.testimonial-text {
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-author-company {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background-color: var(--primary);
  background-image:
    radial-gradient(ellipse 75% 80% at 50% 50%, rgba(0, 60, 180, 0.45) 0%, transparent 65%),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: auto, 28px 28px;
  padding: 120px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-headline);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

.cta-banner .btn-white {
  border-radius: 100px;
  padding: 14px 40px;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
}

.cta-banner .btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: #F7F9FF;
  background-image:
    radial-gradient(ellipse 70% 90% at -5% 110%, rgba(0, 45, 160, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 108% -5%, rgba(0, 45, 160, 0.13) 0%, transparent 55%);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  height: 28px;
  width: auto;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #6B7280;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 31, 91, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #9CA3AF;
}

/* ============================================
   PRODUCT PAGE — HERO
   ============================================ */

.product-hero {
  background: var(--primary);
  padding: 160px 0 96px;
  text-align: center;
}

.product-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.product-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.product-hero-tagline {
  font-family: var(--font-headline);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.product-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* ============================================
   PRODUCT PAGE — SECTIONS
   ============================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 10px;
  color: var(--primary);
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.target-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.target-pill {
  background: var(--accent-light);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 100px;
}

.nmac-situation-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.nmac-situation-card:hover {
  box-shadow: 0 8px 24px rgba(0,31,91,0.1);
  border-color: #001F5B;
}

.nmac-situation-icon {
  width: 40px;
  height: 40px;
  background: #EEF2FF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.nmac-situation-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0A0A0A;
  margin-bottom: 10px;
}

.nmac-situation-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .nmac-situation-card {
    grid-column: 1 / -1;
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-hero {
  background: var(--bg-light);
  padding: 128px 0 56px;
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.legal-hero p {
  font-size: 16px;
  color: var(--text-muted);
}

.legal-content {
  padding: 64px 0 96px;
}

.legal-body {
  max-width: 760px;
}

.legal-body h2 {
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  margin: 40px 0 12px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  margin: 24px 0 8px;
}

.legal-body p {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-body ul {
  margin: 0 0 16px 20px;
}

.legal-body ul li {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .solutions-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-row-bottom {
    grid-template-columns: 1fr;
    max-width: 408px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-center,
  .nav-right {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    height: 64px;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .solutions-row {
    grid-template-columns: 1fr;
  }

  .solutions-row-bottom {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .logo-bar {
    gap: 10px;
  }

  .logo-placeholder {
    min-width: 100px;
    flex: 0 0 calc(50% - 8px);
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .section {
    padding: 64px 0;
  }

  .cta-banner {
    padding: 80px 0;
  }

  .product-hero {
    padding: 120px 0 72px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 42px;
  }

  .section-title {
    font-size: 36px;
  }

  .product-hero h1 {
    font-size: 34px;
  }

  .cta-banner h2 {
    font-size: 32px;
  }
}

/* ============================================
   DROPDOWN — hover gap bridge
   ============================================ */

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

/* ============================================
   PAGE HERO — light variant (contact / booking)
   ============================================ */

.page-hero {
  padding: 128px 0 56px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

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

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 31, 91, 0.07);
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  background: #ECFDF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #059669;
}

.form-success h3 {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 16px;
  color: var(--text-muted);
}

/* Contact info sidebar */
.contact-info {
  padding-top: 8px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 10px;
  color: var(--primary);
}

.contact-info-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-guarantee {
  background: var(--accent-light);
  border-radius: 12px;
  padding: 20px;
  margin-top: 32px;
}

.contact-guarantee h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.contact-guarantee ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-guarantee ul li {
  font-size: 14px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-guarantee ul li::before {
  content: '✓';
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   FORM — UX ENHANCEMENTS (accessibility, validation, touch)
   ============================================ */

/* Touch target: min 44px (Apple HIG / WCAG 2.5.5) */
.form-input,
.form-select {
  min-height: 44px;
}

/* Explicit focus-visible ring — keyboard navigation (WCAG 2.4.7) */
.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  outline: 3px solid rgba(0, 31, 91, 0.45);
  outline-offset: 1px;
}

/* Invalid field state (aria-invalid / .is-invalid) */
.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
  border-color: #DC2626;
  background-color: #FFF5F5;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.09);
}

.form-input.is-invalid:focus,
.form-select.is-invalid:focus,
.form-textarea.is-invalid:focus {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.14);
}

/* Valid field state */
.form-input.is-valid,
.form-select.is-valid,
.form-textarea.is-valid {
  border-color: #16A34A;
  background-color: #F0FDF4;
}

/* Per-field error message (below input, not at top) */
.field-error {
  display: none;
  font-size: 12px;
  color: #DC2626;
  margin-top: 5px;
  font-family: var(--font-body);
  line-height: 1.4;
  font-weight: 500;
  gap: 4px;
  align-items: flex-start;
}

.field-error.visible {
  display: flex;
}

.field-error svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* Label turns red when field is invalid */
.form-group.has-error .form-label {
  color: #DC2626;
}

/* Error summary box (top of form, screen-reader + sighted) */
.form-error-summary {
  display: none;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 24px;
}

.form-error-summary.visible {
  display: block;
}

.form-error-summary p {
  font-size: 13px;
  font-weight: 600;
  color: #DC2626;
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.form-error-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-error-summary ul li {
  font-size: 13px;
  color: #DC2626;
  font-family: var(--font-body);
}

.form-error-summary ul li a {
  color: #DC2626;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Page hero: max-width for readability (65-75 chars/line) */
.page-hero h1 {
  max-width: 680px;
}

.page-hero p {
  max-width: 580px;
  line-height: 1.65;
  margin-top: 12px;
}

/* Trust strip below hero CTA */
.contact-trust-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.contact-trust-item svg {
  color: #16A34A;
  flex-shrink: 0;
}

/* Booking block below form */
.contact-book-block {
  margin-top: 16px;
  background: #F0F4FF;
  border: 1px solid #DBEAFE;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.contact-book-block p:first-child {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 2px;
}

.contact-book-block p:last-of-type {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

/* ============================================
   CONTACT HERO — two-column split
   ============================================ */

.contact-hero-section {
  background: var(--bg-light);
  padding: 128px 0 80px;
  border-bottom: 1px solid var(--border);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

.contact-hero-left h1 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 40px);
  color: var(--black);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 14px 0 14px;
  max-width: 520px;
}

.contact-hero-left p.hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: #374151;
  line-height: 1.65;
  max-width: 460px;
  margin: 0 0 20px;
}

.contact-hero-meta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.contact-hero-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.contact-hero-meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #EEF2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-hero-meta-text h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
  margin: 0 0 3px;
  letter-spacing: 0;
  text-transform: none;
}

.contact-hero-meta-text p {
  font-family: var(--font-body);
  font-size: 13px;
  color: #6B7280;
  margin: 0;
  line-height: 1.5;
  max-width: none;
}

.contact-hero-meta-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* Right: elevated form card */
.contact-hero-right .form-card {
  box-shadow: 0 8px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #E5E7EB;
}

/* Headline two-tone accent (Kontakt hero) */
.headline-accent {
  color: #001F5B;
  display: block;
  line-height: 1.15;
  margin-bottom: 0;
}
.contact-hero-left h1 {
  color: #0f172a;
  line-height: 1.15;
}

/* Trust strip: column layout to avoid wrapping */
.contact-hero-section .contact-trust-strip {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.contact-hero-section .contact-trust-item {
  font-size: 13px;
}

@media (max-width: 1024px) {
  .contact-hero-grid {
    gap: 40px;
  }
  .contact-hero-left h1 {
    font-size: clamp(24px, 2.6vw, 34px);
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    padding: 100px 0 56px;
  }
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-hero-left {
    padding-top: 0;
  }
  .contact-hero-left h1 {
    max-width: 100%;
    font-size: clamp(24px, 6vw, 34px);
  }
  .contact-hero-section .contact-trust-strip {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}

/* ============================================
   BOOKING CALENDAR
   ============================================ */

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 288px;
  gap: 48px;
  align-items: start;
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.booking-card-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}

.booking-card-header h3 {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 2px;
}

.booking-card-header p {
  font-size: 13px;
  color: var(--text-muted);
}

.booking-card-body {
  padding: 32px;
}

/* Step progress */
.booking-progress {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.booking-progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.booking-progress-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-progress-step.active {
  color: var(--primary);
}

.booking-progress-step.active .booking-progress-num,
.booking-progress-step.done .booking-progress-num {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.booking-progress-step.done {
  color: var(--primary);
}

.booking-progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 10px;
}

.booking-progress-line.done {
  background: var(--primary);
}

/* Panels */
.booking-step-panel {
  display: none;
}

.booking-step-panel.active {
  display: block;
}

.booking-step-title {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
}

/* Date chips */
.date-chips {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.date-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 6px;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.15s, background 0.15s;
  text-align: center;
  gap: 1px;
}

.date-chip:hover {
  border-color: var(--primary);
  background: var(--accent-light);
}

.date-chip.selected {
  border-color: var(--primary);
  background: var(--primary);
}

.date-chip-day {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.date-chip.selected .date-chip-day {
  color: rgba(255, 255, 255, 0.65);
}

.date-chip-date {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
}

.date-chip.selected .date-chip-date {
  color: var(--white);
}

.date-chip-month {
  font-size: 10px;
  color: var(--text-muted);
}

.date-chip.selected .date-chip-month {
  color: rgba(255, 255, 255, 0.65);
}

/* Time chips */
.time-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.time-chip {
  padding: 10px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.time-chip:hover {
  border-color: var(--primary);
  background: var(--accent-light);
  color: var(--primary);
}

.time-chip.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Selection summary badge */
.booking-selection-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 24px;
}

/* Back button */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  transition: color 0.2s;
  font-family: var(--font-body);
}

.btn-back:hover {
  color: var(--primary);
}

/* Booking confirmation */
.booking-confirmation {
  text-align: center;
  padding: 16px 0 8px;
}

.booking-confirmation-icon {
  width: 64px;
  height: 64px;
  background: #ECFDF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.booking-confirmation h3 {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.booking-confirmation p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 8px;
}

/* Booking info sidebar */
.booking-info {
  position: sticky;
  top: 96px;
}

.booking-info-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.booking-info-card h3 {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
}

.booking-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.booking-info-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 8px;
  color: var(--primary);
  flex-shrink: 0;
}

.booking-info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.booking-info-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-layout,
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-info {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .date-chips {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card,
  .booking-card-body {
    padding: 24px;
  }
}

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

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

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  background: #FFFFFF;
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-layout {
  display: grid;
  grid-template-columns: 5fr 8fr;
  gap: 80px;
  align-items: start;
}

.faq-title {
  font-family: var(--font-headline);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--black);
  letter-spacing: -0.5px;
}

.faq-title-accent {
  color: var(--primary);
}

.faq-list {
  padding-top: 2px;
}

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

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

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}

.faq-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--primary);
  border-radius: 1px;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.45;
  transition: color 0.2s;
}

.faq-item.open .faq-question {
  color: var(--primary);
}

.faq-answer {
  padding: 0 0 20px 30px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 44px;
  }
}

/* ============================================
   INTEGRATIONS SECTION
   ============================================ */

.integrations-section {
  background: #F8F9FA;
  padding: 96px 0;
}

.integrations-header {
  text-align: center;
  margin-bottom: 52px;
}

.integrations-section .section-badge {
  font-size: 12px;
  color: #9CA3AF;
  margin-bottom: 14px;
}

.integrations-headline {
  font-family: var(--font-headline);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
  text-align: center;
  margin: 0;
  letter-spacing: -0.4px;
}

.integrations-hl {
  color: #001F5B;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #E5E7EB;
  gap: 1px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
}

.integration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 140px;
  background: #ffffff;
  cursor: default;
  transition: background 0.2s ease;
  position: relative;
}

.integration-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.integration-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.integration-name {
  font-size: 11px;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 0 8px;
}

.integration-card:hover {
  background: #F8F9FA;
}

.integration-card:hover .integration-icon {
  transform: scale(1.08);
}

.integration-more {
  grid-column: 1 / -1;
  height: 56px;
  background: #EEF2FF;
  cursor: pointer;
  transition: background 0.2s ease;
}

.integration-more:hover {
  background: #E0E7FF;
}

.integration-more-text {
  font-size: 14px;
  font-weight: 600;
  color: #001F5B;
}

@media (max-width: 768px) {
  .integrations-headline {
    font-size: clamp(22px, 4.5vw, 36px);
  }
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* ============================================
   HERO WORKFLOW DIAGRAM
   ============================================ */

.hero-workflow {
  margin-top: 72px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.wf-track {
  display: flex;
  align-items: center;
}

/* Start / End circles */
.wf-cap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 31, 91, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wf-cap-in {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 31, 91, 0.16);
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
}

/* Outer connecting lines */
.wf-line {
  width: 52px;
  border-top: 2px dashed rgba(0, 31, 91, 0.18);
  flex-shrink: 0;
  position: relative;
}

.wf-line::before,
.wf-line::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(0, 31, 91, 0.2);
}

.wf-line::before { left: -3.5px; }
.wf-line::after  { right: -3.5px; }

/* Nodes group with dashed bracket */
.wf-group {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px dashed rgba(0, 31, 91, 0.18);
  border-radius: 14px;
  padding: 60px 16px 14px;
}

.wf-group-title {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  padding: 2px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #001F5B;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Inner connecting lines between nodes */
.wf-connector {
  width: 40px;
  border-top: 2px dashed rgba(0, 31, 91, 0.18);
  flex-shrink: 0;
  position: relative;
}

.wf-connector::before,
.wf-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(0, 31, 91, 0.2);
}

.wf-connector::before { left: -3px; }
.wf-connector::after  { right: -3px; }

/* Workflow node cards */
.wf-node {
  position: relative;
  width: 108px;
  height: 90px;
  border-radius: 12px;
  background: linear-gradient(145deg, #001440 0%, #003399 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(0, 31, 91, 0.22);
}

.wf-node-2 {
  background: linear-gradient(145deg, #002D80 0%, #0055D4 100%);
}

.wf-node-3 {
  background: linear-gradient(145deg, #003A6B 0%, #0066BB 100%);
}

.wf-node-4 {
  background: linear-gradient(145deg, #064E3B 0%, #059669 100%);
}

/* Number badge */
.wf-n {
  position: absolute;
  top: 8px;
  left: 9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wf-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.wf-sub {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.1px;
}

/* Floating popup above node 2 */
.wf-popup {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09);
  white-space: nowrap;
  pointer-events: none;
}

.wf-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 12px;
  background: rgba(0, 31, 91, 0.2);
}

@media (max-width: 900px) {
  .hero-workflow {
    display: none;
  }
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
  background: var(--white);
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 72px;
}

/* Header block */
.stats-header {
  padding-top: 72px;
  padding-bottom: 56px;
  text-align: center;
}

.stats-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.stats-headline {
  font-family: var(--font-headline);
  font-size: 44px;
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.stats-hl {
  color: #001F5B;
}

.stats-subline {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.5;
}

/* Full-width dotted ruler */
.stats-ruler {
  position: relative;
  width: 100%;
  padding: 32px 0;
  display: flex;
  align-items: center;
}

.stats-ruler::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 1px dotted #D1D5DB;
  z-index: 0;
}

/* Inner grid: matches container + stats-grid gap for perfect square alignment */
.stats-ruler-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stats-ruler-anchor {
  display: flex;
  justify-content: center;
}

.stats-ruler-anchor::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #001F5B;
  display: block;
}

/* 4-column stat grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-headline);
  font-size: 80px;
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 14px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.55;
}

.stat-label-main {
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 8px;
  line-height: 1.3;
}

.stat-icon {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .stats-header {
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .stats-headline {
    font-size: 34px;
  }

  .stats-subline {
    font-size: 16px;
  }

  .stats-ruler {
    display: none;
  }

  .stats-section {
    padding-bottom: 56px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }

  .stat-number {
    font-size: 52px;
    letter-spacing: -1px;
  }
}

/* ============================================
   PRODUCT HERO — LIGHT VARIANT
   (never-miss-a-call, opt-in per class)
   ============================================ */

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

.product-hero-light {
  min-height: 85vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--white);
  padding: 80px 0 120px;
  position: relative;
  overflow: visible;
}

.product-hero-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    radial-gradient(ellipse 50% 25% at 50% 100%, rgba(0, 31, 91, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(0, 31, 91, 0.22) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.phl-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  position: relative;
  z-index: 1;
}

/* Badge pill */
.phl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
  margin-bottom: 32px;
  animation: phFadeUp 0.5s ease both;
  animation-delay: 0s;
}

.phl-badge-sep {
  color: #D1D5DB;
}

.phl-badge-cta {
  color: #001F5B;
  font-weight: 600;
}

/* Gradient headline */
.phl-headline {
  font-family: var(--font-headline);
  font-size: 96px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -2px;
  background: linear-gradient(180deg, #001F5B 0%, #4A6FA5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  overflow: visible;
  padding-bottom: 6px;
  margin-bottom: 24px;
  animation: phFadeUp 0.5s ease both;
  animation-delay: 0.1s;
}

/* Subline */
.phl-subline {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  color: #6B7280;
  max-width: 550px;
  line-height: 1.5;
  margin-bottom: 20px;
  animation: phFadeUp 0.5s ease both;
  animation-delay: 0.2s;
}

.phl-quote {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #001F5B;
  opacity: 0.7;
  margin-bottom: 40px;
  animation: phFadeUp 0.5s ease both;
  animation-delay: 0.25s;
}

/* Buttons row */
.phl-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: phFadeUp 0.5s ease both;
  animation-delay: 0.3s;
}

.phl-btn-ghost {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: color 0.2s;
}

.phl-btn-ghost:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .product-hero-light {
    min-height: unset;
    padding: 140px 0 72px;
  }

  .phl-headline {
    font-size: 52px;
    letter-spacing: -1px;
  }

  .phl-subline {
    font-size: 18px;
  }

  .phl-buttons {
    flex-direction: column;
    gap: 14px;
  }
}

/* ============================================
   KOSTENRECHNER
   ============================================ */

.calc-section {
  background: #F8F9FA;
}

.calc-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.calc-box {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 48px;
  max-width: 800px;
  margin: 48px auto 0;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* Inputs */
.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.calc-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.calc-slider-header {
  margin-bottom: 10px;
}

.calc-slider-val {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 800;
  color: #001F5B;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #001F5B;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 31, 91, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(0, 31, 91, 0.45);
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #001F5B;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 31, 91, 0.35);
}

.calc-money-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 0 16px;
  background: #F8F9FA;
  transition: border-color 0.2s, background 0.2s;
}

.calc-money-wrap:focus-within {
  border-color: #001F5B;
  background: #ffffff;
}

.calc-currency {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  color: #001F5B;
  flex-shrink: 0;
}

.calc-money-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 800;
  color: #001F5B;
  padding: 12px 0;
  outline: none;
  min-width: 0;
  -moz-appearance: textfield;
}

.calc-money-input::-webkit-inner-spin-button,
.calc-money-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* Results */
.calc-results {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calc-result-card {
  background: #F8F9FA;
  border-radius: 12px;
  padding: 20px 24px;
  flex: 1;
}

.calc-result-label {
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
  margin-bottom: 6px;
}

.calc-result-number {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 800;
  color: #001F5B;
  line-height: 1;
  letter-spacing: -0.5px;
}

.calc-result-sub {
  font-size: 11px;
  color: #9CA3AF;
  margin-top: 4px;
}

.calc-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #9CA3AF;
  margin-top: 28px;
  line-height: 1.6;
}

/* CTA Box */
.calc-cta-box {
  background: #001F5B;
  border-radius: 16px;
  padding: 40px 48px;
  text-align: center;
  max-width: 800px;
  margin: 20px auto 0;
}

.calc-cta-text {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.5;
}

.calc-cta-text strong {
  color: #ffffff;
  font-weight: 800;
}

.calc-cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #001F5B;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.calc-cta-btn:hover {
  background: #EEF2FF;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .calc-box {
    padding: 20px 16px;
    margin-top: 32px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
    min-width: 0;
  }

  /* Grid-Items: min-width:0 verhindert Auto-Expansion über Grid-Track hinaus */
  .calc-inputs,
  .calc-results {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .calc-input-group {
    padding-bottom: 4px;
  }

  .calc-input-group {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  /* iOS Safari range: Track explizit begrenzen */
  .calc-slider {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: block;
    box-sizing: border-box;
  }

  .calc-slider::-webkit-slider-runnable-track {
    width: 100%;
    max-width: 100%;
  }

  .calc-money-wrap {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .calc-money-input {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 16px;
  }

  .calc-result-card {
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .calc-result-number {
    font-size: 24px;
  }

  .calc-cta-box {
    padding: 24px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .calc-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-break: break-word;
    padding: 14px 16px;
  }

  .calc-cta-text {
    font-size: 16px;
  }
}

/* ============================================
   MOBILE FINESCHLIFF
   ============================================ */
@media (max-width: 768px) {
  /* Hero subheadline */
  .hero-sub {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
  }

  .hero-sub--desktop { display: none; }
  .hero-sub--mobile  { display: block; }

  /* Hero */
  .page-hero { padding: 96px 0 56px; }

  /* Sections */
  .section { padding: 56px 0; }

  /* Typography */
  .page-hero h1 { font-size: clamp(26px, 7vw, 36px); }
  .section-headline, h2 { font-size: clamp(22px, 5.5vw, 28px); }

  /* Contact hero grid order */
  .contact-hero-left { order: 1; }
  .contact-hero-right { order: 2; }

  /* Cards */
  .form-card { padding: 20px; }
  .card { padding: 20px; }

  /* Buttons */
  .btn { min-height: 44px; }

  /* Forms */
  .form-input, .form-select, .form-textarea { min-height: 44px; font-size: 16px; }
  .form-row { flex-direction: column; gap: 0; }
  .form-group--half { width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* No overflow */
  body { overflow-x: hidden; }
}

@media (max-width: 430px) {
  .page-hero h1, .contact-hero-left h1 { font-size: 26px; }
  .section-headline, h2 { font-size: 22px; }
  .container { padding: 0 16px; }
}

/* ============================================
   MOBILE FIX — Overflow & Responsive v2
   ============================================ */

/* Global overflow guard — iOS Safari fix */
html {
  overflow-x: hidden;
  overflow-x: clip; /* stronger: no scroll container created */
}

/* All headlines wrap long German words */
h1, h2, h3, h4 {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

@media (max-width: 768px) {
  /* Hero index headline smaller floor */
  .hero h1 {
    font-size: clamp(28px, 8vw, 42px);
  }

  /* Product hero headline */
  .phl-headline {
    font-size: clamp(32px, 9vw, 52px);
    letter-spacing: -1px;
  }

  /* FAQ title */
  .faq-title {
    font-size: clamp(30px, 8vw, 42px);
  }

  /* Stats number */
  .stat-number {
    font-size: 48px;
  }

  /* Calc card */
  .calc-card {
    padding: 24px 16px;
  }

  /* Calc slider full width */
  .calc-slider,
  .calc-money-wrap,
  .calc-money-input {
    width: 100%;
    max-width: 100%;
  }

  /* Product hero light padding */
  .product-hero-light {
    padding: 100px 0 64px;
  }

  /* Nav inner container padding */
  .nav .container {
    padding: 0 16px;
  }

  /* Section title smaller */
  .section-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  /* CTA banner text */
  .cta-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  /* Testimonial quote mark */
  .testimonial-quote-mark {
    font-size: 48px;
  }

  /* CCM19 cookie button — smaller on mobile */
  #ccm19Widget,
  .ccm19-widget-button {
    transform: scale(0.8) !important;
    transform-origin: bottom left !important;
  }
}

@media (max-width: 430px) {
  .phl-headline {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .faq-title {
    font-size: 28px;
  }

  .stat-number {
    font-size: 40px;
  }

  .calc-card {
    padding: 20px 14px;
  }
}
