@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ============================================
   COLOR SYSTEM — color-mix() based
   ============================================ */
:root {
  --primary: #1a6b8a;
  --secondary: #2d9e6b;
  --accent: #e8734a;

  --primary-dark: color-mix(in oklch, var(--primary), black 25%);
  --primary-light: color-mix(in oklch, var(--primary), white 40%);
  --primary-xlight: color-mix(in oklch, var(--primary), white 75%);
  --primary-ultra: color-mix(in oklch, var(--primary), white 92%);

  --secondary-dark: color-mix(in oklch, var(--secondary), black 20%);
  --secondary-light: color-mix(in oklch, var(--secondary), white 50%);
  --secondary-ultra: color-mix(in oklch, var(--secondary), white 88%);

  --accent-dark: color-mix(in oklch, var(--accent), black 20%);
  --accent-light: color-mix(in oklch, var(--accent), white 50%);
  --accent-ultra: color-mix(in oklch, var(--accent), white 88%);

  --paper-white: #faf9f7;
  --paper-warm: #f5f2ed;
  --paper-mid: #ede9e2;
  --text-dark: #1c2331;
  --text-mid: #3d4a5c;
  --text-light: #6b7a8d;
  --text-xlight: #9aa5b4;

  --border-subtle: color-mix(in oklch, var(--primary), white 80%);
  --border-warm: color-mix(in oklch, var(--accent), white 75%);

  
  --shadow-xs: 0 1px 3px color-mix(in oklch, var(--primary), transparent 88%);
  --shadow-sm: 0 2px 8px color-mix(in oklch, var(--primary), transparent 85%), 0 1px 3px color-mix(in oklch, var(--primary), transparent 90%);
  --shadow-md: 0 4px 16px color-mix(in oklch, var(--primary), transparent 82%), 0 2px 6px color-mix(in oklch, var(--primary), transparent 88%);
  --shadow-lg: 0 8px 32px color-mix(in oklch, var(--primary), transparent 78%), 0 4px 12px color-mix(in oklch, var(--primary), transparent 85%);
  --shadow-xl: 0 16px 48px color-mix(in oklch, var(--primary), transparent 74%), 0 8px 20px color-mix(in oklch, var(--primary), transparent 82%);
  --shadow-paper: 0 -4px 20px color-mix(in oklch, var(--text-dark), transparent 88%), 0 -1px 4px color-mix(in oklch, var(--text-dark), transparent 94%);

  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: clamp(2rem, 5vw, 3.5rem);
  --text-hero: clamp(3rem, 10vw, 8rem);
}

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--paper-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--primary-dark); }

ul { list-style: none; }

address { font-style: normal; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-heading {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-ultra);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
  border: 1px solid var(--border-subtle);
}

.section-label--light {
  color: color-mix(in oklch, var(--primary-xlight), white 30%);
  background: color-mix(in oklch, white, transparent 85%);
  border-color: color-mix(in oklch, white, transparent 70%);
}

.section-intro {
  font-size: var(--text-md);
  color: var(--text-mid);
  max-width: 60ch;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .section-label { display: inline-block; }
.section-header .section-intro { margin: 0 auto; }

.body-text {
  font-size: var(--text-base);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.body-text--light { color: color-mix(in oklch, white, transparent 20%); }

.highlight-text {
  color: var(--primary);
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s ease, color 0.2s ease;
}

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

.text-link::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--primary);
  width: 0;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -2px;
  left: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--paper-white);
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.nav-logo { width: 36px; height: 36px; }

.nav-brand-text {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
}

