/* ============================================================
   PalDent Tech v3 — Ultimate Premium Medical Device
   Interactive 3D Explorer / Immersive Video / Surgical Precision
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:wght@400;500;600;700;800&display=swap');

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

:root {
  --white: #ffffff;
  --off-white: #f7f8fa;
  --cream: #f2f3f7;
  --warm-bg: #f4f5f9;
  --light: #e4e7ed;
  --mid: #c8ccd4;
  --titanium: #6b7280;
  --steel: #4c515b;
  --dark: #0d0e11;
  --navy: #0f1d3a;
  --deep: #0c1428;
  --accent: #2563eb;
  --accent-bright: #3b82f6;
  --accent-glow: rgba(37, 99, 235, 0.2);
  --accent-soft: rgba(37, 99, 235, 0.05);
  --accent-subtle: #eef4fd;
  --green: #5a9e3e;
  --green-light: #8fbe5a;
  --green-glow: rgba(90, 158, 62, 0.2);
  --green-soft: rgba(90, 158, 62, 0.06);
  --red: #c53030;
  --teal: #0d9488;
  --gold: #b9b181;

  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Montserrat', var(--font);
  --font-body: var(--font);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

body {
  font-family: var(--font-body);
  color: #555;
  background: var(--white);
  overflow-x: hidden;
  overscroll-behavior-x: none;
  max-width: 100vw;
  line-height: 1.65;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

/* ================================================================
   CUSTOM CURSOR GLOW (adds premium feel on desktop)
   ================================================================ */
.cursor-glow {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  mix-blend-mode: screen;
}
body:hover .cursor-glow { opacity: 0.4; }

/* ================================================================
   LOADER
   ================================================================ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--deep);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2rem;
  transition: opacity 1s var(--ease), visibility 1s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__logo {
  height: 200px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  object-fit: contain;
}
.loader__logo--heartbeat {
  animation: loaderHeartbeat 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.loader__bar {
  width: 180px; height: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px; overflow: hidden;
}
.loader__bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  border-radius: 1px;
  transition: width 0.3s;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}
@keyframes loaderHeartbeat {
  0% { transform: scale(1); opacity: 1; }
  25% { transform: scale(1.35); opacity: 1; }
  50% { transform: scale(0.95); opacity: 1; }
  70% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 clamp(2rem, 5vw, 4rem);
  height: 96px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s var(--ease-smooth);
}
.nav--transparent { background: transparent; }
.nav--solid {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.nav--dark-text .nav__link { color: var(--steel); }
.nav--dark-text .nav__link:hover { color: var(--dark); }
.nav--light-text .nav__link { color: rgba(255,255,255,0.65); }
.nav--light-text .nav__link:hover { color: #fff; }
.nav--light-text .nav__burger span { background: #fff; }
.nav--dark-text .nav__burger span { background: var(--dark); }

.nav__logo img { height: 200px; width: auto; object-fit: contain; transition: filter 0.4s; }
.nav--light-text .nav__logo img { filter: brightness(0) invert(1); }

.nav__links { display: flex; align-items: center; gap: 2.25rem; }
.nav__link {
  font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  position: relative;
}
.nav__link::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after { width: 100%; }

.nav__cta {
  padding: 0.55rem 1.35rem;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
}
.nav--light-text .nav__cta {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.nav--light-text .nav__cta:hover {
  background: var(--accent); border-color: var(--accent);
}
.nav--dark-text .nav__cta {
  background: var(--dark); color: #fff;
}
.nav--dark-text .nav__cta:hover {
  background: var(--accent);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.nav__burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 101;
}
.nav__burger span {
  display: block; position: absolute; left: 0; width: 100%; height: 1.5px;
  transition: all 0.35s var(--ease);
  border-radius: 1px;
}
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__burger span:nth-child(3) { bottom: 0; }
.nav__burger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.03em;
  border: none; border-radius: 8px;
  cursor: pointer; transition: all 0.35s var(--ease);
  text-decoration: none; position: relative; overflow: hidden;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--light { background: #fff; color: var(--dark); }
.btn--light:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.16); }
.btn--glass {
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}
.btn--glass:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: #1f2937; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: #1d4ed8; transform: translateY(-3px); box-shadow: 0 12px 40px var(--accent-glow); }
.btn--outline { background: transparent; color: var(--dark); border: 1.5px solid var(--light); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.06); }
.btn--large { padding: 1rem 2.25rem; font-size: 0.875rem; }
.btn--pill { border-radius: 100px; }

/* ================================================================
   HERO — Fullscreen, Apple/Dyson editorial style
   Company top, product name massive across full width, CTAs bottom
   ================================================================ */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 700px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  overflow: hidden; background: var(--deep);
}

/* Video fills entire screen */
.hero__video-bg {
  position: absolute; inset: 0; z-index: 1;
}
.hero__video-bg video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__video-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(3,8,21,0.65) 0%, rgba(3,8,21,0.3) 30%, rgba(3,8,21,0.35) 60%, rgba(3,8,21,0.75) 100%);
}

/* Centered hero block */
.hero__center {
  position: relative; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex: 1;
  text-align: center;
  padding: 0 clamp(1rem, 3vw, 2rem);
  gap: 0;
}

/* Company name — text, not logo */
.hero__company {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

/* Product name — massive */
.hero__product-name {
  margin-bottom: 1.5rem;
}
.hero__product-name-text {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 10rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: none;
  white-space: nowrap;
  text-shadow: 0 4px 60px rgba(0,0,0,0.3);
}
.hero__product-name-text .char {
  display: inline-block;
  will-change: transform, opacity;
}

/* Tagline under title */
.hero__tagline {
  font-size: 0.9375rem; font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Subtle floating effect on product name */
.hero__product-name {
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Buttons under tagline */
.hero__actions {
  display: flex; gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero__product-name-text {
    font-size: clamp(2.5rem, 10vw, 5rem);
    white-space: normal;
  }
}

/* Hero facts bar — inside hero at bottom edge */
.hero__facts {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
  padding: 1.25rem 2rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 100%);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.hero__facts::-webkit-scrollbar { display: none; }
.hero__facts-item {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0 1.25rem;
  flex-shrink: 0;
}
.hero__facts-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

/* Scroll indicator removed per feedback */

/* ================================================================
   ANIMATED MESH / WAVE BACKGROUNDS
   ================================================================ */
.bg-mesh {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.bg-mesh canvas { width: 100%; height: 100%; }

/* CSS animated gradient waves for sections without canvas */
.bg-waves {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
  opacity: 0.5;
}
.bg-waves::before,
.bg-waves::after {
  content: ''; position: absolute;
  width: 200%; height: 200%;
  border-radius: 45%;
  animation: waveSpin 20s linear infinite;
}
.bg-waves::before {
  top: -110%; left: -50%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.03) 0%, transparent 70%);
}
.bg-waves::after {
  bottom: -110%; right: -50%;
  background: radial-gradient(ellipse, rgba(90,158,62,0.025) 0%, transparent 70%);
  animation-duration: 25s;
  animation-direction: reverse;
}
@keyframes waveSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Floating grid pattern overlay */
.bg-grid {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
  opacity: 0.3;
  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;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}

/* Green accent line used as decorative separator */
.accent-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}
.accent-line--left { margin-left: 0; }

/* ================================================================
   KEY FACTS BAR — Static, one line, clean
   ================================================================ */
.facts-bar {
  padding: 1.125rem 0;
  background: transparent;
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.facts-bar::-webkit-scrollbar { display: none; }
.facts-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
  padding: 0 2rem;
  min-width: max-content;
}
.facts-bar__item {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 0 1.25rem;
  flex-shrink: 0;
}
.facts-bar__sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ================================================================
   SECTIONS
   ================================================================ */
.section { padding: clamp(7rem, 14vw, 12rem) 0; position: relative; }
.section + .section { border-top: 1px solid rgba(0,0,0,0.04); }
.section--dark + .section, .section + .section--dark,
.section--deep + .section, .section + .section--deep,
.section--dark + .section--dark, .section--deep + .section--deep { border-top: none; }
.section--dark { background: var(--navy); }
.section--grey { background: var(--warm-bg); }
.section--deep { background: var(--deep); }
.section--cream { background: var(--cream); }

/* Page hero for subpages */
.page-hero {
  padding: 140px 0 80px;
  background: var(--navy);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700; color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.45);
  max-width: 600px; margin: 0 auto;
  line-height: 1.7;
}

/* Content grid for subpages */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.content-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
  .content-grid, .content-grid--3 { grid-template-columns: 1fr; }
}

/* Info card for subpages */
.info-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 14px;
  transition: all 0.4s var(--ease);
  max-width: 600px;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
  border-color: rgba(37,99,235,0.12);
}
.info-card h3 {
  font-family: var(--font);
  font-size: 1rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.5rem;
}
.info-card p {
  font-size: 0.875rem; color: var(--titanium); line-height: 1.7;
}

/* Spec table — grid layout for premium medtech look */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table tr { border-bottom: 1px solid #EAEAEA; }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 1rem 0;
  font-size: 0.9375rem;
  color: #555;
  vertical-align: top;
}
.spec-table td:first-child {
  font-weight: 600; color: var(--dark);
  width: 35%;
  padding-right: 2rem;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }
.container--wide { max-width: 1400px; }
.container--narrow { max-width: 760px; }

