/* ═══════════════════════════════════════
   CADITEC Medical + Technic GmbH
   Stylesheet — caditec-styles.css
   Ausgelagert aus index.html
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   DESIGN TOKENS — Caditec Brand
═══════════════════════════════════════ */
:root {
  /* Brand */
  --navy:       #223452;
  --navy-deep:  #172438;
  --navy-mid:   #2E4A70;
  --navy-light: #D6E0ED;
  --navy-pale:  #EDF1F7;
  --red:        #D3101B;
  --red-mid:    #E84040;
  --red-light:  #FDEAEA;
  --red-pale:   #FFF5F5;

  /* Neutrals */
  --ink:        #0F1923;
  --slate:      #3A4A5C;
  --mist:       #7A8A9A;
  --silver:     #B8C4D0;
  --cloud:      #E8EEF4;
  --fog:        #F4F7FA;
  --white:      #FFFFFF;

  /* Accents */
  --green:      #1A6B3C;
  --green-light:#E8F5EE;
  --gold:       #B8922A;
  --gold-light: #F7F0E0;

  /* Type */
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  /* Spacing */
  --max: 1160px;
  --gutter: 40px;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════════
   TOP HEADER BAR
═══════════════════════════════════════ */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 101;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.top-bar-tel {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.15s;
}
.top-bar-tel:hover { color: var(--white); }
.top-bar-tel svg { opacity: 0.6; flex-shrink: 0; }
.top-bar-actions { display: flex; align-items: center; gap: 8px; }
.btn-topbar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-topbar-outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-topbar-outline:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-topbar-primary {
  background: var(--red);
  color: var(--white);
}
.btn-topbar-primary:hover {
  background: #B80E18;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: sticky;
  top: 40px;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cloud);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo-fallback { display: flex; align-items: baseline; gap: 0; }
.nav-logo-fallback .logo-main {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.nav-logo-fallback .logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-left: 4px;
  margin-bottom: -2px;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); background: var(--navy-pale); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links .nav-esg a { color: var(--green); }
.nav-links .nav-esg a:hover { background: var(--green-light); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy-light);
}
.btn-outline:hover { background: var(--navy-pale); border-color: var(--navy); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover {
  background: #B80E18;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(211,16,27,0.3);
}
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(34,52,82,0.3);
}
.btn-lg { font-size: 16px; padding: 14px 28px; border-radius: 10px; }
.btn-green {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-green:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── DROPDOWN NAV ── */
.nav-links li { position: relative; }
.nav-links .has-dropdown > a { display: flex; align-items: center; gap: 6px; }
.nav-links .has-dropdown > a .dd-caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.4;
  transition: transform 0.2s, opacity 0.2s;
  flex-shrink: 0;
}
.nav-links .has-dropdown:hover > a .dd-caret { transform: rotate(180deg); opacity: 0.8; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 0.5px solid var(--cloud);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(34,52,82,0.13);
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.18s ease;
  z-index: 200;
  overflow: hidden;
}
.nav-dropdown.wide { min-width: 244px; max-height: 420px; overflow-y: auto; }
.nav-links .has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-group { padding: 6px 0; border-bottom: 0.5px solid var(--fog); }
.nav-dropdown-group:last-child { border-bottom: none; }
.nav-dropdown-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mist);
  padding: 6px 16px 3px; display: block;
}
.nav-dropdown a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 16px; font-size: 13px; font-weight: 400;
  color: var(--slate); transition: background 0.12s, color 0.12s;
  background: none; border-radius: 0; gap: 10px;
}
.nav-dropdown a:hover { background: var(--navy-pale); color: var(--navy); }
.nav-dropdown a.active { color: var(--navy); font-weight: 500; }
.nav-dropdown a .dd-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--navy); opacity: 0.25;
  flex-shrink: 0; transition: opacity 0.12s;
}
.nav-dropdown a:hover .dd-dot { opacity: 0.7; }
.nav-dropdown a.active .dd-dot { opacity: 0.7; background: var(--red); }
.dd-ext { font-size: 10px; color: var(--silver); margin-left: auto; flex-shrink: 0; }