.nav-pill {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.nav-pill:hover {
  background: var(--primary-ultra);
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-pill.active {
  background: var(--primary);
  color: white;
}

.nav-pill--cta {
  background: var(--accent);
  color: white !important;
  font-weight: 600;
}

.nav-pill--cta:hover {
  background: var(--accent-dark) !important;
  color: white !important;
  transform: translateY(-1px);
}

.mobile-menu-trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.mobile-menu-trigger:hover { background: var(--primary-ultra); }

.mobile-menu-trigger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================
   MOBILE OVERLAY
   ============================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: color-mix(in oklch, white, transparent 85%);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-overlay-close:hover {
  background: color-mix(in oklch, white, transparent 75%);
  transform: rotate(90deg);
}

.mobile-overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.mobile-nav-link {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 600;
  color: color-mix(in oklch, white, transparent 15%);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.mobile-nav-link:hover {
  color: white;
  transform: translateX(8px);
}

.mobile-nav-link:hover::after { transform: scaleX(1); }

.mobile-nav-link--cta {
  color: var(--accent-light);
  font-weight: 700;
}

/* ============================================
   PAPER SHEET SYSTEM
   ============================================ */
.paper-sheet {
  position: relative;
  width: 100%;
  padding: var(--space-3xl) 0;
  box-shadow: var(--shadow-paper);
}

.paper-sheet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, color-mix(in oklch, var(--text-dark), transparent 90%), transparent);
}

.sheet-light { background: var(--paper-white); }
.sheet-warm { background: var(--paper-warm); }
.sheet-mid { background: var(--paper-mid); }

.sheet-accent {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, color-mix(in oklch, var(--primary), var(--secondary) 30%) 100%);
}

.sheet-cta {
  background: linear-gradient(135deg, var(--text-dark) 0%, color-mix(in oklch, var(--text-dark), var(--primary) 40%) 100%);
}

.sheet-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--primary-dark);
  padding-top: 72px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: blur(1px);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
  width: 100%;
}

.hero-clip-heading-wrap {
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.hero-clip-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  background-size: cover;
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: brightness(1.6) saturate(1.2);
}

.hero-sub-content {
  max-width: 640px;
}

.hero-descriptor {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--primary-xlight);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: var(--text-xs);
}

.hero-body-text {
  font-size: var(--text-lg);
  color: color-mix(in oklch, white, transparent 20%);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: color-mix(in oklch, white, transparent 40%);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-bounce {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================
   BUTTONS / ACTIONS
   ============================================ */
.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--text-base);
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.primary-action:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.primary-action:active { transform: translateY(0); }

.primary-action--light {
  background: white;
  color: var(--primary);
}

.primary-action--light:hover {
  background: var(--primary-ultra);
  color: var(--primary-dark);
}

.primary-action--large {
  padding: 1.1rem 2.5rem;
  font-size: var(--text-md);
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 2rem;
  background: color-mix(in oklch, white, transparent 85%);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--text-base);
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1.5px solid color-mix(in oklch, white, transparent 65%);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.secondary-action:hover {
  background: color-mix(in oklch, white, transparent 75%);
  transform: translateY(-2px);
  color: white;
}

.ghost-action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: color-mix(in oklch, white, transparent 20%);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--text-base);
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1.5px solid color-mix(in oklch, white, transparent 65%);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.ghost-action:hover {
  background: color-mix(in oklch, white, transparent 90%);
  color: white;
  transform: translateY(-2px);
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.intro-text-col { padding-right: var(--space-lg); }

.image-frame {
  position: relative;
}

.image-frame::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  background: var(--primary-ultra);
  border-radius: var(--radius-lg);
  z-index: 0;
  border: 2px solid var(--border-subtle);
}

.image-frame-accent {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: var(--radius-md);
  z-index: 2;
  opacity: 0.15;
}

.content-image {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.content-image:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   SERVICE EXPAND CARDS
   ============================================ */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-expand-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-subtle);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.service-expand-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}

.service-card-front {
  padding: var(--space-lg);
}

.service-card-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--primary-ultra);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-expand-card:hover .service-card-icon-wrap {
  background: var(--primary);
  transform: rotate(-5deg) scale(1.1);
}