/* Section header */
.sh { text-align: center; max-width: 640px; margin: 0 auto; margin-bottom: clamp(4rem, 8vw, 6rem); }
.sh--left { text-align: left; margin-left: 0; }
.sh__label {
  display: inline-block;
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  padding: 0.35rem 0.75rem;
  background: var(--accent-soft);
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.section--dark .sh__label,
.page-hero .sh__label { background: rgba(37,99,235,0.12); border-color: rgba(37,99,235,0.2); }
.sh h2 {
  font-family: var(--font);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.section--dark .sh h2 {
  border-bottom-color: rgba(255,255,255,0.08);
}
.section--dark .sh h2,
.page-hero h1 { color: #fff; }
.section--deep .sh h2 { color: #fff; }
.sh p { font-size: clamp(1rem, 1.2vw, 1.0625rem); color: var(--titanium); line-height: 1.75; }
.section--dark .sh p,
.page-hero p { color: rgba(255,255,255,0.45); }

/* ================================================================
   INTERACTIVE PRODUCT EXPLORER
   ================================================================ */
.explorer {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: linear-gradient(180deg, var(--deep) 0%, #111828 100%);
  overflow: hidden;
}
.explorer::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(37,99,235,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(37,99,235,0.04) 0%, transparent 40%);
}
.explorer .container { position: relative; z-index: 2; }

.explorer__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.explorer__header .sh__label { background: rgba(37,99,235,0.12); border-color: rgba(37,99,235,0.2); }
.explorer__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: inline-block;
}
.explorer__header p {
  font-size: 1rem; color: rgba(255,255,255,0.4);
  max-width: 500px; margin: 0 auto;
}

/* Side-by-side layout: video left, controls right */
.explorer__layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 1.5rem;
  max-width: 1050px;
  margin: 0 auto;
  align-items: stretch;
}

.explorer__stage {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 50%, #1a2540 0%, #0e1525 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 40px 100px rgba(0,0,0,0.5),
    0 0 100px rgba(37,99,235,0.06);
}

#explorer-video {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

/* Fade overlay during transitions */
.explorer__fade {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, #1a2540 0%, #0e1525 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
}
.explorer__fade.active { opacity: 1; }

/* Labels removed per client feedback */

/* Vertical sidebar controls */
.explorer__sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}
.explorer__btn {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  text-align: left;
}
.explorer__btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}
.explorer__btn.active {
  background: rgba(37,99,235,0.12);
  border-color: var(--accent);
  color: var(--accent-bright);
  box-shadow: 0 0 20px rgba(37,99,235,0.15);
}
.explorer__btn-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s var(--ease);
}
.explorer__btn-icon svg {
  width: 16px; height: 16px;
}
.explorer__btn.active .explorer__btn-icon {
  background: rgba(37,99,235,0.2);
  color: var(--accent-bright);
}
.explorer__btn-text {
  display: flex; flex-direction: column; gap: 0.15rem;
}
.explorer__btn-number {
  font-size: 0.5625rem; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}
.explorer__btn.active .explorer__btn-number {
  color: var(--accent-bright);
  opacity: 0.8;
}
.explorer__progress {
  display: flex; justify-content: center;
  gap: 0.5rem; margin-top: 0.75rem;
}
.explorer__progress-dot {
  width: 32px; height: 2px;
  border-radius: 1px;
  background: rgba(255,255,255,0.1);
  transition: all 0.5s var(--ease);
  cursor: pointer;
}
.explorer__progress-dot.active {
  background: var(--accent);
  width: 48px;
}

/* ================================================================
   PRODUCT VIDEO SHOWCASE
   ================================================================ */
.video-showcase {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 800px;
  margin: 0 auto;
  cursor: pointer;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.04),
    0 20px 60px rgba(0,0,0,0.08),
    0 0 0 1px rgba(0,0,0,0.03);
  transition: all 0.5s var(--ease);
}
.video-showcase:hover {
  box-shadow:
    0 4px 6px rgba(0,0,0,0.04),
    0 36px 90px rgba(0,0,0,0.16),
    0 0 0 1px rgba(0,0,0,0.03);
  transform: translateY(-6px);
}
.video-showcase video {
  width: 100%; height: 100%; object-fit: cover;
}
.video-showcase__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.15));
  display: flex; align-items: center; justify-content: center;
  transition: all 0.5s;
}
.video-showcase:hover .video-showcase__overlay { background: rgba(0,0,0,0.15); }
.video-showcase__overlay.hidden { opacity: 0; pointer-events: none; }

.play-circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.play-circle:hover { transform: scale(1.08); box-shadow: 0 12px 50px rgba(0,0,0,0.25); }
.play-circle svg { width: 28px; height: 28px; margin-left: 3px; fill: var(--dark); }

/* ================================================================
   PROBLEM CARDS
   ================================================================ */
.problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
/* Break out of .container's 1200px cap so cards are wider and headlines fit in 2 lines */
#problem .container { max-width: 1480px; }
.problem-card {
  padding: 2.25rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--light);
  transition: all 0.5s var(--ease);
  position: relative; overflow: hidden;
}
.problem-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), #f97316);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.1);
  border-color: transparent;
}
.problem-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: #fef2f2;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.problem-card__icon svg { width: 22px; height: 22px; color: var(--red); stroke-width: 1.5; }
.problem-card h3 { font-family: var(--font); font-size: 1.0625rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.problem-card p { font-size: 0.875rem; color: var(--titanium); line-height: 1.7; }

/* ================================================================
   FEATURE GRID (dark)
   ================================================================ */
/* ---------- SOLUTION / FEATURES section — light redesign (2026-04-23) ---------- */
.section--solution {
  background: var(--warm-bg);
  position: relative;
  padding-top: clamp(3rem, 5.5vw, 4.5rem);
  padding-bottom: clamp(3rem, 5.5vw, 4.5rem);
}
.section--solution .sh {
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}
.section--solution .sh {
  max-width: 1120px; /* wide enough for "Entwickelt für kontinuierliche Leistung" on one line */
}
.section--solution .sh h2,
.section--solution .sh p {
  color: var(--dark);
}
.section--solution .sh p {
  color: #5a6478;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.25vw, 2rem);
  max-width: 1180px;
  margin: 0 auto clamp(1.5rem, 2.5vw, 2.25rem);
}
.feature-card {
  padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2vw, 1.625rem);
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 29, 58, 0.18);
  box-shadow: 0 2px 6px rgba(15, 29, 58, 0.04);
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow:
    0 28px 60px -18px rgba(37, 99, 235, 0.22),
    0 6px 18px rgba(15, 29, 58, 0.06);
}
.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s var(--ease);
}
.feature-card:hover .feature-card__icon {
  background: rgba(37, 99, 235, 0.14);
}
.feature-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1.35vw, 1.25rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.25;
  min-height: 2.5em;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.9375rem;
  color: #5a6478;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.feature-card__image {
  margin-top: auto;
  padding-top: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
}
.feature-card__image img {
  width: 100%;
  max-width: 100%;
  max-height: 190px;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}
.feature-card:hover .feature-card__image img {
  transform: scale(1.04);
}

/* Light-blue summary banner under the 3 cards */
.solution-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(1.25rem, 2vw, 1.75rem);
  background: linear-gradient(90deg, #eef4ff 0%, #f0f5ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 14px;
}
.solution-banner__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.solution-banner p {
  margin: 0;
  font-size: clamp(0.9375rem, 1.05vw, 1rem);
  line-height: 1.5;
  color: var(--dark);
  font-weight: 500;
}
@media (max-width: 560px) {
  .solution-banner { flex-direction: column; text-align: center; }
}

/* ================================================================
   3-STEP WORKFLOW
   ================================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; position: relative; }
.steps::before {
  content: ''; position: absolute;
  top: 48px; left: calc(16.67% + 28px); right: calc(16.67% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--light), var(--mid), var(--light));
}
.step { text-align: center; position: relative; }
.step__ring {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--light);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
  position: relative; z-index: 2;
  transition: all 0.5s var(--ease);
}
.step:hover .step__ring {
  border-color: var(--accent);
  box-shadow: 0 0 0 10px rgba(37,99,235,0.08), 0 12px 40px var(--accent-glow);
  transform: translateY(-4px);
}
.step__ring span {
  font-family: var(--font);
  font-size: 1.75rem; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step__tag {
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem;
}
.step h3 {
  font-family: var(--font);
  font-size: 1.25rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.5rem;
}
.step p { font-size: 0.875rem; color: var(--titanium); line-height: 1.7; max-width: 300px; margin: 0 auto; }

/* ================================================================
   STUDY / STATS
   ================================================================ */
.study-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}
.study-text .sh--left { margin-bottom: 0; }
.study-text h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -0.02em; color: var(--dark);
  margin-bottom: 1rem;
}
.study-text p { font-size: 0.9375rem; color: var(--titanium); line-height: 1.75; margin-bottom: 1.25rem; }
.study-meta {
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
}
.study-meta__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}
.study-meta__row:last-child {
  border-bottom: none;
}
.study-meta__key {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 140px;
}
.study-meta__val {
  font-size: 0.9375rem;
  color: var(--dark);
  font-weight: 500;
}

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stat {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 16px;
  text-align: center;
  transition: all 0.5s var(--ease);
  position: relative; overflow: hidden;
}
.stat::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-subtle), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.stat:hover::before { opacity: 1; }
.stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.2);
}
.stat__num {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 800; line-height: 1;
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.375rem;
  letter-spacing: -0.03em;
}
.stat__label {
  position: relative; z-index: 1;
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.005em;
  line-height: 1.25;
  margin-top: 0.5rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  padding: 0 0.25rem;
}
.stat__sub {
  position: relative; z-index: 1;
  font-size: 0.6875rem;
  color: var(--titanium);
  margin-top: 0.25rem;
  line-height: 1.35;
  padding: 0 0.25rem;
  word-break: break-word;
  overflow-wrap: break-word;
}
.stat {
  padding: 1.75rem 1rem !important;
}

.section--grey .stat__label {
  color: var(--dark);
}
.section--grey .study-meta {
  background: var(--white);
}

/* ================================================================
   COMPANY
   ================================================================ */