/* ═══════════════════════════════════════
   LANGUAGE SWITCHER
═══════════════════════════════════════ */
.lang-dropdown { position: relative; }
.lang-trigger {
  display: flex; align-items: center; gap: 6px;
  background: none; border: 1.5px solid var(--cloud);
  border-radius: 8px; padding: 7px 12px;
  cursor: pointer; font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  color: var(--navy); transition: all 0.15s; white-space: nowrap;
}
.lang-trigger:hover { border-color: var(--navy); background: var(--navy-pale); }
.lang-trigger svg { width: 10px; height: 6px; stroke: var(--mist); transition: transform 0.2s; }
.lang-dropdown.open .lang-trigger svg { transform: rotate(180deg); }
.lang-flag { font-size: 15px; line-height: 1; }
.lang-current { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; color: var(--navy); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--cloud);
  border-radius: 12px; box-shadow: 0 8px 32px rgba(34,52,82,0.12);
  overflow: hidden; min-width: 160px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s ease; z-index: 200;
}
.lang-dropdown.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; font-size: 14px; font-weight: 500;
  color: var(--slate); transition: background 0.15s;
  border-bottom: 1px solid var(--fog);
}
.lang-menu a:last-child { border-bottom: none; }
.lang-menu a:hover { background: var(--navy-pale); color: var(--navy); }
.lang-menu a.active { background: var(--navy-pale); color: var(--navy); font-weight: 600; }
.lang-name { flex: 1; }
.lang-check {
  width: 14px; height: 14px; stroke: var(--navy);
  fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round; opacity: 0;
}
.lang-menu a.active .lang-check { opacity: 1; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 110% 60%, rgba(46,74,112,0.6) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at -10% 20%, rgba(211,16,27,0.08) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-accent {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 60%);
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
}
.hero-content { padding-bottom: 80px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(211,16,27,0.12);
  border: 1px solid rgba(211,16,27,0.25);
  border-radius: 100px; padding: 6px 14px 6px 10px; margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-badge span {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: #F08080;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 600; line-height: 1.08;
  color: var(--white); margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--silver); }
.hero-sub {
  font-size: 17px; line-height: 1.7; color: var(--silver);
  max-width: 480px; margin-bottom: 40px; font-weight: 300;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.92);
  font-weight: 500; letter-spacing: 0.01em;
}
.trust-item::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #5BA87A; flex-shrink: 0;
  box-shadow: 0 0 8px rgba(91,168,122,0.8);
}
.trust-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.22); }
.hero-visual { align-self: end; position: relative; }
.img-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 16px 16px 0 0;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px;
  color: rgba(255,255,255,0.3); font-size: 13px; text-align: center; padding: 20px;
}
.img-placeholder svg { opacity: 0.3; }
.img-placeholder-label { font-size: 11px; opacity: 0.5; font-style: italic; }
.hero-stat {
  position: absolute; background: rgba(255,255,255,0.95);
  border-radius: 12px; padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3); backdrop-filter: blur(8px);
}
.hero-stat.stat-left { left: -24px; bottom: 80px; }
.hero-stat.stat-right { right: -16px; bottom: 160px; }
.hero-stat-num { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--navy); line-height: 1; }
.hero-stat-num sup { font-size: 14px; }
.hero-stat-label { font-size: 11px; color: var(--mist); margin-top: 2px; }

/* ═══════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════ */
.trust-strip {
  background: linear-gradient(90deg, var(--white) 0%, var(--fog) 15%, var(--fog) 85%, var(--white) 100%);
  padding: 20px 0; position: relative;
}
.trust-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 30%, var(--red) 70%, transparent 100%);
}
.trust-strip::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 30%, var(--red) 70%, transparent 100%);
}
.trust-strip-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.trust-strip-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mist); flex-shrink: 0;
}
.trust-strip-items { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-ref {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--navy); letter-spacing: 0.01em;
}
.trust-ref svg {
  width: 15px; height: 15px; stroke: #5BA87A; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; filter: drop-shadow(0 0 4px rgba(91,168,122,0.6));
}
.trust-strip-sep { width: 1px; height: 18px; background: var(--cloud); flex-shrink: 0; }

/* ═══════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════ */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red); margin-bottom: 12px;
}
.section-label.green { color: var(--green); }
.section-label.navy  { color: var(--navy); }
.section-title {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600; line-height: 1.15; color: var(--navy); letter-spacing: -0.02em;
}
.section-title em { font-style: italic; font-weight: 300; }
.section-body { font-size: 16px; line-height: 1.8; color: var(--slate); max-width: 560px; }