.service-icon {
  font-size: 1.5rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.service-expand-card:hover .service-icon { color: white; }

.service-card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-card-teaser {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.card-expand-hint {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-expand-hint i {
  transition: transform 0.3s ease;
}

.service-expand-card.is-expanded .card-expand-hint i {
  transform: rotate(180deg);
}

.service-card-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 var(--space-lg);
  border-top: 0px solid var(--border-subtle);
}

.service-expand-card.is-expanded .service-card-expanded {
  max-height: 300px;
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  border-top-width: 1px;
}

.service-card-expanded p {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-sm);
  color: var(--text-mid);
}

.feature-list li i {
  color: var(--secondary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============================================
   WORKFLOW DIAGRAM
   ============================================ */
.workflow-diagram {
  display: flex;
  gap: 0;
  align-items: stretch;
  position: relative;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.workflow-node {
  position: relative;
  margin-bottom: var(--space-md);
}

.workflow-icon-wrap {
  width: 72px;
  height: 72px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--primary-xlight);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.workflow-step:hover .workflow-icon-wrap {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.workflow-icon {
  font-size: 1.75rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.workflow-step:hover .workflow-icon {
  animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.workflow-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: white;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workflow-content {
  text-align: center;
  flex: 1;
}

.workflow-title {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.workflow-desc {
  font-size: var(--text-xs);
  color: var(--text-light);
  line-height: 1.6;
}

.workflow-connector {
  position: absolute;
  top: 34px;
  right: -16px;
  z-index: 2;
  color: var(--primary-light);
  font-size: 1rem;
}

.workflow-step--last .workflow-connector { display: none; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.hiw-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-subtle);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.hiw-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.hiw-step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-ultra);
  line-height: 1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.05em;
}

.hiw-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--primary-ultra);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: background 0.3s ease, transform 0.3s ease;
}

.hiw-card:hover .hiw-icon-wrap {
  background: var(--primary);
  transform: rotate(-8deg);
}

.hiw-icon {
  font-size: 1.75rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.hiw-card:hover .hiw-icon { color: white; }

.hiw-title {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.hiw-text {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.hiw-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.hiw-card:hover .hiw-image { transform: scale(1.03); }

/* ============================================
   PLATFORM SECTION
   ============================================ */
.platform-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.section-heading--light { color: white; }

.platform-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.platform-feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.platform-feat-icon {
  font-size: 1.5rem;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 0.2rem;
  transition: transform 0.3s ease;
}

.platform-feature-item:hover .platform-feat-icon {
  transform: scale(1.2) rotate(-10deg);
}

.platform-feature-item strong {
  display: block;
  font-weight: 600;
  color: white;
  margin-bottom: 0.3rem;
}

.platform-feature-item p {
  font-size: var(--text-sm);
  color: color-mix(in oklch, white, transparent 30%);
  line-height: 1.6;
  margin: 0;
}

.platform-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.platform-image:hover { transform: scale(1.02); }

/* ============================================
   COMPLIANCE SECTION
   ============================================ */
.compliance-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.compliance-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-dark);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.compliance-badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--primary-light);
}

.compliance-badge i {
  color: var(--primary);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.compliance-badge:hover i { transform: scale(1.2); }

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in oklch, var(--primary), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-heading {
  font-size: var(--text-4xl);
  color: white;
  margin-bottom: var(--space-md);
}

.cta-text {
  font-size: var(--text-md);
  color: color-mix(in oklch, white, transparent 25%);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.cta-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--text-dark);
  color: color-mix(in oklch, white, transparent 30%);
}

.footer-stats-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background: color-mix(in oklch, var(--primary-dark), transparent 30%);
  border-bottom: 1px solid color-mix(in oklch, white, transparent 88%);
  flex-wrap: wrap;
}

.footer-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: color-mix(in oklch, white, transparent 20%);
  letter-spacing: 0.03em;
}

.footer-stat i {
  color: var(--accent-light);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.footer-stat:hover i { transform: scale(1.2) rotate(-10deg); }

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-xl);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  margin-bottom: var(--space-md);
}

.footer-logo { width: 32px; height: 32px; opacity: 0.9; }

.footer-brand span {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  color: white;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: color-mix(in oklch, white, transparent 40%);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.footer-address {
  font-size: var(--text-sm);
  color: color-mix(in oklch, white, transparent 40%);
  line-height: 1.8;
}

.footer-address a {
  color: color-mix(in oklch, white, transparent 30%);
  transition: color 0.2s ease;
}

.footer-address a:hover { color: white; }

.footer-nav-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-list a {
  font-size: var(--text-sm);
  color: color-mix(in oklch, white, transparent 40%);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}

.footer-nav-list a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid color-mix(in oklch, white, transparent 88%);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: color-mix(in oklch, white, transparent 55%);
}

.footer-location {
  font-size: var(--text-xs);
  color: color-mix(in oklch, white, transparent 55%);
}

/* ============================================
   INNER HERO (sub-pages)
   ============================================ */
.inner-hero {
  padding-top: calc(72px + var(--space-3xl)) !important;
  padding-bottom: var(--space-3xl) !important;
}

.inner-hero-content { max-width: 700px; }

.inner-hero-heading {
  font-size: var(--text-4xl);
  color: white;
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.inner-hero-text {
  font-size: var(--text-lg);
  color: color-mix(in oklch, white, transparent 25%);
  line-height: 1.7;
}

/* ============================================
   PHILOSOPHY PAGE
   ============================================ */
.philosophy-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.philosophy-text, .philosophy-image { }

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.principle-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-warm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.principle-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.principle-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--accent-ultra);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: background 0.3s ease, transform 0.3s ease;
}