.company-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
.company-left h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -0.02em; color: var(--dark);
  margin-bottom: 1.25rem;
}
.company-left p { font-size: 0.9375rem; color: var(--titanium); line-height: 1.75; margin-bottom: 1rem; }
.company-badges { display: flex; gap: 0.625rem; flex-wrap: wrap; margin-top: 1.75rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: var(--off-white); border: 1px solid var(--light);
  border-radius: 6px;
  font-size: 0.75rem; font-weight: 600; color: var(--dark);
  transition: all 0.3s;
}
.badge:hover { border-color: var(--accent); box-shadow: 0 2px 12px var(--accent-glow); }
.badge svg { width: 14px; height: 14px; color: var(--accent); }

.pillars { display: flex; flex-direction: column; gap: 1rem; }
.pillar {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; background: var(--off-white);
  border: 1px solid var(--light); border-radius: 14px;
  transition: all 0.4s var(--ease);
}
.pillar:hover { border-color: var(--accent); transform: translateX(6px); box-shadow: 0 8px 30px var(--accent-glow); }
.pillar__icon {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-subtle);
  display: flex; align-items: center; justify-content: center;
}
.pillar__icon svg { width: 18px; height: 18px; color: var(--accent); }
.pillar h4 { font-family: var(--font); font-size: 0.875rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
.pillar p { font-size: 0.8125rem; color: var(--titanium); line-height: 1.55; }

/* ================================================================
   CONTACT / CTA — Split layout: text left, blob right
   ================================================================ */
.cta-section { position: relative; overflow: hidden; text-align: left; }
.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cta-text { position: relative; z-index: 2; }
.cta-text h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--dark); margin-bottom: 1rem;
}
.cta-text > p {
  font-size: 1rem; color: var(--titanium); line-height: 1.7;
  margin-bottom: 2rem; max-width: 480px;
}
.cta-blob-area {
  position: relative;
  min-height: 400px;
}
.cta-blob-area canvas {
  width: 100%; height: 100%;
}

.contacts { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contacts__item { display: flex; align-items: center; gap: 1rem; }
.contacts__label {
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--titanium);
  min-width: 60px;
}
.contacts__value { font-size: 0.9375rem; font-weight: 500; color: var(--dark); }
.contacts__value a { color: var(--accent); transition: color 0.3s; }
.contacts__value a:hover { color: #1d4ed8; }

@media (max-width: 768px) {
  .cta-layout { grid-template-columns: 1fr; }
  .cta-blob-area { min-height: 280px; }
  .cta-text { text-align: center; }
  .contacts { align-items: center; }
}

/* ================================================================
   FOOTER — Premium, large, multi-row
   ================================================================ */
.footer {
  background: var(--deep);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

/* ================================================================
   PRODUCT SHOWCASE — PROGRESSIVE CAROUSEL
   ================================================================ */
.showcase {
  padding: 0;
}

/* Main wrapper */
.pshow {
  position: relative;
  width: 100%;
  line-height: 0;
}

/* Canvas — stacked images with crossfade */
.pshow__canvas {
  position: relative;
  width: 100%;
  background: #111;
  overflow: hidden;
}
.pshow__img {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  max-width: 960px;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}
.pshow__img--active {
  opacity: 1;
  z-index: 2;
}
/* First image sets the height */
.pshow__img:first-child {
  position: relative;
  left: auto;
  transform: none;
  display: block;
  margin: 0 auto;
}

/* Arrows */
.pshow__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  opacity: 0;
}
.pshow:hover .pshow__arrow { opacity: 1; }
.pshow__arrow:hover {
  background: rgba(37,99,235,0.4);
  border-color: rgba(37,99,235,0.6);
  transform: translateY(-50%) scale(1.08);
}
.pshow__arrow svg { width: 22px; height: 22px; }
.pshow__arrow--l { left: 20px; }
.pshow__arrow--r { right: 20px; }

/* Bottom bar — glass morphism tab strip */
.pshow__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pshow__tab {
  padding: 12px 8px 10px;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s;
  border-right: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}
.pshow__tab:last-child { border-right: none; }
.pshow__tab:hover { opacity: 0.7; }
.pshow__tab--active { opacity: 1; }

.pshow__tab-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

/* Progress line */
.pshow__tab-line {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.pshow__tab-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #10B981);
  border-radius: 2px;
}
.pshow__tab--active .pshow__tab-fill {
  animation: pbar 5s linear forwards;
}
@keyframes pbar {
  0% { width: 0; }
  100% { width: 100%; }
}

/* Responsive — Showcase */
@media (max-width: 768px) {
  .pshow__arrow { width: 36px; height: 36px; }
  .pshow__arrow svg { width: 16px; height: 16px; }
  .pshow__arrow--l { left: 8px; }
  .pshow__arrow--r { right: 8px; }
  .pshow__tab-label { font-size: 0.55rem; letter-spacing: 0.04em; }
  .pshow__tab { padding: 8px 4px 7px; }
  .pshow__bar { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .pshow__arrow { width: 32px; height: 32px; }
  .pshow__arrow svg { width: 14px; height: 14px; }
  .pshow__tab-label { font-size: 0.5rem; }
  .pshow__tab { padding: 6px 3px 5px; }
  .pshow__tab-line { height: 1.5px; }
}

/* Footer metrics strip */
.footer__metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}
.footer__metric {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  padding: 0 1rem;
  white-space: nowrap;
}
.footer__metric strong {
  color: rgba(255,255,255,0.65);
  font-weight: 700;
}
.footer__metric-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .footer__metrics { gap: 0.5rem; }
  .footer__metric { padding: 0.25rem 0.75rem; }
}

.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.2), var(--green-glow), rgba(37,99,235,0.2), transparent);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer__brand {}
.footer__brand img { height: 180px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.7; margin-bottom: 1.25rem; margin-left: -1rem; }
.footer__brand p {
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; max-width: 300px;
}
.footer__col-title {
  font-family: var(--font);
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}
.footer__col-links {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.footer__col-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer__col-links a:hover { color: rgba(255,255,255,0.9); }

.footer__divider {
  width: 100%; height: 1px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 2rem;
}
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer__copy { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.footer__bottom-links { display: flex; gap: 2rem; }
.footer__bottom-links a {
  font-size: 0.8125rem; color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer__bottom-links a:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ================================================================
   GSAP REVEAL CLASSES
   ================================================================ */
/* Reveal states — only applied when GSAP is loaded (via .gsap-ready on body) */
.gsap-ready [data-reveal] { opacity: 0; transform: translateY(40px); }
.gsap-ready [data-reveal="left"] { opacity: 0; transform: translateX(-40px); }
.gsap-ready [data-reveal="right"] { opacity: 0; transform: translateX(40px); }
.gsap-ready [data-reveal="scale"] { opacity: 0; transform: scale(0.94); }
.gsap-ready [data-reveal="fade"] { opacity: 0; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .study-grid, .company-split { grid-template-columns: 1fr; }
  .features, .problems { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr 1fr; }
  .explorer__layout { grid-template-columns: 1fr; }
  .explorer__sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .explorer__btn { padding: 0.7rem 1rem; }
}
@media (max-width: 768px) {
  /* Nav */
  .nav { height: 76px; }
  .nav__logo img { height: 150px; }
  .nav__links {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2rem; z-index: 100;
  }
  .nav__links.open { display: flex; }
  .nav__links .nav__link { font-size: 1.25rem; color: var(--dark) !important; }
  .nav__links .nav__cta { background: var(--dark) !important; color: #fff !important; border: none !important; }
  .nav__burger { display: block; }

  /* Hero */
  .hero { min-height: 560px; }

  /* Grids */
  .problems, .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .problem-card, .feature-card { padding: 1.75rem; }
  .step__ring { width: 72px; height: 72px; }
  .step__ring span { font-size: 1.25rem; }

  /* Footer */
  .footer__brand img { height: 55px; }
  .footer__col-links a { padding: 4px 0; }

  /* Other */
  .contacts { flex-direction: column; gap: 1.25rem; }
  .footer__inner { flex-direction: column; text-align: center; }
  .explorer__controls { gap: 0.5rem; }
  .explorer__btn { font-size: 0.6875rem; padding: 0.5rem 0.75rem; }
  .hero__title { font-size: clamp(2.75rem, 10vw, 4rem); }
}
@media (max-width: 480px) {
  /* Nav */
  .nav { height: 64px; padding: 0 1rem; }
  .nav__logo img { height: 110px; }

  /* Hero */
  .hero { min-height: 480px; }

  /* Cards */
  .problem-card, .feature-card { padding: 1.25rem; }
  .step__ring { width: 60px; height: 60px; }

  /* Stats */
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 1.5rem 1.25rem; }

  /* Footer */
  .footer__top { gap: 1.5rem; }
  .footer__brand img { height: 42px; }

  /* Hero actions */
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ================================================================
   METRICS BAR — Navy bg, white/blue values (no green)
   ================================================================ */
.metrics-bar {
  padding: 4.5rem 0;
  background: transparent;
  border-bottom: 1px solid var(--light);
}
.metrics-bar__title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.metrics-bar__title span {
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--titanium);
}
.metrics-bar__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.metric {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--light);
  border-radius: 12px;
  transition: all 0.35s var(--ease);
}
.metric:hover {
  border-color: rgba(37,99,235,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}
.metric__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 0.875rem;
}
.metric__icon svg { width: 18px; height: 18px; color: var(--accent); }
.metric__value {
  font-family: var(--font);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 0.375rem;
}
.metric__label {
  font-size: 0.6875rem; font-weight: 500;
  color: var(--titanium);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .metrics-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .metrics-bar__inner { grid-template-columns: 1fr; }
  .metric:last-child { grid-column: span 1; max-width: 100%; }
}

/* ================================================================
   SURGICAL DEMO (below workflow steps)
   ================================================================ */
.surgical-demo {
  margin-top: 0;
  padding-top: 0;
}
.surgical-demo__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.surgical-demo__text {
  margin-bottom: 1.75rem;
}
.surgical-demo__text .sh__label { margin-bottom: 1rem; }
.surgical-demo__text h3 {
  font-family: var(--font);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700; color: var(--dark);
  margin-bottom: 0.5rem;
}
.surgical-demo__text p {
  font-size: 0.9375rem; color: var(--titanium); line-height: 1.7;
}
.surgical-demo__actions {
  display: flex; gap: 0.75rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.surgical-demo__notice {
  font-size: 0.75rem;
  color: var(--titanium);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
}

/* ================================================================
   LIGHTBOX / MODAL
   ================================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox__content {
  position: relative; z-index: 1;
  max-width: 800px; width: 90%;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.lightbox__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.06);
  color: var(--steel);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}
.lightbox__close:hover { background: rgba(0,0,0,0.1); }
.lightbox__disclaimer {
  padding: 3rem 2.5rem;
  text-align: center;
}
.lightbox__disclaimer-icon {
  margin-bottom: 1.25rem;
}
.lightbox__disclaimer h3 {
  font-family: var(--font);
  font-size: 1.375rem; font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.lightbox__disclaimer p {
  font-size: 0.9375rem; color: var(--titanium);
  line-height: 1.7; margin-bottom: 0.5rem;
}
.lightbox__disclaimer-actions {
  display: flex; gap: 0.75rem;
  justify-content: center; flex-wrap: wrap;
  margin-top: 1.5rem;
}
.lightbox__video {
  background: #000;
}
.lightbox__video video {
  width: 100%; display: block;
}

/* ================================================================
   SPECS STRIP (horizontal tech specs)
   ================================================================ */
.specs-strip {
  padding: 2rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}
.specs-strip__inner {
  display: flex; justify-content: center; align-items: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.spec-chip {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600;
  color: var(--steel);
  letter-spacing: 0.02em;
}
.spec-chip__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green);
}
.spec-chip__value {
  color: var(--dark); font-weight: 700;
}

/* ================================================================
   FLOATING CANVAS (small particle areas for other sections)
   ================================================================ */
.section-particles {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.section-particles canvas {
  width: 100%; height: 100%;
}

/* ================================================================
   LEGAL
   ================================================================ */
.legal { padding-top: 110px; padding-bottom: 5rem; min-height: 100vh; }
.legal h1 { font-family: var(--font); font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 2rem; color: var(--dark); }
.legal h2 { font-size: 1.125rem; font-weight: 700; color: var(--dark); margin-top: 2rem; margin-bottom: 0.5rem; }
.legal p { margin-bottom: 0.6rem; color: var(--steel); font-size: 0.9375rem; }
.legal ul, .legal ol { margin-bottom: 0.6rem; padding-left: 1.5rem; }
.legal li { color: var(--steel); font-size: 0.9375rem; margin-bottom: 0.3rem; }

/* ================================================================
   Language Switcher
   ================================================================ */
.lang-switcher {
  position: relative;
  margin-right: 0.5rem;
}
.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid rgba(128,128,128,0.2);
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: inherit;
  transition: background 0.2s, border-color 0.2s;
}
.lang-switcher__btn:hover {
  background: rgba(128,128,128,0.08);
  border-color: rgba(128,128,128,0.35);
}
.lang-switcher__btn svg:first-child { flex-shrink: 0; }
.lang-switcher__code { line-height: 1; }
.lang-switcher__arrow {
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 0.2s;
}
.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 0.35rem;
  z-index: 200;
  animation: langDropIn 0.15s var(--ease);
}
.lang-switcher__dropdown.open { display: block; }
@keyframes langDropIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.lang-switcher__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.65rem;
  border: none;
  background: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--dark);
  transition: background 0.15s;
}
.lang-switcher__item:hover { background: var(--cream); }
.lang-switcher__item--active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}
.lang-switcher__item svg { flex-shrink: 0; }