/* ═══════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════ */
.products { background: var(--white); }
.products-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 56px;
}
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--cloud); transition: all 0.25s;
  background: var(--white); display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(34,52,82,0.10);
  border-color: var(--navy-light);
}
.product-card-img {
  aspect-ratio: 4/3; background: var(--fog);
  border-bottom: 1px solid var(--cloud);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; color: var(--silver);
  font-size: 12px; text-align: center; padding: 16px;
  position: relative; overflow: hidden;
}
.product-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-pale) 0%, var(--white) 100%);
  opacity: 0.5;
}
.product-card-img .ph-icon { font-size: 32px; position: relative; z-index: 1; }
.product-card-img .ph-text { position: relative; z-index: 1; font-style: italic; opacity: 0.6; }
.product-card.featured { border-color: var(--navy-light); box-shadow: 0 2px 24px rgba(34,52,82,0.08); }
.product-card.featured .product-card-img { background: linear-gradient(135deg, var(--navy-pale) 0%, var(--cloud) 100%); }
.product-card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.product-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px;
  border-radius: 100px; margin-bottom: 12px; width: fit-content;
}
.product-tag.tag-primary { background: var(--navy-pale); color: var(--navy); }
.product-tag.tag-esg { background: var(--green-light); color: var(--green); }
.product-card h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  color: var(--navy); margin-bottom: 10px; line-height: 1.25;
}
.product-card p { font-size: 14px; line-height: 1.7; color: var(--mist); flex: 1; margin-bottom: 20px; }
.product-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--navy); transition: gap 0.2s;
}
.product-card-link:hover { gap: 10px; }
.product-card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ═══════════════════════════════════════
   ESG TEASER BAND
═══════════════════════════════════════ */
.esg-band {
  background: linear-gradient(135deg, #0F2D1C 0%, #1A6B3C 60%, #1E4A28 100%);
  position: relative; overflow: hidden;
}
.esg-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.esg-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.esg-band-text h2 {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 40px);
  font-weight: 600; color: var(--white); line-height: 1.15;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.esg-band-text h2 em { font-style: italic; font-weight: 300; color: #90C9A0; }
.esg-band-text p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 520px; }
.esg-metrics { display: flex; gap: 32px; flex-shrink: 0; }
.esg-metric { text-align: center; }
.esg-metric-num { font-family: var(--serif); font-size: 42px; font-weight: 600; color: var(--white); line-height: 1; }
.esg-metric-num sub { font-size: 18px; font-weight: 300; color: #90C9A0; }
.esg-metric-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; line-height: 1.4; }
.esg-band-cta { margin-top: 28px; }

/* ═══════════════════════════════════════
   WHY CADITEC
═══════════════════════════════════════ */
.why { background: var(--fog); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img { aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; position: relative; }
.why-img .img-placeholder { height: 100%; border-radius: 20px; background: var(--cloud); border-color: var(--silver); color: var(--mist); }
.why-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--navy); color: var(--white);
  border-radius: 16px; padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(34,52,82,0.3); text-align: center;
}
.why-badge-num { font-family: var(--serif); font-size: 36px; font-weight: 600; line-height: 1; }
.why-badge-label { font-size: 11px; color: var(--silver); margin-top: 4px; line-height: 1.4; }
.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point { display: flex; gap: 18px; align-items: flex-start; }
.why-point-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--cloud);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; box-shadow: 0 2px 8px rgba(34,52,82,0.06);
}
.why-point-body h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.why-point-body p { font-size: 14px; line-height: 1.65; color: var(--mist); }