.principle-card:hover .principle-icon-wrap {
  background: var(--accent);
  transform: rotate(-8deg) scale(1.1);
}

.principle-icon {
  font-size: 1.5rem;
  color: var(--accent);
  transition: color 0.3s ease;
}

.principle-card:hover .principle-icon { color: white; }

.principle-title {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.principle-text {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.75;
}

.visual-break-layout { display: flex; justify-content: center; }

.quote-block {
  max-width: 700px;
  text-align: center;
  padding: var(--space-xl);
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-xlight);
  margin-bottom: var(--space-md);
}

.philosophy-quote {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  font-style: normal;
}

.quote-source {
  font-size: var(--text-sm);
  color: var(--text-light);
  font-style: italic;
}

.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* ============================================
   ANGEBOT PAGE
   ============================================ */
.module-layout { margin-bottom: 0; }

.module-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.module-number {
  font-family: 'Unbounded', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--primary-ultra);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.05em;
}

.module-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.module-content-grid--reversed .module-text { order: 2; }
.module-content-grid--reversed .module-image { order: 1; }

.module-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: var(--space-lg);
}

.module-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-mid);
  font-weight: 500;
}

.module-feature i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
  transition: transform 0.3s ease;
}

.module-feature:hover i { transform: scale(1.3) rotate(-10deg); }