/* Nav dark text mode */
.nav--dark-text .lang-switcher__btn { color: var(--dark); border-color: rgba(0,0,0,0.12); }
.nav--dark-text .lang-switcher__btn:hover { background: rgba(0,0,0,0.04); }

/* Nav light text mode (hero) */
.nav--light-text .lang-switcher__btn { color: #fff; border-color: rgba(255,255,255,0.25); }
.nav--light-text .lang-switcher__btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }

/* Mobile */
@media (max-width: 768px) {
  .lang-switcher {
    margin-right: 0;
    order: -1;
    margin-bottom: 0.5rem;
  }
  .lang-switcher__btn {
    color: var(--dark) !important;
    border-color: rgba(0,0,0,0.15) !important;
    padding: 0.5rem 0.8rem;
    font-size: 0.875rem;
  }
  .lang-switcher__dropdown {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .lang-switcher__dropdown.open {
    animation: none;
  }
}

/* ============================================================
   DISTRIBUTOR REBRAND — Hero v4, Business Case, Positioning,
   Regulatory, Distributor CTA (added 2026-04-21)
   ============================================================ */

/* ============================================================
   HERO v4 — Fullscreen video BG, centered content, full-width proof strip
   Overrides legacy .hero rules so old video hero (product page) keeps working.
   ============================================================ */
.hero.hero--v4 {
  /* neutralize legacy .hero flex rules */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;

  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
  padding: 0;
}

/* Fullscreen video background */
.hero-v4__video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-v4__video-bg video,
.hero-v4__video-bg img,
.hero-v4__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Dark gradient overlay for legibility */
.hero-v4__video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,12,28,0.78) 0%, rgba(6,12,28,0.5) 35%, rgba(6,12,28,0.6) 65%, rgba(6,12,28,0.85) 100%);
}

/* Content block — full width with inner padding, centered text */
.hero-v4__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(7rem, 12vw, 10rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 6vw, 5rem);
  max-width: 100%;
}

.hero-v4__overline {
  font-family: var(--font);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin: 0 0 2.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  padding-left: 0.55em; /* balance the trailing letter-spacing so text stays visually centered */
}

.hero-v4__product-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.125rem, 7.5vw, 6.5625rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 0.75rem;
  text-shadow: 0 4px 60px rgba(0,0,0,0.55);
  /* BoneGainer is a brand — do NOT translate, never wrap */
  white-space: nowrap;
}
@media (max-width: 480px) {
  .hero-v4__product-name {
    font-size: clamp(2.8125rem, 13.75vw, 4.0625rem);
  }
}

.hero-v4__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.34375rem, 5vw, 4.296875rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 auto 2.6rem;
  max-width: 1600px;
  text-wrap: balance;
  hyphens: manual;
  -webkit-hyphens: manual;
  word-break: normal;
  overflow-wrap: break-word;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

/* Big blue proof stats directly under the headline — visual centerpiece */
.hero-v4__proof-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.95rem, 5.2vw, 4.55rem);
  margin: 0 auto 2.6rem;
  padding: 0;
  max-width: 1200px;
}
.hero-v4__proof-inline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.hero-v4__proof-inline-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--accent-bright);
  text-shadow: 0 6px 40px rgba(59,130,246,0.6), 0 2px 14px rgba(0,0,0,0.6);
  display: inline-flex;
  align-items: baseline;
  font-variant-numeric: tabular-nums;
}
.hero-v4__proof-inline-num .num-pfx,
.hero-v4__proof-inline-num .num-sfx {
  display: inline-block;
  flex: 0 0 auto;
}
.hero-v4__proof-inline-num .num-digit {
  display: inline-block;
  min-width: 2.1ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.hero-v4__proof-inline-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.625rem, 0.85vw, 0.8125rem);
  line-height: 1.2;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-v4__proof-inline-sep {
  width: 1px;
  height: clamp(3rem, 6vw, 4.5rem);
  background: rgba(255,255,255,0.22);
}
@media (max-width: 640px) {
  .hero-v4__proof-inline { gap: 1.25rem; }
  .hero-v4__proof-inline-sep { display: none; }
}

.hero-v4__sub {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  max-width: 880px;
  margin: 0 auto 1.15rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-v4__sub:first-of-type {
  font-weight: 700;
}
.hero-v4__sub + .hero-v4__sub {
  margin-bottom: 2.95rem;
}

.hero-v4__bullets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: start;
  gap: 1rem 2.5rem;
  margin: 0 auto 2.5rem;
  padding: 0;
  max-width: 1100px;
  text-align: left;
}
.hero-v4__bullets li:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
}
.hero-v4__bullets li {
  position: relative;
  padding-left: 2.375rem;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
  white-space: nowrap;
  hyphens: manual;
  -webkit-hyphens: manual;
  word-break: keep-all;
}
.hero-v4__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M5 10.5l3.2 3.2L15 7' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 72%;
  box-shadow: 0 3px 14px rgba(90,158,62,0.5);
}

.hero-v4__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}
.btn--primary-accent {
  background: var(--accent);
  color: #fff;
  padding: 1.125rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 12px 36px rgba(37,99,235,0.45);
  letter-spacing: 0.01em;
}
.btn--primary-accent:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(37,99,235,0.55);
  color: #fff;
}
.btn--glass-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.075rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}
.btn--glass-light:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
  color: #fff;
}
.btn--video-pill {
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.025rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--video-pill svg { width: 14px; height: 14px; }
.btn--video-pill:hover {
  background: rgba(0,0,0,0.72);
  transform: translateY(-2px);
  color: #fff;
}

/* Full-width proof strip — normal flex child at bottom of hero */
.hero-v4__proof-strip {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3rem);
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  background: linear-gradient(0deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: auto;
}
.hero-v4__proof-strip::-webkit-scrollbar { display: none; }
.hero-v4__proof-strip .hero-v4__proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.hero-v4__proof-strip .hero-v4__proof-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero-v4__proof-strip .hero-v4__proof-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.6875rem, 0.9vw, 0.8125rem);
  line-height: 1.2;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-v4__proof-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* Tablet */