/* ═══════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════ */
.testimonial-section { background: var(--navy); position: relative; overflow: hidden; }
.testimonial-section::before {
  content: '\201C'; position: absolute; right: 5%; top: -40px;
  font-family: var(--serif); font-size: 320px; line-height: 1;
  color: rgba(255,255,255,0.04); pointer-events: none;
}
.testimonial-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.testimonial-content blockquote {
  font-family: var(--serif); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300; font-style: italic; color: var(--white);
  line-height: 1.55; margin-bottom: 32px;
}
.testimonial-attr { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.testimonial-attr-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial-attr-text span { font-size: 13px; color: var(--silver); }
.testimonial-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tstats-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 28px 20px; text-align: center; transition: background 0.2s;
}
.tstats-card:hover { background: rgba(255,255,255,0.1); }
.tstats-num { font-family: var(--serif); font-size: 40px; font-weight: 600; color: var(--white); line-height: 1; margin-bottom: 8px; }
.tstats-num sup { font-size: 18px; font-weight: 300; }
.tstats-label { font-size: 12px; color: var(--silver); line-height: 1.4; }
.tstats-card.accent { background: var(--red); border-color: var(--red); }
.tstats-card.accent .tstats-label { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════
   SONOWELT TEASER
═══════════════════════════════════════ */
.sonowelt-band { background: var(--navy-pale); border-top: 1px solid var(--cloud); border-bottom: 1px solid var(--cloud); }
.sonowelt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sonowelt-content h2 {
  font-family: var(--serif); font-size: 36px; font-weight: 600;
  color: var(--navy); margin-bottom: 16px; line-height: 1.2; letter-spacing: -0.02em;
}
.sonowelt-content p { font-size: 15px; line-height: 1.75; color: var(--slate); margin-bottom: 24px; }
.sonowelt-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.sonowelt-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--navy); }
.sonowelt-feat::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--navy-mid); flex-shrink: 0; }
.showrooms { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.showroom-card { background: var(--white); border: 1px solid var(--cloud); border-radius: 12px; padding: 16px 18px; box-shadow: 0 2px 8px rgba(34,52,82,0.04); }
.showroom-card h4 { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.showroom-card p { font-size: 12px; color: var(--mist); line-height: 1.4; }

/* ═══════════════════════════════════════
   BOOKING SECTION
═══════════════════════════════════════ */
.booking-section { background: var(--fog); border-top: 1px solid var(--cloud); }
.booking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.booking-content h2 {
  font-family: var(--serif); font-size: 36px; font-weight: 600;
  color: var(--navy); margin-bottom: 14px; line-height: 1.2; letter-spacing: -0.02em;
}
.booking-content p { font-size: 15px; line-height: 1.75; color: var(--slate); margin-bottom: 28px; }
.booking-types { display: flex; flex-direction: column; gap: 12px; }
.booking-type {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--cloud);
  border-radius: 12px; padding: 16px 20px;
  cursor: pointer; transition: all 0.2s; text-align: left; width: 100%;
}
.booking-type:hover { border-color: var(--navy-light); box-shadow: 0 4px 16px rgba(34,52,82,0.08); transform: translateX(4px); }
.booking-type-icon { font-size: 24px; flex-shrink: 0; }
.booking-type-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.booking-type-text span { font-size: 12px; color: var(--mist); }
.booking-type-arrow { margin-left: auto; color: var(--silver); font-size: 18px; }
.zeeg-placeholder {
  background: var(--white); border: 1px solid var(--cloud);
  border-radius: 16px; padding: 40px 32px; text-align: center;
  box-shadow: 0 4px 24px rgba(34,52,82,0.06);
}
.zeeg-placeholder h3 { font-family: var(--serif); font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.zeeg-placeholder p { font-size: 14px; color: var(--mist); margin-bottom: 24px; }
.cal-mock { background: var(--fog); border: 1px solid var(--cloud); border-radius: 12px; padding: 20px; margin-bottom: 20px; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cal-month { font-size: 14px; font-weight: 600; color: var(--navy); }
.cal-nav { display: flex; gap: 4px; }
.cal-nav button { width: 28px; height: 28px; border-radius: 6px; border: 1px solid var(--cloud); background: var(--white); cursor: pointer; font-size: 12px; color: var(--slate); }
.cal-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.cal-day { text-align: center; font-size: 12px; padding: 8px 6px; border-radius: 8px; cursor: pointer; transition: all 0.15s; border: 1px solid transparent; }
.cal-day.available { color: var(--slate); background: var(--white); border-color: var(--cloud); }
.cal-day.available:hover { border-color: var(--navy); color: var(--navy); }
.cal-day.selected { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cal-day.busy { color: var(--silver); text-decoration: line-through; }
.cal-day-num { font-weight: 600; }
.cal-day-label { font-size: 10px; opacity: 0.7; }
.zeeg-note { font-size: 12px; color: var(--mist); display: flex; align-items: center; gap: 6px; justify-content: center; }
.zeeg-note::before { content: '🔒'; font-size: 11px; }

/* ═══════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════ */
.contact-section { background: var(--white); border-top: 1px solid var(--cloud); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 {
  font-family: var(--serif); font-size: 36px; font-weight: 600;
  color: var(--navy); margin-bottom: 14px; line-height: 1.2; letter-spacing: -0.02em;
}
.contact-info p { font-size: 15px; line-height: 1.75; color: var(--slate); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; }
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy-pale); display: flex; align-items: center;
  justify-content: center; font-size: 16px; flex-shrink: 0;
}
.contact-detail-body strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.contact-detail-body a,
.contact-detail-body p { font-size: 14px; color: var(--slate); line-height: 1.5; }
.contact-detail-body a:hover { color: var(--navy); text-decoration: underline; }
.contact-form { background: var(--fog); border: 1px solid var(--cloud); border-radius: 20px; padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }
.form-label { font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--slate); }
.form-label .req { color: var(--red); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--cloud);
  border-radius: 10px; padding: 12px 14px; outline: none;
  transition: border-color 0.15s; width: 100%; appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(34,52,82,0.08); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8A9A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.form-option {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid var(--cloud);
  border-radius: 10px; padding: 12px 14px; cursor: pointer;
  font-size: 13px; font-weight: 500; color: var(--slate);
  transition: all 0.15s; user-select: none;
}
.form-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--navy); cursor: pointer; flex-shrink: 0; }
.form-option:has(input:checked) { border-color: var(--navy); background: var(--navy-pale); color: var(--navy); }
.form-option:hover { border-color: var(--navy-light); }
.form-option-icon { font-size: 16px; flex-shrink: 0; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-consent input { width: 16px; height: 16px; accent-color: var(--navy); margin-top: 2px; flex-shrink: 0; }
.form-consent label { font-size: 12px; color: var(--mist); line-height: 1.5; }
.form-consent a { color: var(--navy); text-decoration: underline; }
.form-submit { width: 100%; justify-content: center; font-size: 15px; padding: 14px; border-radius: 10px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success h3 { font-family: var(--serif); font-size: 24px; color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--mist); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { background: var(--navy-deep); color: var(--white); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: var(--silver); margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; list-style: none; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge   { animation: fadeUp 0.5s ease 0.1s both; }
.hero h1      { animation: fadeUp 0.6s ease 0.2s both; }
.hero-sub     { animation: fadeUp 0.6s ease 0.35s both; }
.hero-actions { animation: fadeUp 0.6s ease 0.5s both; }
.hero-trust   { animation: fadeUp 0.6s ease 0.65s both; }

.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.96); transition: opacity 0.5s ease, transform 0.5s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  /* Top-Bar: Tel-Text ausblenden, nur Icon + "Termin"-Button bleiben */
  .top-bar-tel span { display: none; }
  .btn-topbar-outline { display: none; }
  .hero-inner         { grid-template-columns: 1fr; }
  .hero-visual        { display: none; }
  .hero-content       { padding-bottom: 60px; }
  .products-header    { grid-template-columns: 1fr; gap: 24px; }
  .products-grid      { grid-template-columns: 1fr 1fr; }
  .esg-band-inner     { grid-template-columns: 1fr; gap: 40px; }
  .why-inner          { grid-template-columns: 1fr; }
  .why-img            { display: none; }
  .testimonial-inner  { grid-template-columns: 1fr; }
  .sonowelt-inner     { grid-template-columns: 1fr; }
  .booking-inner      { grid-template-columns: 1fr; }
  .contact-inner      { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .nav-links          { display: none; }
  .nav-hamburger      { display: flex; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  /* Top-Bar auf Smartphone komplett ausblenden */
  .top-bar { display: none; }
  /* Nav klebt jetzt ganz oben, kein Offset mehr */
  .nav { top: 0 !important; }
  .products-grid    { grid-template-columns: 1fr; }
  .esg-metrics      { flex-direction: column; gap: 16px; }
  .form-grid        { grid-template-columns: 1fr; }
  .form-group.full  { grid-column: span 1; }
  .form-options     { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .hero h1          { font-size: 34px; }
  .showrooms        { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   HAMBURGER BUTTON
═══════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger:hover { background: var(--navy-pale); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
/* Animated X when open */
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   MOBILE OVERLAY
═══════════════════════════════════════ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 35, 0.6);
  z-index: 149;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.is-visible {
  display: block;
}
.mobile-overlay.is-open {
  opacity: 1;
}

/* ═══════════════════════════════════════
   MOBILE MENU PANEL
═══════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: var(--white);
  z-index: 150;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(34,52,82,0.18);
  overflow: hidden;
}
.mobile-menu.is-open {
  transform: translateX(0);
}

/* Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--cloud);
  flex-shrink: 0;
  background: var(--white);
}
.mobile-menu-logo img { height: 32px; width: auto; }
.mobile-menu-close {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--fog); border: none; cursor: pointer;
  color: var(--slate); transition: all 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-close:hover { background: var(--cloud); color: var(--navy); }

/* Scrollable body */
.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0 16px;
  -webkit-overflow-scrolling: touch;
}

/* Direct links */
.mob-link {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  border-bottom: 1px solid var(--fog);
  transition: background 0.12s, color 0.12s;
  -webkit-tap-highlight-color: transparent;
}
.mob-link:hover, .mob-link:active { background: var(--navy-pale); color: var(--navy); }
.mob-link-esg { color: var(--green); }
.mob-link-esg:hover { background: var(--green-light); color: var(--green); }

/* Accordion items */
.mob-accordion { border-bottom: 1px solid var(--fog); }
.mob-accordion-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 20px;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  color: var(--slate); text-align: left;
  transition: background 0.12s, color 0.12s;
  -webkit-tap-highlight-color: transparent;
}
.mob-accordion-trigger:hover { background: var(--navy-pale); color: var(--navy); }
.mob-accordion-trigger[aria-expanded="true"] { color: var(--navy); background: var(--navy-pale); }
.mob-caret {
  width: 16px; height: 16px; flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--silver);
}
.mob-accordion-trigger[aria-expanded="true"] .mob-caret { transform: rotate(180deg); color: var(--navy); }

/* Accordion body */
.mob-accordion-body {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--fog);
}
.mob-accordion-body.is-open {
  max-height: 600px; /* large enough for all items */
}
.mob-sub-link {
  display: block;
  padding: 10px 20px 10px 32px;
  font-size: 14px;
  font-weight: 400;
  color: var(--slate);
  text-decoration: none;
  border-bottom: 1px solid var(--cloud);
  transition: background 0.12s, color 0.12s;
  -webkit-tap-highlight-color: transparent;
}
.mob-sub-link:last-child { border-bottom: none; }
.mob-sub-link:hover, .mob-sub-link:active { background: var(--navy-pale); color: var(--navy); }
.mob-sub-label {
  display: block;
  padding: 10px 20px 4px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  background: var(--fog);
}

/* Language section */
.mob-lang {
  padding: 20px 20px 8px;
}
.mob-lang-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mist); margin-bottom: 10px;
}
.mob-lang-options { display: flex; gap: 8px; }
.mob-lang-opt {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--slate);
  border: 1.5px solid var(--cloud); text-decoration: none;
  transition: all 0.15s; -webkit-tap-highlight-color: transparent;
}
.mob-lang-opt:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-pale); }
.mob-lang-opt.active { border-color: var(--navy); color: var(--navy); background: var(--navy-pale); font-weight: 600; }