/* ============================================
   STANDORTE PAGE
   ============================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

.location-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border-subtle);
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
}

.location-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--primary-ultra);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-icon { font-size: 1.5rem; color: var(--primary); }

.location-name {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-dark);
}

.location-label {
  font-size: var(--text-xs);
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.location-detail-row {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.location-detail-row i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.location-detail-row strong {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.location-detail-row p {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

.location-detail-row a {
  color: var(--primary);
  font-size: var(--text-sm);
}

.location-cta { width: 100%; justify-content: center; }

.location-map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.region-info { }

.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.region-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-warm);
}

.region-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
  display: block;
  transition: transform 0.3s ease;
}

.region-item:hover .region-icon { transform: scale(1.2) rotate(-10deg); }

.region-item h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.region-item p {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-main { padding-top: 72px; }

.contact-facts-strip {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background: var(--primary);
  flex-wrap: wrap;
}

.contact-fact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-sm);
  color: color-mix(in oklch, white, transparent 15%);
}

.contact-fact i { color: var(--accent-light); }
.contact-fact a { color: color-mix(in oklch, white, transparent 15%); }
.contact-fact a:hover { color: white; }

.contact-form-section { padding-top: var(--space-3xl) !important; }

.contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.contact-form-header {
  margin-bottom: var(--space-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-dark);
}

.required-mark { color: var(--accent); }

.form-input, .form-textarea {
  width: 100%;
  padding: 0.875rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  color: var(--text-dark);
  background: white;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-ultra);
}

.form-input:invalid:not(:placeholder-shown),
.form-textarea:invalid:not(:placeholder-shown) {
  border-color: var(--accent);
}

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

.form-helper {
  font-size: var(--text-xs);
  color: var(--text-light);
  line-height: 1.5;
}

.form-error {
  font-size: var(--text-xs);
  color: var(--accent-dark);
  display: none;
  font-weight: 500;
}

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

.form-field-group--checkbox { flex-direction: row; align-items: flex-start; flex-wrap: wrap; gap: 0.4rem; }

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  flex: 1;
}

.form-checkbox { display: none; }

.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-subtle);
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative;
}

.form-checkbox:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.form-checkbox:checked + .checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.65rem;
}

.checkbox-text {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.6;
}

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

.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1.1rem 2rem;
  font-size: var(--text-md);
  border-radius: var(--radius-md);
  margin-top: var(--space-sm);
}

.contact-map-section { }

.map-header { margin-bottom: var(--space-xl); }

.map-container iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-main { padding-top: 72px; }

.thanks-section {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.thanks-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.thanks-quote-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border-subtle);
  position: relative;
}

.thanks-quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.thanks-quote-icon {
  font-size: 2.5rem;
  color: var(--primary-xlight);
  margin-bottom: var(--space-md);
}

.thanks-quote {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  font-style: normal;
}

.thanks-quote-source {
  font-size: var(--text-sm);
  color: var(--text-light);
  font-style: italic;
}

.thanks-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.thanks-icon-wrap { }

.thanks-check-icon {
  font-size: 4rem;
  color: var(--secondary);
  animation: checkPop 0.6s ease 0.3s both;
}

@keyframes checkPop {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.thanks-heading {
  font-size: var(--text-3xl);
  color: var(--text-dark);
}

.thanks-text {
  font-size: var(--text-md);
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  padding-top: calc(72px + var(--space-xl)) !important;
  padding-bottom: var(--space-xl) !important;
}

.legal-hero-heading {
  font-size: var(--text-4xl);
  color: white;
  margin-bottom: var(--space-sm);
}

.legal-hero-sub {
  font-size: var(--text-sm);
  color: color-mix(in oklch, white, transparent 35%);
}

.legal-content { padding-top: var(--space-xl) !important; }

.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.legal-intro {
  font-size: var(--text-base);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background: var(--primary-ultra);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}


.accordion-item {
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s ease;
}

.accordion-item:hover { box-shadow: var(--shadow-sm); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
font-family: 'Unbounded', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease;
}

.accordion-trigger:hover { background: var(--primary-ultra); color: var(--primary); }

.accordion-item--open .accordion-trigger { color: var(--primary); background: var(--primary-ultra); }

.accordion-chevron {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.accordion-item--open .accordion-chevron,
.accordion-item.is-open .accordion-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 var(--space-lg);
}

.accordion-item--open .accordion-body,
.accordion-item.is-open .accordion-body {
  max-height: 2000px;
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.accordion-body p {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.accordion-body p:last-child { margin-bottom: 0; }

.accordion-body ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.accordion-body ul li {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}

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

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-xs);
  margin-top: var(--space-sm);
}

.cookie-table th {
  background: var(--primary-ultra);
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.6rem 0.8rem;
  text-align: left;
  border: 1px solid var(--border-subtle);
}

.cookie-table td {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border-subtle);
  color: var(--text-mid);
}

.cookie-table tr:nth-child(even) td { background: var(--paper-warm); }

/* ============================================
   IMPRESSUM
   ============================================ */
.impressum-wrap { }