@media (max-width: 960px) {
  .hero.hero--v4 { height: auto; min-height: 100vh; }
  .hero-v4__inner {
    padding-top: clamp(6rem, 14vw, 9rem);
    padding-bottom: clamp(3rem, 6vw, 4rem);
  }
  .hero-v4__bullets { gap: 0.625rem 1.5rem; }
  .hero-v4__proof-strip { gap: 0.75rem; padding: 1rem; }
  .hero-v4__proof-sep { height: 26px; }
}

/* Mobile */
@media (max-width: 640px) {
  .hero-v4__inner {
    padding-top: 6rem;
    padding-bottom: 3rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .hero-v4__headline { font-size: clamp(1.875rem, 8.125vw, 2.5rem); line-height: 1.2; }
  .hero-v4__sub { font-size: 0.9375rem; white-space: normal; }
  .hero-v4__bullets { grid-template-columns: 1fr; gap: 0.625rem; justify-content: start; }
  .hero-v4__bullets li { padding-left: 2rem; font-size: 0.9375rem; line-height: 1.35; text-align: left; white-space: normal; }
  .hero-v4__bullets li::before { width: 1.375rem; height: 1.375rem; top: 0.1rem; left: 0; transform: none; }
  .hero-v4__bullets li:nth-child(3) { justify-self: start; }
  .hero-v4__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-v4__cta .btn { width: 100%; justify-content: center; flex: 1 1 100%; }
  .hero-v4__proof-strip {
    gap: 0.5rem;
    padding: 0.625rem 0.5rem;
    justify-content: flex-start;
  }
  .hero-v4__proof-strip .hero-v4__proof-num { font-size: 0.9375rem; }
  .hero-v4__proof-strip .hero-v4__proof-label { font-size: 0.5625rem; letter-spacing: 0.05em; }
  .hero-v4__proof-sep { height: 20px; }
}

/* ---------- POSITIONING SECTION (2-column: problem vs solution + visual) ---------- */
.section--positioning {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: #fff;
  position: relative;
}
.section--positioning::before {
  content: "";
  position: absolute;
  inset: 0 10% auto 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(15,29,58,0.08) 50%, transparent 100%);
}
.positioning-head {
  max-width: 820px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
  text-align: center;
}
.positioning-head .sh__label {
  color: var(--accent);
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}
.positioning-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.4vw, 2.375rem);
  line-height: 1.18;
  color: var(--dark);
  margin: 0;
  text-wrap: balance;
  hyphens: manual;
  word-break: normal;
}

/* ---------- POSITIONING: VS comparison — blue split (2026-04-23) ---------- */
.vs-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: clamp(1.5rem, 2.5vw, 2.75rem);
  row-gap: clamp(1.75rem, 3vw, 2.5rem);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  padding: clamp(3rem, 5.5vw, 5rem) clamp(2rem, 4vw, 3.75rem);
  border-radius: 26px;
  /* Split background — 2-stop hard edge at exact 50% */
  background: linear-gradient(to right, #fbfafc 50%, #eef4ff 50%);
  box-shadow:
    0 30px 60px -24px rgba(15, 29, 58, 0.16),
    0 8px 24px -8px rgba(15, 29, 58, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.1);
}
/* Subtle vertical divider — exactly centered at 50% via transform */
.vs-compare::before {
  content: "";
  position: absolute;
  left: 50%;
  top: clamp(3rem, 5.5vw, 5rem);
  bottom: clamp(3rem, 5.5vw, 5rem);
  width: 1px;
  transform: translateX(-0.5px);
  background: linear-gradient(180deg, transparent 0%, rgba(37, 99, 235, 0.18) 25%, rgba(37, 99, 235, 0.18) 75%, transparent 100%);
  pointer-events: none;
}

/* Headers (row 1) — mirrored dot placement, identical padding so underlines align */
.vs-compare__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.5rem 1.125rem;
  border-bottom: 1px solid rgba(15, 29, 58, 0.1);
  width: 100%;
  min-height: 2.5rem;
  box-sizing: border-box;
}
.vs-compare__head--problem {
  grid-column: 1;
  grid-row: 1;
  justify-content: flex-start; /* title then dot, both on left edge */
}
.vs-compare__head--solution {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-start; /* dot then title, both on left edge */
}
.vs-compare__head-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  letter-spacing: -0.01em;
  color: var(--dark);
  line-height: 1.2;
  white-space: nowrap;
}
.vs-compare__head--solution .vs-compare__head-title {
  color: var(--accent);
}
.vs-compare__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vs-compare__dot--problem { background: #d84343; box-shadow: 0 0 0 3px rgba(216, 67, 67, 0.14); }
.vs-compare__dot--solution { background: var(--accent); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18); }

/* Items (rows 2 & 3) */
.vs-compare__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0 0.5rem;
}
.vs-compare__spacer { /* empty center cell in rows 2 & 3 */ }

.vs-compare__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(15, 29, 58, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--dark);
}
.vs-compare__icon--problem {
  border-color: rgba(216, 67, 67, 0.3);
  color: #d84343;
  background: #fff7f7;
}
.vs-compare__icon--solution {
  border-color: rgba(37, 99, 235, 0.3);
  color: var(--accent);
  background: #f0f5ff;
}

.vs-compare__text {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 4.8em;
}
.vs-compare__text h4 {
  font-family: var(--font);
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.4rem;
  line-height: 1.3;
  min-height: 1.3em;
  align-self: start;
}
.vs-compare__text p {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.55;
  color: #5a5266;
  margin: 0;
  align-self: start;
}

/* Center VS badge spans all 3 rows vertically */
.vs-compare__badge {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: center;
  width: clamp(72px, 7.5vw, 96px);
  height: clamp(72px, 7.5vw, 96px);
  border-radius: 50%;
  background: linear-gradient(140deg, #3b82f6 0%, #2563eb 55%, #1d4ed8 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  letter-spacing: 0.02em;
  box-shadow:
    0 18px 42px -8px rgba(37, 99, 235, 0.55),
    0 6px 14px rgba(37, 99, 235, 0.25),
    0 0 0 6px #fff;
  flex-shrink: 0;
  z-index: 2;
}

@media (max-width: 820px) {
  /* Mobile: switch from 3-col grid to flex column with explicit order
     so inline grid-column/grid-row attributes are ignored. Order:
     problem header → problem items → VS badge → solution header → solution items */
  .vs-compare {
    display: flex !important;
    flex-direction: column;
    gap: 1.1rem;
    background: linear-gradient(180deg, #fbfafc 0%, #fbfafc 55%, #eef4ff 55%, #eef4ff 100%);
    padding: clamp(1.75rem, 4.5vw, 2.25rem);
    border-radius: 20px;
  }
  .vs-compare::before { display: none; }
  .vs-compare__head {
    padding: 0 0 0.75rem;
    min-height: auto;
  }
  .vs-compare__head--problem { order: 1; }
  .vs-compare__item--problem { order: 2; }
  .vs-compare__badge { order: 3; align-self: center; margin: 0.6rem 0; }
  .vs-compare__head--solution { order: 4; padding-top: 0.5rem; border-top: 1px dashed rgba(37, 99, 235, 0.18); padding-bottom: 0.75rem; }
  .vs-compare__item--solution { order: 5; }
  .vs-compare__head-title {
    white-space: normal;
  }
  .vs-compare__badge {
    width: 64px;
    height: 64px;
    font-size: 1rem;
  }
  .vs-compare__icon {
    width: 38px;
    height: 38px;
  }
  .vs-compare__item {
    padding: 0;
  }
  .vs-compare__text h4 {
    font-size: 1rem;
  }
  .vs-compare__text p {
    font-size: 0.9375rem;
  }
  .vs-compare__text {
    min-height: auto;
  }
}
.positioning-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.positioning-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pos-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pos-point__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 0.1rem;
}
.pos-point--problem .pos-point__icon {
  background: #fde8e8;
  color: #d84343;
}
.pos-point--solution .pos-point__icon {
  background: #e3f4e8;
  color: #2e9644;
}
.pos-point p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #2a3448;
  margin: 0;
}
.pos-point p strong {
  color: var(--dark);
  font-weight: 700;
}
.pos-brand {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.positioning-visual {
  position: relative;
  width: 100%;
}
.positioning-visual__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #f4f6fb 0%, #e9ecf3 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(15, 29, 58, 0.22),
    0 8px 24px -8px rgba(15, 29, 58, 0.08);
}
.positioning-visual__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pos-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.16);
  padding: 0.5rem 1rem 0.5rem 0.45rem;
  border-radius: 999px;
  box-shadow:
    0 12px 28px -8px rgba(15, 29, 58, 0.18),
    0 2px 6px rgba(15, 29, 58, 0.06);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.pos-pin__dot {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.pos-pin--top {
  top: 14%;
  right: -6%;
}
.pos-pin--bottom {
  bottom: 14%;
  right: 2%;
}
@media (max-width: 900px) {
  .positioning-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
  .positioning-head {
    text-align: left;
    margin-bottom: 2rem;
  }
  .positioning-visual {
    order: -1;
  }
  .pos-pin--top {
    top: 8%;
    right: 4%;
  }
  .pos-pin--bottom {
    bottom: 8%;
    right: 4%;
  }
  .pos-pin {
    font-size: 0.8125rem;
    padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  }
}
@media (max-width: 560px) {
  .pos-pin__label {
    display: none;
  }
  .pos-pin {
    padding: 0.35rem;
  }
}

/* ---------- BUSINESS CASE SECTION (the big new block) ---------- */
.section--businesscase {
  background: linear-gradient(180deg, #e7eaf1 0%, #eef0f5 100%);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  border-top: 1px solid rgba(15,29,58,0.08);
  border-bottom: 1px solid rgba(15,29,58,0.08);
}
.section--businesscase::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 64px; height: 3px;
  transform: translateX(-50%);
  background: var(--accent);
  border-radius: 2px;
}
.bc-header { max-width: 820px; margin: 0 auto 3rem; text-align: center; }
.bc-header .bc-overline {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 0.375rem 0.875rem;
  background: var(--accent-subtle);
  border-radius: 999px;
}
.bc-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.bc-header p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--steel);
  max-width: 720px;
  margin: 0 auto;
}