/* Footer CTAs */
.mobile-menu-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--cloud);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  background: var(--white);
}
.mobile-menu-btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 12px 20px;
}

/* Prevent body scroll when menu open */
body.menu-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════
   RESPONSIVE — SHOW HAMBURGER
═══════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .top-bar-tel span { display: none; }
}

@media (max-width: 640px) {
  .top-bar-actions .btn-topbar-outline { display: none; }
}

/* ═══════════════════════════════════════
   ABSAUG / GENERIC PRODUCT PAGE STYLES
   (hero-facts, split-grid, feature-grid,
    faq, action-section, zeeg-mock, etc.)
═══════════════════════════════════════ */

/* ── Hero facts row ── */
.hero-facts { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; }
.hero-fact { flex: 1; padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.08); margin-right: 24px; }
.hero-fact:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.fact-num { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--white); line-height: 1; margin-bottom: 4px; }
.fact-num sup { font-size: 14px; font-weight: 300; color: var(--silver); }
.fact-label { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ── Product Hero (generic, reusable) ── */
.product-hero { background: var(--navy-deep); position: relative; overflow: hidden; padding: 72px 0 0; }
.product-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(46,74,112,0.5) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px); background-size: 60px 60px; }
.hero-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red) 0%, transparent 50%); }
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.hero-content { padding-bottom: 64px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; padding: 6px 16px; margin-bottom: 22px; font-size: 12px; font-weight: 600; color: var(--silver); }
.hero-content h1 { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); font-weight: 600; line-height: 1.1; color: var(--white); margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-content h1 em { font-style: italic; font-weight: 300; color: var(--silver); }
.hero-content > p { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.65); max-width: 460px; margin-bottom: 32px; font-weight: 300; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-visual { align-self: end; }
.img-ph-label { font-size: 11px; opacity: 0.45; font-style: italic; }