.impressum-section-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--primary);
  margin: var(--space-xl) 0 var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-ultra);
}

.impressum-section-heading:first-child { margin-top: 0; }

.impressum-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
}

.impressum-table th {
  width: 35%;
  text-align: left;
  padding: 0.6rem 1rem 0.6rem 0;
  color: var(--text-light);
  font-weight: 500;
  vertical-align: top;
  border-bottom: 1px solid var(--border-subtle);
}

.impressum-table td {
  padding: 0.6rem 0;
  color: var(--text-mid);
  vertical-align: top;
  border-bottom: 1px solid var(--border-subtle);
}

.impressum-table a { color: var(--primary); }

.impressum-list {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.impressum-list li {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}

.impressum-wrap > p {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MICRO-ANIMATIONS
   ============================================ */
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

@keyframes iconSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes iconPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.service-icon:hover { animation: iconBounce 0.5s ease; }
.workflow-icon:hover { animation: iconSpin 0.6s ease; }
.hiw-icon:hover { animation: iconPop 0.4s ease; }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .how-it-works-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { gap: var(--space-xl); }
  .platform-preview-grid { gap: var(--space-xl); }
  .compliance-layout { gap: var(--space-xl); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .footer-brand-col { grid-column: 1 / -1; }
  .workflow-diagram { flex-wrap: wrap; gap: var(--space-lg); }
  .workflow-step { flex: 0 0 calc(50% - var(--space-sm)); }
  .workflow-connector { display: none; }
}

@media (max-width: 900px) {
  .intro-grid,
  .philosophy-intro-grid,
  .approach-layout,
  .platform-preview-grid,
  .compliance-layout,
  .module-content-grid,
  .module-content-grid--reversed { grid-template-columns: 1fr; }

  .module-content-grid--reversed .module-text { order: unset; }
  .module-content-grid--reversed .module-image { order: unset; }

  .intro-text-col { padding-right: 0; }

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

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

  .compliance-badges { grid-template-columns: 1fr 1fr; }

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

  .module-header { flex-direction: column; gap: var(--space-sm); }
  .module-number { font-size: 3rem; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 4rem;
    --space-xl: 3rem;
  }

  .nav-links { display: none; }
  .mobile-menu-trigger { display: flex; }

  .nav-container { padding: 0 var(--space-md); }
  .sheet-inner { padding: 0 var(--space-md); }

  .hero-content-wrap { padding: var(--space-xl) var(--space-md) var(--space-lg); }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .service-cards-grid { grid-template-columns: 1fr; }
  .how-it-works-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }

  .workflow-diagram { flex-direction: column; gap: var(--space-lg); }
  .workflow-step { flex: 1 1 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-stats-bar { gap: var(--space-md); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-facts-strip { flex-direction: column; gap: var(--space-sm); align-items: center; text-align: center; }

  .cta-actions { flex-direction: column; align-items: center; }

  .compliance-badges { grid-template-columns: 1fr; }

  .thanks-quote-card { padding: var(--space-lg) var(--space-md); }
  .thanks-quote { font-size: var(--text-lg); }

  .platform-preview-grid { grid-template-columns: 1fr; }

  .legal-wrap { padding: 0 var(--space-sm); }

  .accordion-trigger { padding: var(--space-sm) var(--space-md); font-size: var(--text-xs); }
  .accordion-body { padding: 0 var(--space-md); }
  .accordion-item.is-open .accordion-body,
  .accordion-item--open .accordion-body { padding: var(--space-sm) var(--space-md) var(--space-md); }
}

@media (max-width: 480px) {
  .gallery-strip { grid-template-columns: 1fr; }
  .hero-clip-heading { font-size: clamp(2.5rem, 15vw, 5rem); }
  .contact-form-wrap { padding: 0 var(--space-sm); }
  .module-number { font-size: 2.5rem; }
  .hiw-card { padding: var(--space-lg) var(--space-md); }
}

/* ============================================
   UTILITY
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.info-grid { }