.bc-quote {
  max-width: 1000px;
  margin: 0 auto 3.5rem;
  padding: 2rem 2.5rem;
  background: #fff;
  border-left: 5px solid var(--accent);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(15,29,58,0.06);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.bc-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.bc-tile {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 24px rgba(15,29,58,0.05);
  border: 1px solid rgba(15,29,58,0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.bc-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15,29,58,0.09);
}
.bc-tile__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.bc-tile h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 0.75rem;
  text-wrap: balance;
}
.bc-tile p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--steel);
}

.bc-details {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.75rem 2.25rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(15,29,58,0.06);
}
.bc-details h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
}
.bc-details ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
}
.bc-details li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--steel);
}
.bc-details li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 860px) {
  .bc-tiles { grid-template-columns: 1fr; }
  .bc-details ul { grid-template-columns: 1fr; }
  .bc-quote { padding: 1.5rem 1.5rem; }
}

/* ---------- REGULATORY SECTION v2 (4-card rebuild, 2026-04-28) ---------- */
.section--regulatory {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  padding: clamp(4.5rem, 9vw, 6.5rem) 0;
  position: relative;
  overflow: hidden;
}
.section--regulatory-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 56px; height: 3px;
  transform: translateX(-50%);
  background: var(--accent);
  border-radius: 2px;
}

.reg-header { max-width: 820px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.reg-v2__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin: 0 0 1rem;
}
.reg-v2__sub {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.55;
  color: var(--steel);
  margin: 0 auto;
  max-width: 680px;
}

/* 4-card grid */
.reg-v2__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.8vw, 1.5rem);
  max-width: 1180px;
  margin: 0 auto;
}
.reg-v2__card {
  background: #ffffff;
  border: 1px solid #e6eaf2;
  border-radius: 16px;
  padding: clamp(1.75rem, 2.6vw, 2.25rem) clamp(1.25rem, 2vw, 1.75rem);
  text-align: center;
  box-shadow: 0 4px 18px rgba(15, 29, 58, 0.04);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.reg-v2__card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.10);
}
.reg-v2__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-subtle);
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.reg-v2__card-icon svg { width: 26px; height: 26px; }
.reg-v2__card-title {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--dark);
  margin: 0 0 0.7rem;
  text-wrap: balance;
}
.reg-v2__card-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--dark);
  margin: 0;
}

/* FDA Verification Banner */
.reg-v2__fda {
  max-width: 1100px;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  background: linear-gradient(135deg, #0f1d3a 0%, #1e3a8a 60%, #1d4ed8 100%);
  border-radius: 18px;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.75rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  box-shadow: 0 18px 50px rgba(15, 29, 58, 0.22);
  border-top: 3px solid #fbbf24;
  position: relative;
  overflow: hidden;
}
.reg-v2__fda::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 95% 5%, rgba(255,255,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 5% 95%, rgba(251, 191, 36, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.reg-v2__fda-seal {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.reg-v2__fda-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}
.reg-v2__fda-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.reg-v2__fda-eyebrow {
  display: block;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}
.reg-v2__fda-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.125rem, 1.7vw, 1.375rem);
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}
.reg-v2__fda-body {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 620px;
}
.reg-v2__fda-status {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  padding-left: clamp(0.5rem, 1.5vw, 1.25rem);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.reg-v2__fda-check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #16a34a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.42);
}
.reg-v2__fda-status-label {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}

/* Footer-note inside section (not page footer) */
.reg-v2__footer-note {
  text-align: center;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--titanium);
}

/* Responsive */
@media (max-width: 1024px) {
  .reg-v2__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .reg-v2__fda {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.75rem 1.5rem;
  }
  .reg-v2__fda-seal {
    margin: 0 auto;
    width: 100px;
    height: 100px;
  }
  .reg-v2__fda-body {
    margin-left: auto;
    margin-right: auto;
  }
  .reg-v2__fda-status {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 0;
    padding-top: 1rem;
    flex-direction: row;
  }
}
@media (max-width: 560px) {
  .reg-v2__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .reg-v2__card {
    padding: 1.5rem 1.25rem;
  }
}

/* Legacy fallback (in case any external linker hits old class names) */
.reg-table { display: none; }
.reg-row { display: none; }

/* ---------- DISTRIBUTOR CTA v2 (light theme rebuild — Screenshot 2026-04-28 224941) ---------- */
.section--distributor-cta {
  background: linear-gradient(135deg, #0f1d3a 0%, #0c1428 100%);
  color: #fff;
  padding: clamp(5rem, 10vw, 7.5rem) 0;
}
.section--dist-v2 {
  background: linear-gradient(180deg, #fafbff 0%, #f3f5fb 100%);
  color: var(--dark);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}
.section--dist-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 56px; height: 3px;
  transform: translateX(-50%);
  background: var(--accent);
  border-radius: 2px;
}

/* TOP split: text+buttons (left), image (right) */
.dist-v2__top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto clamp(2.5rem, 4.5vw, 3.5rem);
}
.dist-v2__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--dark);
  margin: 0 0 1rem;
  text-wrap: balance;
}
.dist-v2__highlight {
  color: var(--accent);
}
.dist-v2__sub {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--steel);
  margin: 0 0 1.75rem;
  max-width: 540px;
}

/* Vertical button stack */
.dist-v2__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 480px;
}
.dist-v2__btn {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.dist-v2__btn-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dist-v2__btn-label {
  flex: 1;
}
.dist-v2__btn-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  opacity: 0.6;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.dist-v2__btn:hover .dist-v2__btn-arrow {
  transform: translateX(4px);
  opacity: 1;
}
.dist-v2__btn--primary {
  background: var(--accent);
  color: #ffffff;
  border: 1px solid var(--accent);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.32);
}
.dist-v2__btn--primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
  color: #ffffff;
}
.dist-v2__btn--outline {
  background: #ffffff;
  color: var(--dark);
  border: 1px solid #e3e7f1;
}
.dist-v2__btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.12);
}
.dist-v2__btn--outline .dist-v2__btn-icon {
  color: var(--steel);
}
.dist-v2__btn--outline:hover .dist-v2__btn-icon {
  color: var(--accent);
}

/* Visual frame on right */
.dist-v2__visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dist-v2__visual img {
  width: 100%;
  height: auto;
  max-width: 460px;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(37, 99, 235, 0.18));
}

/* Bottom contact block */
.dist-v2__contact {
  max-width: 1180px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 4px 22px rgba(15, 29, 58, 0.04);
}
.dist-v2__contact-head {
  margin-bottom: 1.25rem;
}
.dist-v2__contact-overline {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.dist-v2__contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: flex-start;
}
.dist-v2__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.dist-v2__contact-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-subtle);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dist-v2__contact-body {
  min-width: 0;
}
.dist-v2__contact-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.dist-v2__contact-value {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--steel);
}
.dist-v2__contact-value a {
  color: var(--steel);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.dist-v2__contact-value a:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 980px) {
  .dist-v2__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .dist-v2__visual {
    order: -1;
    max-width: 380px;
    margin: 0 auto;
  }
  .dist-v2__sub {
    max-width: 100%;
  }
  .dist-v2__buttons {
    max-width: 100%;
  }
  .dist-v2__contact-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
@media (max-width: 560px) {
  .dist-v2__btn {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
  .dist-v2__contact {
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
  }
}
.dist-cta__header { max-width: 820px; margin: 0 auto 3rem; text-align: center; }
.dist-cta__header .sh__label {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 1rem;
  padding: 0.375rem 0.875rem;
  background: rgba(59,130,246,0.12);
  border-radius: 999px;
}
.dist-cta__header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}
.dist-cta__header p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 700px;
  margin: 0 auto;
}