/* ── Split grid (2-col content layout) ── */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ── Feature grid + cards ── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.feature-card { background: var(--white); border-radius: 18px; padding: 28px 24px; border: 1.5px solid var(--cloud); box-shadow: 0 2px 12px rgba(34,52,82,0.04); transition: all 0.25s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(34,52,82,0.10); }
.feature-card:hover::before { transform: scaleX(1); }
.f-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--navy-pale); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.feature-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 13px; line-height: 1.65; color: var(--mist); }

/* ── Highlight box ── */
.highlight-box { padding: 18px 22px; background: var(--navy-pale); border-left: 3px solid var(--navy); border-radius: 0 10px 10px 0; font-size: 14px; color: var(--slate); line-height: 1.7; margin-top: 20px; }
.highlight-box strong { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 5px; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.faq-item { background: var(--fog); border: 1px solid var(--cloud); border-radius: 14px; overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; padding: 18px 22px; text-align: left; font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: background 0.15s; }
.faq-question:hover { background: var(--navy-pale); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--navy-pale); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: transform 0.25s, background 0.15s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; padding: 0 22px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 18px; }
.faq-answer p { font-size: 14px; line-height: 1.75; color: var(--mist); padding-top: 4px; }

/* ── Action section (dark CTA + form) ── */
.action-section { background: var(--navy-deep); border-top: 3px solid rgba(255,255,255,0.12); }
.action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.action-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 32px; }
.action-card-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.action-icon { font-size: 26px; flex-shrink: 0; width: 52px; height: 52px; background: rgba(255,255,255,0.08); border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.action-card-header h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 5px; }
.action-card-header p { font-size: 13px; color: var(--silver); line-height: 1.5; }
.action-form { display: flex; flex-direction: column; gap: 10px; }
.af-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.af-input { font-family: var(--sans); font-size: 14px; color: var(--white); background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 12px 14px; outline: none; transition: all 0.15s; width: 100%; appearance: none; }
.af-input::placeholder { color: rgba(255,255,255,0.35); }
.af-input:focus { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.1); }
.af-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.af-select option { background: var(--navy-deep); color: var(--white); }
.af-legal { font-size: 11px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 4px; }
.af-legal a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.af-success { display: none; text-align: center; padding: 32px 20px; color: var(--white); }
.af-success strong { display: block; font-size: 18px; margin-bottom: 8px; font-family: var(--serif); }
.af-success p { font-size: 14px; color: var(--silver); }