.dist-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1120px;
  margin: 0 auto 3rem;
}
.dist-action {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.dist-action:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
}
.dist-action h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}
.dist-action p {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  flex: 1;
}
.dist-action .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.dist-contact {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.dist-contact__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.dist-contact__label {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.dist-contact__value {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.dist-contact__value a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); transition: border-color 0.2s; }
.dist-contact__value a:hover { border-bottom-color: var(--accent-bright); }

@media (max-width: 860px) {
  .dist-actions { grid-template-columns: 1fr; }
  .dist-contact { grid-template-columns: 1fr; gap: 1.125rem; padding: 1.5rem; }
}

/* ---------- FOOTER REGULATORY STRIP ---------- */
.footer__regulatory {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 1rem;
}

/* ================================================================
   EVIDENCE V2 — distributor-pitch redesign (2026-04-28, v3 brand-blue)
   Headline + 4 stat cards (brand-blue) + results line + kurzinfo/CTA panel
   Reference: Screenshot 2026-04-28 133438.png
   Color palette: light lavender-blue cards (#eef1f8), brand-blue numbers
   (#2563eb), indigo-violet primary CTA (#5d3df5)
   ================================================================ */
.section--evidence-v2 {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.section--evidence-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 88% 8%, rgba(99,102,241,0.05) 0%, transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  pointer-events: none;
  z-index: 0;
}
.evidence-v2__decoration {
  position: absolute;
  top: -4%;
  right: -8%;
  width: 50%;
  max-width: 680px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  transform: rotate(-3deg);
}
.evidence-v2__decoration img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: linear-gradient(235deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 35%, rgba(0,0,0,0.7) 65%, rgba(0,0,0,0) 96%);
          mask-image: linear-gradient(235deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 35%, rgba(0,0,0,0.7) 65%, rgba(0,0,0,0) 96%);
}
.evidence-v2 {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

/* Head */
.evidence-v2__head {
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.evidence-v2__overline {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--titanium);
  margin-bottom: 1.1rem;
}
.evidence-v2__title {
  font-family: var(--font);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin: 0 0 1rem;
}
.evidence-v2__sub {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: var(--steel);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 680px;
}

/* Stats — 4 columns, light lavender-blue cards */
.evidence-v2__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.875rem, 1.4vw, 1.25rem);
  margin-bottom: 1.75rem;
}
.ev-stat {
  background: #eef1f8;
  border: 1px solid #e3e7f1;
  border-radius: 16px;
  padding: clamp(1.6rem, 2.4vw, 2.1rem) clamp(1rem, 1.6vw, 1.4rem);
  text-align: center;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.ev-stat:hover {
  transform: translateY(-3px);
  background: #e8ecf6;
  border-color: rgba(37,99,235,0.28);
}
.ev-stat__value {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  color: #2563eb;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 0.7rem;
}
.ev-stat__plus {
  font-size: clamp(1.85rem, 3vw, 2.3rem);
  font-weight: 800;
  align-self: flex-start;
  line-height: 1;
  margin-top: 0.18em;
}
.ev-stat__num {
  font-size: clamp(2.75rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
}
.ev-stat__pct {
  font-size: clamp(1.5rem, 2.4vw, 1.8rem);
  font-weight: 700;
  align-self: flex-start;
  line-height: 1;
  margin-top: 0.22em;
}
.ev-stat__arrow {
  color: #2563eb;
  align-self: flex-start;
  margin-top: 0.18em;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.ev-stat__label {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 500;
  color: var(--steel);
  line-height: 1.4;
}

/* Results line under stats */
.evidence-v2__results {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  text-align: center;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: var(--dark);
  line-height: 1.55;
  margin: 0 auto clamp(2rem, 3.6vw, 2.75rem);
  max-width: 760px;
  font-weight: 500;
}
.evidence-v2__results::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M5 10.5l3.2 3.2L15 7' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/72% no-repeat;
  box-shadow: 0 2px 8px rgba(90,158,62,0.35);
}
.evidence-v2__results strong {
  color: #2563eb;
  font-weight: 700;
}

/* Bottom panel: Kurzinfo (left, 3-column row) + CTA (right) */
.evidence-v2__panel {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  background: #eef1f8;
  border: 1px solid #e3e7f1;
  border-radius: 16px;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(1.5rem, 2.6vw, 2.25rem);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.evidence-v2__divider {
  display: none;
}
.evidence-v2__kurzinfo {
  display: flex;
  flex-direction: column;
}
.evidence-v2__kurzinfo-overline {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--titanium);
  margin-bottom: 1.1rem;
}
.evidence-v2__kurzinfo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.4vw, 1.25rem);
  align-items: center;
}
.ev-ki-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.35;
}
.ev-ki-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #ffffff;
  color: #5d3df5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(93, 61, 245, 0.15);
}
.ev-ki-icon svg {
  width: 18px;
  height: 18px;
}

/* CTA right side */
.evidence-v2__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 0.4rem;
  border-left: 1px solid #d9deeb;
  padding-left: clamp(1.25rem, 2.5vw, 2rem);
}
.evidence-v2__cta-title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  letter-spacing: -0.005em;
}
.evidence-v2__cta-desc {
  font-size: 0.8125rem;
  color: var(--steel);
  line-height: 1.5;
  margin: 0 0 0.75rem;
}
.evidence-v2__cta-btn {
  align-self: stretch;
  justify-content: center;
}

/* Violet/Indigo primary button (Studie ansehen / herunterladen) */
.btn--violet {
  background: #5d3df5;
  color: #fff;
  padding: 0.9rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(93, 61, 245, 0.32);
}
.btn--violet:hover {
  background: #4c2cdb;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(93, 61, 245, 0.45);
}
.btn--violet svg {
  width: 16px;
  height: 16px;
}

/* Responsive — intermediate (tablet landscape, narrow desktop) */
@media (max-width: 1100px) {
  .evidence-v2__panel {
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }
  .evidence-v2__kurzinfo-list {
    gap: 0.75rem;
  }
}
/* Tablet portrait */
@media (max-width: 980px) {
  .section--evidence-v2 {
    padding: clamp(3.5rem, 7vw, 5rem) 0;
  }
  .evidence-v2__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
  .evidence-v2__panel {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.75rem 2rem;
    gap: 1.5rem;
  }
  .evidence-v2__kurzinfo-list {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  .evidence-v2__cta {
    border-left: none;
    border-top: 1px solid #d9deeb;
    padding-left: 0;
    padding-top: 1.5rem;
    align-items: flex-start;
  }
  .evidence-v2__cta-btn {
    align-self: stretch;
  }
  .evidence-v2__decoration {
    width: 80%;
    opacity: 0.28;
    top: -3%;
    right: -28%;
    transform: rotate(-2deg);
  }
}
/* Phone landscape / small tablet */
@media (max-width: 720px) {
  .evidence-v2__panel {
    padding: 1.5rem 1.25rem 1.75rem;
    border-radius: 14px;
  }
  .ev-stat {
    border-radius: 14px;
  }
}
/* Phone portrait */
@media (max-width: 560px) {
  .section--evidence-v2 {
    padding: 3rem 0;
  }
  .evidence-v2__stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  .ev-stat {
    padding: 1.4rem 1.25rem;
  }
  .ev-stat__value {
    margin-bottom: 0.5rem;
  }
  .evidence-v2__head {
    margin-bottom: clamp(1.75rem, 5vw, 2.25rem);
  }
  .evidence-v2__results {
    margin-bottom: 1.75rem;
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  .ev-ki-item {
    font-size: 0.875rem;
  }
  .evidence-v2__decoration {
    display: none;
  }
}
/* Tiny phone */
@media (max-width: 380px) {
  .ev-stat__num {
    font-size: 2.5rem;
  }
  .ev-stat__plus,
  .ev-stat__pct {
    font-size: 1.5rem;
  }
  .evidence-v2__panel {
    padding: 1.25rem 1rem 1.5rem;
  }
}

/* ================================================================
   BUSINESS CASE V2 — distributor pitch (2026-04-28)
   Zone 1: dark navy intro (headline + 3-col kernbotschaft)
   Zone 2: light args (overline + 3 selling-point tiles + 5-bullet detail)
   Reference: Screenshot 2026-04-28 141924.png
   ================================================================ */
.section--bc-v2 {
  padding: 0;
  position: relative;
  background: #ffffff;
}

/* ---------- ZONE 1: Dark intro ---------- */
.bc-v2__intro {
  position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 80% 10%, rgba(37,99,235,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(93,61,245,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0c1428 0%, #0f1d3a 100%);
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(4.5rem, 9vw, 6.5rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.bc-v2__intro::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 64px; height: 3px;
  transform: translateX(-50%);
  background: var(--accent);
  border-radius: 2px;
}

/* Head */
.bc-v2__head {
  max-width: 820px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  z-index: 1;
}
.bc-v2__overline {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 1.1rem;
  padding: 0.4rem 0.95rem;
  background: rgba(37,99,235,0.18);
  border: 1px solid rgba(37,99,235,0.28);
  border-radius: 999px;
}
.bc-v2__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}
.bc-v2__sub {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 760px;
  margin: 0 auto;
}

/* 3-column kernbotschaft */
.bc-v2__kern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bc-kern-item {
  text-align: center;
  padding: 1.5rem 1rem;
}
.bc-kern-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.32);
  color: #93c5fd;
  margin-bottom: 1.25rem;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.bc-kern-item:hover .bc-kern-item__icon {
  background: rgba(37,99,235,0.25);
  transform: translateY(-3px);
}
.bc-kern-item__icon svg {
  width: 30px;
  height: 30px;
}
.bc-kern-item__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0 0 0.6rem;
  line-height: 1.2;
}
.bc-kern-item__desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- ZONE 2: Light args ---------- */
.bc-v2__args {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
}
.bc-v2__args-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.bc-v2__args-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--titanium);
  margin-bottom: 0.875rem;
}
.bc-v2__args-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--dark);
  margin: 0;
  text-wrap: balance;
}

/* Selling-point tiles (3 or 4 per row) */
.bc-v2__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.8vw, 1.5rem);
  max-width: 1180px;
  margin: 0 auto;
}
.bc-v2__tiles--4 {
  grid-template-columns: repeat(4, 1fr);
}
.bc-v2__tile {
  background: #ffffff;
  border: 1px solid #e6eaf2;
  border-radius: 16px;
  padding: clamp(1.5rem, 2.4vw, 2rem) clamp(1.25rem, 2vw, 1.75rem);
  text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 4px 18px rgba(15,29,58,0.04);
}
.bc-v2__tile:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,0.25);
  box-shadow: 0 16px 40px rgba(37,99,235,0.10);
}
.bc-v2__tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-subtle);
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.bc-v2__tile-icon svg {
  width: 26px;
  height: 26px;
}
.bc-v2__tile-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.3;
  color: var(--dark);
  letter-spacing: -0.005em;
  margin: 0 0 0.7rem;
  text-wrap: balance;
  min-height: 2.6em; /* reserve space for up to 2 title lines so descriptions align across columns */
}
.bc-v2__tile-desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--steel);
  margin: 0;
}

/* Detail block: 5 bullets, 2-col grid */
.bc-v2__details {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e6eaf2;
  border-radius: 16px;
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 4px 18px rgba(15,29,58,0.04);
}
.bc-v2__details-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem 2rem;
}
.bc-v2__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--dark);
  font-weight: 500;
}
.bc-v2__detail-tick {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}
.bc-v2__detail-tick svg {
  width: 14px;
  height: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .bc-v2__kern {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .bc-v2__tiles--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .bc-v2__intro {
    padding: clamp(3.5rem, 7vw, 5rem) 0 clamp(3rem, 6vw, 4.5rem);
  }
  .bc-v2__kern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 480px;
  }
  .bc-kern-item {
    padding: 1rem;
  }
  .bc-v2__tiles,
  .bc-v2__tiles--4 {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
  .bc-v2__tile-title {
    min-height: 0; /* single-column stack — no need to reserve title space */
  }
}
@media (max-width: 560px) {
  .bc-v2__tile {
    padding: 1.5rem 1.25rem;
  }
}

/* ================================================================
   WORKFLOW V2 — Funktionsweise (2026-04-28)
   Dark navy section with: head + 2 rows
   Row 1: 3 numbered steps (left) + Produktvideo (right)
   Row 2: 4K-text (left) + 4K-video (right)
   Reference: Screenshot 2026-04-28 143716.png
   ================================================================ */
.section--workflow-v2 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 8% 100%, rgba(93,61,245,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(37,99,235,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #0c1428 0%, #0f1d3a 100%);
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  color: #ffffff;
}
.section--workflow-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 64px; height: 3px;
  transform: translateX(-50%);
  background: var(--accent);
  border-radius: 2px;
}

/* Head */
.workflow-v2__head {
  max-width: 820px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  z-index: 1;
}
.workflow-v2__overline {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 1.1rem;
  padding: 0.4rem 0.95rem;
  background: rgba(37,99,235,0.18);
  border: 1px solid rgba(37,99,235,0.28);
  border-radius: 999px;
}
.workflow-v2__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 1.1rem;
  text-wrap: balance;
}
.workflow-v2__sub {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 720px;
  margin: 0 auto;
}

/* Row layout (2-col, image right) */
.workflow-v2__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}
/* Steps row — both columns top-aligned and same visual height; video slightly smaller */
.workflow-v2__row--steps {
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
}
.workflow-v2__row--steps .workflow-v2__video-block {
  display: flex;
  flex-direction: column;
}
.workflow-v2__row--steps .workflow-v2__video-frame {
  flex: 1;
  aspect-ratio: auto;
  min-height: 280px;
}
.workflow-v2__row:last-child {
  margin-bottom: 0;
}
/* Alternate alignment on second row (text right, video left) — optional */
.workflow-v2__row--4k {
  grid-template-columns: 1fr 1.4fr;
}
/* Solo 4K video row (legacy — no longer used) */
.workflow-v2__row--4k-solo {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
}
.workflow-v2__row--4k-solo .workflow-v2__4k-video {
  width: 100%;
}
.workflow-v2__video-frame--wide {
  aspect-ratio: 16 / 9;
  max-width: 100%;
}

/* Klinisches Video block — centered text + buttons + disclaimer (no thumbnail, no description) */
.workflow-v2__row--clinical {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.workflow-v2__clinical-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.workflow-v2__row--clinical .workflow-v2__col-eyebrow {
  margin-bottom: 0.75rem;
}
.workflow-v2__row--clinical .workflow-v2__col-title {
  margin-bottom: 1.5rem;
}
.workflow-v2__clinical-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  justify-content: center;
}
.workflow-v2__clinical-actions .btn {
  font-size: 0.875rem;
}
.workflow-v2__clinical-notice {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
  max-width: 620px;
  padding: 0.875rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid rgba(220, 38, 38, 0.6);
  border-radius: 6px;
  text-align: left;
}
.workflow-v2__clinical-notice svg {
  flex-shrink: 0;
  color: rgba(248, 113, 113, 0.8);
  margin-top: 0.15rem;
}

/* Clickable video thumbnail */
.workflow-v2__video-frame--clinical {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  cursor: pointer;
  padding: 0;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.workflow-v2__video-frame--clinical:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
.workflow-v2__clinical-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
  transition: filter 0.4s var(--ease), transform 0.6s var(--ease);
}
.workflow-v2__video-frame--clinical:hover .workflow-v2__clinical-poster {
  filter: brightness(0.85);
  transform: scale(1.03);
}
.workflow-v2__clinical-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.92);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.45);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.workflow-v2__video-frame--clinical:hover .workflow-v2__clinical-overlay {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(37, 99, 235, 1);
}
.workflow-v2__clinical-overlay svg {
  margin-left: 4px;
}
.workflow-v2__clinical-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(220, 38, 38, 0.85);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

@media (max-width: 560px) {
  .workflow-v2__clinical-overlay {
    width: 60px;
    height: 60px;
  }
  .workflow-v2__clinical-overlay svg {
    width: 22px;
    height: 22px;
  }
  .workflow-v2__clinical-badge {
    font-size: 0.625rem;
    padding: 0.35rem 0.65rem;
  }
}

/* Column eyebrow + title shared */
.workflow-v2__col-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 0.85rem;
}
.workflow-v2__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin: 0 0 1.5rem;
  text-wrap: balance;
}
.workflow-v2__col-desc {
  font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0 0 1.5rem;
}

/* 3 Steps (vertical list) */
.workflow-v2__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.wf-step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.wf-step:hover {
  background: rgba(37,99,235,0.08);
  border-color: rgba(37,99,235,0.25);
}
.wf-step__num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(37,99,235,0.18);
  border: 1px solid rgba(37,99,235,0.32);
  color: #93c5fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}
.wf-step__content {
  flex: 1;
  min-width: 0;
}
.wf-step__tag {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: -0.005em;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.wf-step__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin: 0;
}

/* Video frame */
.workflow-v2__video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 10;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
}
.workflow-v2__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 4K features list */
.workflow-v2__4k-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.workflow-v2__4k-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.4;
}
.wf-feat__tick {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37,99,235,0.18);
  color: #93c5fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wf-feat__tick svg {
  width: 12px;
  height: 12px;
}

/* Responsive */
@media (max-width: 980px) {
  .workflow-v2__row,
  .workflow-v2__row--4k,
  .workflow-v2__row--steps {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: stretch;
  }
  .workflow-v2__row--steps .workflow-v2__video-frame {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
  .workflow-v2__steps-block {
    order: 1;
  }
  .workflow-v2__video-block {
    order: 2;
  }
  .workflow-v2__4k-text {
    order: 1;
  }
  .workflow-v2__4k-video {
    order: 2;
  }
}
@media (max-width: 560px) {
  .section--workflow-v2 {
    padding: clamp(3rem, 7vw, 4.5rem) 0;
  }
  .wf-step {
    padding: 0.875rem 1rem;
    gap: 0.875rem;
  }
  .wf-step__num {
    width: 34px;
    height: 34px;
    font-size: 0.875rem;
  }
  .workflow-v2__video-frame {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }
}

/* ================================================================
   ABOUT V2 — Unternehmen (2026-04-28)
   Light section: top split (text + product image), 2 credibility cards,
   "Unsere Stärken" heading + 3 icon cards, disclaimer line
   Reference: Screenshot 2026-04-28 212625.png
   ================================================================ */
.section--about-v2 {
  position: relative;
  background:
    radial-gradient(ellipse 50% 40% at 90% 5%, rgba(37,99,235,0.05) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  padding: clamp(3.25rem, 6.5vw, 5rem) 0;
  overflow: hidden;
}

/* TOP split */
.about-v2__top {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.about-v2__overline {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.about-v2__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin: 0 0 1.5rem;
  text-wrap: balance;
}
.about-v2__sub {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--dark);
  margin: 0 0 1.25rem;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.about-v2__kernbotschaft {
  font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
  line-height: 1.7;
  color: var(--steel);
  margin: 0;
  max-width: 580px;
}

/* Visual frame — landscape photo (engineer at CAD station) */
.about-v2__visual-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #0f1d3a;
  aspect-ratio: 16 / 10;
  box-shadow: 0 18px 50px rgba(15, 29, 58, 0.18);
  border: 1px solid #e6eaf2;
}
.about-v2__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Credibility row */
.about-v2__credibility {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1180px;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}
.ab-cred-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e6eaf2;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 18px rgba(15,29,58,0.04);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.ab-cred-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37,99,235,0.25);
}
.ab-cred-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-subtle);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ab-cred-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--dark);
  letter-spacing: -0.005em;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}
.ab-cred-card__desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--steel);
  margin: 0;
}

/* Strengths */
.about-v2__strengths-head {
  text-align: center;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.about-v2__strengths-overline {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
}
.about-v2__strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1180px;
  margin: 0 auto;
}
.ab-strength-card {
  background: #ffffff;
  border: 1px solid #e6eaf2;
  border-radius: 16px;
  padding: clamp(1.5rem, 2.2vw, 1.875rem) clamp(1.25rem, 2vw, 1.75rem);
  text-align: center;
  box-shadow: 0 4px 18px rgba(15,29,58,0.04);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.ab-strength-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,0.25);
  box-shadow: 0 16px 40px rgba(37,99,235,0.10);
}
.ab-strength-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.ab-strength-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.3;
  color: var(--dark);
  margin: 0 0 0.6rem;
  letter-spacing: -0.005em;
  text-wrap: balance;
  min-height: 2.6em; /* reserve space for up to 2 title lines so descriptions align across columns */
}
.ab-strength-card__desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--steel);
  margin: 0;
}

/* Disclaimer */
.about-v2__disclaimer {
  max-width: 980px;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) auto 0;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--titanium);
  font-style: italic;
  padding: 0 1rem;
}

/* Responsive */
@media (max-width: 980px) {
  .about-v2__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-v2__visual {
    order: -1;
  }
  .about-v2__visual-frame {
    aspect-ratio: 16 / 9;
    max-width: 720px;
    margin: 0 auto;
  }
  .about-v2__strengths {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .about-v2__credibility {
    grid-template-columns: 1fr;
  }
  .about-v2__strengths {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
  .ab-strength-card {
    padding: 1.5rem 1.5rem;
  }
  .ab-strength-card__title {
    min-height: 0; /* single-column stack — no need to reserve title space */
  }
}
@media (max-width: 480px) {
  .about-v2__visual-frame {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }
  .ab-cred-card {
    padding: 1.125rem 1.25rem;
    gap: 0.875rem;
  }
}