/* ── Zeeg / Meetergo calendar mock ── */
.zeeg-mock { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 20px; }
.zeeg-mock-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.zeeg-mock-month { font-size: 14px; font-weight: 600; color: var(--white); }
.zeeg-mock-nav { display: flex; gap: 4px; }
.zeeg-mock-nav button { width: 28px; height: 28px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); cursor: pointer; font-size: 14px; color: var(--silver); transition: background 0.15s; }
.zeeg-mock-nav button:hover { background: rgba(255,255,255,0.12); }
.zeeg-mock-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.zday { text-align: center; padding: 10px 6px; border-radius: 10px; cursor: pointer; transition: all 0.15s; border: 1px solid transparent; }
.zday span { display: block; font-size: 14px; font-weight: 600; }
.zday small { display: block; font-size: 10px; margin-top: 2px; opacity: 0.6; }
.zday.available { color: var(--white); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.zday.available:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
.zday.selected { background: var(--red); border-color: var(--red); color: var(--white); }
.zday.busy { color: rgba(255,255,255,0.2); cursor: default; text-decoration: line-through; }

/* ── Button ghost ── */
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* ── Transition delays ── */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ── Responsive additions ── */
@media (max-width: 960px) {
  .hero-inner, .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero-facts { flex-wrap: wrap; }
}

/* ── Section separator ── */
.section-separator { height: 2px; background: linear-gradient(90deg, rgba(23,36,56,0) 0%, var(--red) 25%, var(--red) 75%, rgba(23,36,56,0) 100%); }
