/* LUMGEX Retail Landing — Clean CSS */
/* Based on Veylo/Framer template visual design */

:root {
  --color-primary: #1a5f7a;
  --color-primary-dark: #134d64;
  --color-text: #525870;
  --color-text-light: rgba(82, 88, 112, 0.7);
  --color-accent: #2a96b4;
  --color-white: #ffffff;
  --color-bg: #f8f9fc;
  --color-border: rgba(82, 88, 112, 0.12);
  --color-card-bg: rgba(255, 255, 255, 0.8);
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --section-padding: 100px 24px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  font-size: 16px;
}

/* Page wrapper clips ALL horizontal overflow — prevents 1836px wheel from shifting viewport */
.page-wrapper {
  overflow-x: clip;
  width: 100%;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: 56px; letter-spacing: -1.5px; }
h2 { font-size: 42px; letter-spacing: -1px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  color: var(--color-text);
  line-height: 1.7;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1080px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 8px 8px 8px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: fadeInDown 0.6s ease both;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 36px;
  width: auto;
  border-radius: 0;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.navbar-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-text);
}

.navbar-links a:hover {
  color: var(--color-primary);
  opacity: 1;
}

.navbar .btn-primary {
  padding: 11px 22px;
  font-size: 14px;
  border-radius: 10px;
}

/* ═══════════════════════════════════════════════════════════
   LANGUAGE SWITCHER (navbar dropdown — 5 EU languages)
═══════════════════════════════════════════════════════════ */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
  margin: 0 10px 0 0;
}
.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px 9px 10px;
  min-height: 36px;
  background: var(--color-white, #fff);
  border: 1px solid var(--color-border, rgba(82, 88, 112, 0.16));
  border-radius: 10px;
  font-family: var(--font-heading), system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text, #134d64);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  line-height: 1;
}
.lang-switcher__btn:hover {
  background: #f8f9fc;
  border-color: rgba(26, 95, 122, 0.35);
}
/* Focus ring — visible on any focus (keyboard + programmatic + click).
   We accept a brief ring on mouse clicks because (a) it reinforces the
   clickable affordance, and (b) it guarantees WCAG 2.4.7 compliance
   across browsers/engines, including headless contexts that evaluate
   :focus-visible heuristics differently. */
.lang-switcher__btn:focus {
  outline: none;
  border-color: rgba(26, 95, 122, 0.65);
  box-shadow: 0 0 0 3px rgba(42, 150, 180, 0.28);
}
.lang-switcher__flag {
  font-size: 16px;
  line-height: 1;
  display: inline-block;
}
.lang-switcher__label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(82, 88, 112, 0.85);
}
.lang-switcher__chevron {
  font-size: 9px;
  color: rgba(82, 88, 112, 0.55);
  margin-left: 2px;
  transition: transform 0.2s;
}
.lang-switcher.is-open .lang-switcher__chevron { transform: rotate(180deg); }

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--color-white, #fff);
  border: 1px solid var(--color-border, rgba(82, 88, 112, 0.16));
  border-radius: 12px;
  box-shadow: 0 12px 40px -12px rgba(15, 30, 40, 0.22);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  z-index: 1001;
}
.lang-switcher.is-open .lang-switcher__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-switcher__menu li { margin: 0; }
.lang-switcher__menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading), system-ui, sans-serif;
  font-size: 14px;
  color: var(--color-text, #134d64);
  cursor: pointer;
  text-align: left;
  transition: background 0.12s, box-shadow 0.12s;
}
.lang-switcher__menu button:hover { background: #f1f5f9; }
.lang-switcher__menu button:focus {
  outline: none;
  background: #eef5f8;
  box-shadow: inset 0 0 0 2px rgba(42, 150, 180, 0.6);
}
.lang-switcher__menu button.is-active {
  background: rgba(42, 150, 180, 0.12);
  color: #134d64;
  font-weight: 600;
}

/* Mobile: enlarge option touch targets to WCAG AAA ≥44px */
@media (max-width: 720px) {
  .lang-switcher__menu button { min-height: 44px; padding: 11px 14px; }
}
.lang-switcher__menu button .lang-switcher__flag { font-size: 17px; }

/* Mobile: hide trigger label, keep flag + chevron only */
@media (max-width: 720px) {
  .lang-switcher__label { display: none; }
  .lang-switcher__btn { padding: 8px 9px; gap: 4px; }
  .lang-switcher { margin: 0 6px 0 0; }
  .lang-switcher__menu { right: -4px; min-width: 170px; }
}

/* Chatbot header notice (shown when UI language != EN). Lives inside the
   dark-teal chatbot header (bg #0c3344 → #134556), so text must be light
   with enough contrast to meet WCAG AA on that gradient. */
.chatbot-lang-notice {
  display: block;
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.10);
  border-left: 2px solid #5ac4d8;
  border-radius: 6px;
  font-family: var(--font-body), system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #e8f3f6;
  letter-spacing: 0.01em;
}
.chatbot-lang-notice[hidden] { display: none; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  opacity: 1;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-outline:hover {
  background: var(--color-bg);
  opacity: 1;
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar-hamburger span {
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.3s;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE MENU — full-screen drawer (mobile + tablet)
   Structure: topbar (logo + close) / nav links / footer (CTA + meta).
═══════════════════════════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-white, #ffffff);
  z-index: 1050;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.active {
  display: flex;
  animation: mobileMenuFadeIn 0.2s ease-out both;
}
@keyframes mobileMenuFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Topbar: brand + close --- */
.mobile-menu__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  min-height: 72px;
  border-bottom: 1px solid rgba(26, 95, 122, 0.08);
  flex-shrink: 0;
}
.mobile-menu__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.mobile-menu__logo img {
  height: 32px;
  width: auto;
  display: block;
}
.mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(26, 95, 122, 0.06);
  border: 1px solid rgba(26, 95, 122, 0.14);
  border-radius: 12px;
  color: #134d64;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  flex-shrink: 0;
}
.mobile-menu__close:hover {
  background: rgba(26, 95, 122, 0.12);
  border-color: rgba(26, 95, 122, 0.32);
}
.mobile-menu__close:focus {
  outline: none;
  border-color: rgba(26, 95, 122, 0.65);
  box-shadow: 0 0 0 3px rgba(42, 150, 180, 0.28);
}
.mobile-menu__close:active {
  transform: scale(0.96);
}
.mobile-menu__close svg {
  display: block;
}

/* --- Nav links (vertical stack, big tap targets) --- */
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 14px 12px;
  flex: 1 1 auto;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  font-family: var(--font-heading, 'DM Serif Display'), 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #134d64;
  letter-spacing: -0.2px;
  line-height: 1.2;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  position: relative;
}
.mobile-menu__link + .mobile-menu__link {
  border-top: 1px solid rgba(26, 95, 122, 0.06);
}
.mobile-menu__link::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(19, 77, 100, 0.35);
  border-bottom: 1.5px solid rgba(19, 77, 100, 0.35);
  transform: rotate(-45deg);
  margin-left: 12px;
  flex-shrink: 0;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.mobile-menu__link:hover,
.mobile-menu__link:active {
  background: rgba(26, 95, 122, 0.05);
  color: #0f3d50;
}
.mobile-menu__link:hover::after {
  border-color: #2a96b4;
  transform: rotate(-45deg) translate(2px, 2px);
}
.mobile-menu__link:focus {
  outline: none;
  background: rgba(42, 150, 180, 0.08);
  box-shadow: inset 0 0 0 2px rgba(42, 150, 180, 0.45);
}

/* --- Footer: CTA + meta --- */
.mobile-menu__footer {
  padding: 20px 20px 28px;
  border-top: 1px solid rgba(26, 95, 122, 0.08);
  background: #f8fafc;
  flex-shrink: 0;
}
.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: #134d64;
  color: #ffffff;
  border-radius: 12px;
  font-family: var(--font-heading, 'DM Serif Display'), 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 22px -10px rgba(15, 30, 40, 0.45);
  min-height: 52px;
}
.mobile-menu__cta:hover {
  background: #0f3d50;
  color: #ffffff;
}
.mobile-menu__cta:focus {
  outline: none;
  box-shadow: 0 8px 22px -10px rgba(15, 30, 40, 0.45),
              0 0 0 3px rgba(42, 150, 180, 0.35);
  color: #ffffff;
}
.mobile-menu__cta:active {
  transform: translateY(1px);
  box-shadow: 0 4px 14px -8px rgba(15, 30, 40, 0.45);
}
.mobile-menu__meta {
  margin: 14px 0 0;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(82, 88, 112, 0.55);
}

/* ===== HERO ===== */
.hero {
  padding: 112px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, #134d64 0%, #1a5f7a 15%, #2a7a95 30%, #3d94ad 45%, #5aadca 55%, #7ec3dc 68%, #a4d8ea 78%, #c8e8f2 86%, #e4f2f8 92%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  min-height: auto;
}

/* .hero-bg-image rule removed 2026-04-14 — referenced deleted hero-eu-map.png and had no matching HTML element */

/* Grid overlay like email branding */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 65%, rgba(0,0,0,0) 80%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 65%, rgba(0,0,0,0) 80%);
  pointer-events: none;
  z-index: 1;
}

/* Cloud fade — long soft dissolve across full width so shields melt into white */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 360px;
  background: linear-gradient(to top,
    #ffffff 0%,
    #ffffff 18%,
    rgba(255,255,255,0.88) 38%,
    rgba(255,255,255,0.62) 58%,
    rgba(255,255,255,0.28) 78%,
    rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 5;
}

.hero-badge,
.hero-gold-rule,
.hero h1,
.hero-subtitle,
.hero-cta {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeInDown 0.8s ease both;
}

.hero-gold-rule {
  width: 60px;
  height: 3px;
  background: #2a96b4;
  opacity: 0.9;
  margin: 0 auto 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

/* Fade-in animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  max-width: 700px;
  margin: 0 auto 12px;
  color: #ffffff;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-subtitle {
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}

.hero-cta {
  animation: fadeInUp 0.8s ease 0.45s both;
}

/* Primary CTA — deep teal + white text: the single high-contrast action */
.hero-cta .btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 15px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(19, 77, 100, 0.32);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.hero-cta .btn-primary::after {
  content: "\2192";
  margin-left: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  transform: translateX(0);
  transition: transform 0.25s ease;
}

.hero-cta .btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(19, 77, 100, 0.42);
  opacity: 1;
}

.hero-cta .btn-primary:hover::after {
  transform: translateX(4px);
}

.hero-cta .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(19, 77, 100, 0.4);
}

/* .hero-shields, .hero-carousel, .hero-cards, .hero-card rules removed 2026-04-14 — related HTML elements no longer exist */

/* ===== SECTION COMMONS ===== */
.section {
  padding: var(--section-padding);
}

.section-label {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 560px;
  margin-bottom: 48px;
  font-size: 17px;
}

.section-centered {
  text-align: center;
}

.section-centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== LOGO STRIP ===== */
.logo-strip {
  padding: 48px 0;
  background: var(--color-white);
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.15) 8%, rgba(0,0,0,0.55) 16%, #000 24%, #000 76%, rgba(0,0,0,0.55) 84%, rgba(0,0,0,0.15) 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.15) 8%, rgba(0,0,0,0.55) 16%, #000 24%, #000 76%, rgba(0,0,0,0.55) 84%, rgba(0,0,0,0.15) 92%, transparent 100%);
}

.logo-strip-track {
  display: flex;
  width: max-content;
  animation: logo-marquee 55s linear infinite;
  animation-delay: -27.5s;
}

.logo-strip-group {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  flex-shrink: 0;
}

.logo-strip-track img {
  height: 28px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.logo-strip-track img:hover {
  opacity: 1;
}

.logo-strip-link {
  display: inline-flex;
  align-items: center;
}

.logo-strip-link img {
  height: 36px;
}

@keyframes logo-marquee {
  from { transform: translateX(-33.3333%); }
  to   { transform: translateX(0); }
}

/* ===== VIDEO PREVIEW SECTION ===== */
.video-section {
  position: relative;
  padding: 60px 24px 20px;
  background: var(--color-white);
}

.video-frame {
  max-width: 1240px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(19, 77, 100, 0.82) 0%, rgba(19, 77, 100, 0.78) 33%, rgba(26, 99, 120, 0.72) 42%, rgba(42, 122, 149, 0.65) 50%, rgba(61, 148, 173, 0.55) 58%, rgba(90, 173, 202, 0.45) 66%, rgba(126, 195, 220, 0.35) 73%, rgba(164, 216, 234, 0.25) 80%, rgba(200, 232, 242, 0.15) 86%, rgba(228, 242, 248, 0.08) 92%, rgba(255, 255, 255, 0) 100%),
    url('assets/bg/geometric-blue.webp') center/cover no-repeat;
  border-radius: 36px;
  padding: 90px 90px 110px;
  perspective: 1800px;
  perspective-origin: 50% 0%;
  position: relative;
  overflow: hidden;
}

.video-card-wrap {
  transform-style: preserve-3d;
}

.video-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #e8ecf2;
  aspect-ratio: 16 / 9;
  box-shadow:
    0 40px 80px -20px rgba(26, 95, 122, 0.35),
    0 20px 40px -10px rgba(26, 95, 122, 0.18),
    0 0 0 1px rgba(26, 95, 122, 0.06);
  cursor: pointer;
  transform-origin: 50% 0%;
  transform: rotateX(0deg);
  will-change: transform;
}

/* Scroll-driven tilt: starts tilted back, straightens as you scroll into view */
@supports (animation-timeline: view()) {
  .video-card {
    animation: video-tilt linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 45%;
  }

  @keyframes video-tilt {
    from {
      transform: rotateX(28deg) translateY(-10px);
    }
    to {
      transform: rotateX(0deg) translateY(0);
    }
  }
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.video-duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.02em;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background 0.2s;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 0 8px rgba(255, 255, 255, 0.18),
    0 0 0 16px rgba(255, 255, 255, 0.08);
  z-index: 4;
}

.video-play-btn svg path {
  fill: var(--color-primary);
}

/* ===== IR MOCKUP CARD (replaces video placeholder) ===== */
.ir-mockup-card {
  position: relative;
  background: linear-gradient(160deg, #f0f8fc 0%, #e4f0f6 40%, #dce8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 56px;
  cursor: default;
}
.ir-mockup-card::after {
  display: none; /* remove video overlay gradient */
}

.ir-mockup-pdf {
  width: 100%;
  max-width: 720px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(19, 77, 100, 0.18));
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

/* Ice shard decorations */
.ir-mockup-shard {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.ir-mockup-shard--tl {
  top: -20px;
  left: -20px;
  width: 260px;
  height: 260px;
  animation: shardFloat 12s ease-in-out infinite alternate;
}
.ir-mockup-shard--br {
  bottom: -20px;
  right: -20px;
  width: 220px;
  height: 220px;
  animation: shardFloat 14s ease-in-out 2s infinite alternate-reverse;
}

@keyframes shardFloat {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  100% { transform: translate(6px, -4px) rotate(2deg); opacity: 0.7; }
}

@media (prefers-reduced-motion: reduce) {
  .ir-mockup-shard { animation: none !important; }
}

@media (max-width: 768px) {
  .ir-mockup-card { padding: 24px 16px; }
  .ir-mockup-shard--tl { width: 140px; height: 140px; }
  .ir-mockup-shard--br { width: 120px; height: 120px; }
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: #ffffff;
}

.video-play-btn svg {
  margin-left: 4px;
}

/* ===== EU COVERAGE BANNER ===== */
/* ===== IR FEATURE CARDS (replaces coverage banner) ===== */
.ir-features {
  padding: 20px 24px 100px;
  background: var(--color-white);
}

.ir-features-grid {
  display: grid;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.ir-features-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ir-features-grid--2 { grid-template-columns: repeat(2, 1fr); margin-top: 0; }

.ir-features-grid--bento {
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(0, auto);
  margin-top: 0;
}
.ir-features-grid--bento > .ir-feature-card:nth-child(1),
.ir-features-grid--bento > .ir-feature-card:nth-child(2),
.ir-features-grid--bento > .ir-feature-card:nth-child(3) {
  grid-column: span 2;
}
.ir-features-grid--bento > .ir-feature-card:nth-child(4),
.ir-features-grid--bento > .ir-feature-card:nth-child(5) {
  grid-column: span 3;
}

.ir-features-header {
  text-align: center;
  max-width: 760px;
  margin: 110px auto 56px;
}

.ir-features-header .section-label {
  margin-bottom: 22px;
}

.ir-features-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.4vw, 54px);
  line-height: 1.08;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 22px;
  letter-spacing: -0.015em;
}

.ir-features-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
}

/* ============================================================
   CATEGORIES SECTION (Veylo-inspired masonry)
   ============================================================ */
.categories-section {
  position: relative;
  padding: 60px 24px 40px;
  background: var(--color-white);
}

.categories-frame {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(19, 77, 100, 0.82) 0%, rgba(19, 77, 100, 0.78) 33%, rgba(26, 99, 120, 0.72) 42%, rgba(42, 122, 149, 0.65) 50%, rgba(61, 148, 173, 0.55) 58%, rgba(90, 173, 202, 0.45) 66%, rgba(126, 195, 220, 0.35) 73%, rgba(164, 216, 234, 0.25) 80%, rgba(200, 232, 242, 0.15) 86%, rgba(228, 242, 248, 0.08) 92%, rgba(255, 255, 255, 0) 100%),
    url('assets/bg/geometric-dark.webp') center/cover no-repeat;
  border-radius: 36px;
  padding: 110px 80px 120px;
  overflow: hidden;
}

.categories-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 65%, rgba(0,0,0,0) 80%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 65%, rgba(0,0,0,0) 80%);
  pointer-events: none;
}

.categories-header {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  z-index: 1;
}

.categories-header .section-label {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.categories-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  color: #ffffff;
  margin: 12px 0 26px;
  letter-spacing: -0.02em;
}

.categories-subtitle {
  max-width: 620px;
  margin: 0 auto 56px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

/* Uniform 3x3 grid */
.category-grid {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-tile {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 26px 26px;
  box-shadow: 0 4px 28px rgba(26, 95, 122, 0.08);
  border: 1px solid rgba(26, 95, 122, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(26, 95, 122, 0.14);
}

.category-tile__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a5f7a 0%, #2a7a95 100%);
  color: #ffffff;
  flex-shrink: 0;
}

.category-tile__icon svg {
  width: 20px;
  height: 20px;
}

.category-tile__name {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.25;
  color: var(--color-primary);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.category-tile__keywords {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-light);
  flex-grow: 1;
}

.category-tile__reg {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(26, 95, 122, 0.08);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
}

/* Guard variant — tile #10 (Out-of-Scope filter) */
.category-tile--guard {
  background: rgba(255, 248, 230, 0.96);
  border: 1px dashed rgba(180, 130, 20, 0.5);
  box-shadow: 0 4px 24px rgba(180, 130, 20, 0.12);
}

.category-tile--guard .category-tile__icon {
  background: linear-gradient(135deg, #1e7a94 0%, #3db5cc 100%);
}

.category-tile--guard .category-tile__reg {
  color: #8a5a00;
  border-top-color: rgba(180, 130, 20, 0.25);
}

/* Guard + hero combo: harmonize with other hero tiles (white card, image on top)
   Redesign 2026-05-20: __reg now sits inside __body padding, no extra margin needed. */
.categories-section .category-tile--guard.category-tile--hero {
  background: #ffffff;
  border: 1px solid rgba(180, 130, 20, 0.18);
  box-shadow: 0 2px 16px rgba(180, 130, 20, 0.08);
}
.categories-section .category-tile--guard .category-tile__examples li::before {
  background: linear-gradient(135deg, #c89a2e 0%, #e0b552 100%);
  box-shadow: 0 1px 3px rgba(180, 130, 20, 0.3);
}
.categories-section .category-tile--guard.category-tile--hero .category-tile__reg {
  margin: 10px 0 0;
  padding-top: 12px;
  font-size: 10.5px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(180, 130, 20, 0.22);
  color: #8a5a00;
}

/* CTA bar */
.category-cta-bar {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 44px auto 0;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 8px 36px rgba(26, 95, 122, 0.18);
}

.category-cta-bar__copy {
  flex: 1 1 360px;
  min-width: 0;
}

/* Override the flex-basis (360px) in column layout — flex-basis applies to
   the main axis, so when the bar switches to flex-direction: column at
   narrow viewports, 360px becomes a minimum HEIGHT and the card inflates
   with empty space. Collapse it back to auto height. */
@media (max-width: 900px) {
  .category-cta-bar__copy { flex: 0 0 auto; }
}

.category-cta-bar__title {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 4px;
}

.category-cta-bar__sub {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
}

.category-cta-bar__sub a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.category-cta-bar__sub a:hover {
  text-decoration: underline;
}

.category-cta-bar__btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .categories-frame { padding: 80px 48px 90px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .categories-section { padding: 40px 16px 30px; }
  .categories-frame { padding: 60px 24px 70px; border-radius: 24px; }
  .category-grid { grid-template-columns: 1fr; gap: 18px; }
  .category-cta-bar { padding: 22px 22px; flex-direction: column; align-items: flex-start; text-align: left; }
  .category-cta-bar__btn { width: 100%; text-align: center; }
}

.ir-feature-card--simple .ir-feature-body {
  padding: 36px 32px 0;
}
.ir-feature-card--simple { padding-bottom: 34px; }

.ir-feature-card {
  background: var(--color-white);
  border: 1px solid rgba(26, 95, 122, 0.08);
  border-radius: 22px;
  padding: 0 0 34px;
  box-shadow: 0 2px 24px rgba(26, 95, 122, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.ir-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26, 95, 122, 0.08);
}

.ir-feature-visual {
  position: relative;
  height: 220px;
  background: linear-gradient(180deg, #fdf6e3 0%, #faecc4 100%);
  border-bottom: 1px solid rgba(26, 95, 122, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ir-feature-visual svg {
  max-width: 70%;
  max-height: 75%;
  filter: drop-shadow(0 8px 24px rgba(26, 95, 122, 0.12));
}

/* Benefits section — 3-column bento using ir-feature-card pattern */
.benefits-section {
  padding-top: 40px;
  padding-bottom: 80px;
}

.benefits-grid {
  max-width: 1480px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 24px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
}

.benefit-card .ir-feature-body {
  padding-bottom: 6px;
}

.benefit-visual {
  height: 240px;
  background: linear-gradient(180deg, #fdf6e3 0%, #faecc4 100%);
}

@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 22px; max-width: 640px; }
  .benefit-visual { height: 220px; }
}

.ir-feature-visual--photo {
  padding: 0;
  background: #0a2a38;
}
.ir-feature-visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
  max-height: none;
  filter: none;
}

.ir-feature-body {
  padding: 30px 34px 0;
}

.ir-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #35a8c2 0%, #2a96b4 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(42, 150, 180, 0.28);
}

.ir-feature-card h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}

.ir-feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

/* ===== FEATURES / DELIVERABLES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.feature-card p {
  font-size: 15px;
  color: var(--color-text-light);
}

/* ===== PROCESS / HOW IT WORKS ===== */
.process-section {
  background: var(--color-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.process-step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 20px;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.process-step p {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.step-tag {
  padding: 4px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text);
}

/* ===== PRICING (frame + bento cards, template-aligned) ===== */
.pricing-section {
  position: relative;
  padding: 60px 24px 80px;
  background: var(--color-white);
}

.pricing-frame {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(19, 77, 100, 0.82) 0%, rgba(19, 77, 100, 0.78) 33%, rgba(26, 99, 120, 0.72) 42%, rgba(42, 122, 149, 0.65) 50%, rgba(61, 148, 173, 0.55) 58%, rgba(90, 173, 202, 0.45) 66%, rgba(126, 195, 220, 0.35) 73%, rgba(164, 216, 234, 0.25) 80%, rgba(200, 232, 242, 0.15) 86%, rgba(228, 242, 248, 0.08) 92%, rgba(255, 255, 255, 0) 100%),
    url('assets/bg/geometric-cyan.webp') center/cover no-repeat;
  border-radius: 36px;
  padding: 110px 80px 120px;
  overflow: hidden;
}

.pricing-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 65%, rgba(0,0,0,0) 80%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 65%, rgba(0,0,0,0) 80%);
  pointer-events: none;
}

.pricing-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.pricing-header .section-label {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  color: #ffffff;
  margin: 12px 0 26px;
  letter-spacing: -0.02em;
}

.pricing-subtitle {
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}
.pricing-subtitle--scope {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 38px 36px 36px;
  box-shadow: 0 8px 36px rgba(26, 95, 122, 0.16);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(26, 95, 122, 0.06);
}

.pricing-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}

.pricing-card__badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-card__period {
  font-size: 15px;
  color: var(--color-text-light);
}

.pricing-card__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-light);
  margin: 0 0 26px;
  min-height: 70px;
}

.pricing-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 18px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pricing-card__cta--solid {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(26, 95, 122, 0.22);
}

.pricing-card__cta--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(26, 95, 122, 0.28);
}

.pricing-card__cta--ghost {
  background: rgba(26, 95, 122, 0.04);
  color: var(--color-primary);
  border: 1px solid rgba(26, 95, 122, 0.12);
}

.pricing-card__cta--ghost:hover {
  background: rgba(26, 95, 122, 0.08);
  transform: translateY(-2px);
}

.pricing-card__includes {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 95, 122, 0.08);
}

.pricing-card__includes-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.pricing-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-card__features li {
  padding: 7px 0;
  font-size: 14px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.pricing-card__features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .pricing-frame { padding: 80px 48px 90px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; gap: 22px; }
}

@media (max-width: 640px) {
  .pricing-section { padding: 40px 16px 50px; }
  .pricing-frame { padding: 60px 24px 70px; border-radius: 24px; }
  .pricing-card { padding: 32px 26px 30px; }
  .pricing-card__amount { font-size: 46px; }
}

/* ===== INTEGRITY NOTICE ===== */
.integrity-section {
  padding: 60px 24px;
  background: var(--color-bg);
}

.integrity-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.integrity-card h3 {
  margin-bottom: 16px;
}

.integrity-card p {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.integrity-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.integrity-badge {
  padding: 6px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--color-white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--color-text-light);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

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

/* ===== FINAL CTA ===== */
.cta-section {
  padding: 80px 24px;
  text-align: center;
  background: var(--color-white);
}

.cta-section h2 {
  margin-bottom: 12px;
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 17px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 24px 32px;
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto 40px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col a:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 120px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 40px;
  margin-bottom: 8px;
}

.legal-page .last-updated {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-page h3 {
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-page p {
  margin-bottom: 16px;
  font-size: 15px;
}

.legal-page ul, .legal-page ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-page li {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--color-text);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.legal-table th {
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-bg);
}

.legal-table td {
  color: var(--color-text);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 120px 24px 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-form h1 {
  font-size: 40px;
  margin-bottom: 8px;
}

.contact-form > p {
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-primary);
  background: var(--color-white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-info-card h3 {
  margin-bottom: 16px;
}

.contact-info-card p {
  font-size: 15px;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }

  /* Cards same size as desktop, no override */

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

  .ir-features-grid,
  .ir-features-grid--3,
  .ir-features-grid--2,
  .ir-features-grid--bento {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ir-features-grid--bento > .ir-feature-card {
    grid-column: 1 / -1 !important;
  }

  .ir-features {
    padding: 60px 16px 70px;
  }

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

@media (max-width: 809px) {
  :root {
    --section-padding: 60px 16px;
  }

  h1 { font-size: 34px; letter-spacing: -0.5px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }

  /* Navbar mobile + tablet */
  .navbar {
    width: calc(100% - 32px);
    padding: 8px 8px 8px 16px;
    gap: 8px;
  }

  .navbar-links {
    display: none;
  }

  .navbar-hamburger {
    display: flex;
  }

  .navbar > .btn-primary {
    display: none;
  }

  /* Push lang-switcher to the right so it sits next to the hamburger
     instead of floating in the middle of the navbar. */
  .navbar .lang-switcher {
    margin-left: auto;
    margin-right: 0;
  }

  /* Hero mobile */
  .hero {
    padding: 80px 16px 60px;
    min-height: auto;
  }

  .hero-bg-image {
    width: 100%;
    opacity: 0.3;
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 80%);
    mask-image: linear-gradient(to top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 80%);
  }

  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }

  .hero-carousel {
    height: 300px;
  }

  /* Cards same size as desktop, no override */

  /* Grids to single column */
  .features-grid,
  .process-steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    max-width: 420px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  /* Legal */
  .legal-page {
    padding: 100px 16px 60px;
  }

  .legal-table {
    font-size: 12px;
  }

  .legal-table th,
  .legal-table td {
    padding: 8px 10px;
  }
}

/* ============================================================
   IR-ONLY REDESIGN — new sections (2026-04-08)
   ============================================================ */

/* Hero additions */
.hero-cta { flex-wrap: wrap; gap: 14px; }
/* Secondary CTA — quiet ghost, clearly subordinate; shares the primary's
   rounded-rect shape so the two read as a pair of real actions */
.hero-cta-secondary.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.hero-cta-secondary.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.95);
  box-shadow: none;
}
.hero-trust-strip {
  position: relative;
  z-index: 10;
  margin: 22px auto 40px;
  max-width: 760px;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.88);
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* Hero trust badges — three discrete chips replacing the long trust strip */
.hero-trust-badges {
  position: relative;
  z-index: 10;
  list-style: none;
  padding: 0;
  margin: 22px 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  animation: fadeInUp 0.8s ease 0.6s both;
}
/* Trust signals — verification microcopy, NOT buttons: pill chrome stripped,
   each prefixed with a crisp cyan check */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: #0e72c4;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  font-family: var(--font-body);
  white-space: nowrap;
}
.hero-trust-badge::before {
  content: "";
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e72c4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}
@media (max-width: 720px) {
  .hero-trust-badges { justify-content: center; }
  .hero-trust-badge { font-size: 11.5px; }
}

/* Proof block */
.proof-section {
  padding: 100px 24px 80px;
  max-width: 1480px;
  margin: 0 auto;
}
.proof-header { text-align: center; margin-bottom: 56px; }
.proof-header .section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent, #2a96b4);
  font-weight: 600;
  margin-bottom: 18px;
}
.proof-title {
  font-family: var(--font-heading, 'DM Serif Display', serif);
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  color: var(--color-primary, #1a5f7a);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.proof-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-text-light, #5a6478);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.proof-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 36px rgba(26, 95, 122, 0.09);
  border: 1px solid rgba(26, 95, 122, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(26, 95, 122, 0.14);
}
.proof-card__visual {
  background: linear-gradient(135deg, #f1f3f9 0%, #e6ebf5 100%);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.proof-card__visual::after {
  content: 'Real output · Sample redacted';
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 95, 122, 0.45);
  background: rgba(255,255,255,0.85);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.proof-mockup {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(26, 95, 122, 0.18));
}
.proof-card__body {
  padding: 28px 30px 34px;
}
.proof-card__body h3 {
  font-family: var(--font-heading, 'DM Serif Display', serif);
  font-size: 22px;
  line-height: 1.2;
  color: var(--color-primary, #1a5f7a);
  font-weight: 400;
  margin: 0 0 10px;
}
.proof-card__body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light, #5a6478);
  margin: 0;
}

/* What this solves — 3 outcome cards */
.solves-section {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.solves-header { text-align: center; margin-bottom: 48px; }
.solves-header .section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent, #2a96b4);
  font-weight: 600;
  margin-bottom: 18px;
}
.solves-title {
  font-family: var(--font-heading, 'DM Serif Display', serif);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.1;
  color: var(--color-primary, #1a5f7a);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
}
.solves-subtitle {
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-light, #5a6478);
}
.solves-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.solves-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 30px 32px;
  box-shadow: 0 4px 28px rgba(26, 95, 122, 0.08);
  border: 1px solid rgba(26, 95, 122, 0.04);
}
.solves-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a5f7a 0%, #2a7a95 100%);
  color: #ffffff;
  margin-bottom: 18px;
}
.solves-card h3 {
  font-family: var(--font-heading, 'DM Serif Display', serif);
  font-size: 22px;
  line-height: 1.2;
  color: var(--color-primary, #1a5f7a);
  font-weight: 400;
  margin: 0 0 10px;
}
.solves-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light, #5a6478);
  margin: 0;
}

/* 10-tile category grid override — 3 cols (3-3-3-1) with image-header support
   Redesign 2026-05-20 (rev2): WIDER cards (max-width 1180→1320px) and TIGHTER
   gap (28→18px). Equal-height guaranteed via grid-auto-rows + explicit min-height
   on tile + flex body, so a slow-loading image or longer lead text never makes
   one card shorter than its row peers. width:100% pins each tile edge-to-edge
   inside its grid track. */
.categories-section .category-grid {
  max-width: 1320px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;     /* equalize all rows so no row sits taller than another */
  gap: 18px;
  align-items: stretch;    /* all tiles in a row match tallest — avoids desnivel */
  justify-items: stretch;  /* and fill the full column width */
}
.categories-section .category-tile {
  display: flex;
  flex-direction: column;
  height: 100%;            /* fill the grid track fully */
  min-height: 560px;       /* hard floor: cards never collapse below this on desktop */
  width: 100%;             /* tile fills its grid track edge-to-edge */
  padding: 0;              /* hero variant owns its own internal padding via __body */
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(26, 95, 122, 0.06);
  background: #ffffff;
  position: relative;
}
.categories-section .category-tile:focus-visible {
  outline: 2px solid var(--color-accent, #2a96b4);
  outline-offset: 3px;
}
/* Center the lone Out-of-scope tile on the 4th row */
.categories-section .category-tile--guard {
  grid-column: 2 / 3;
}

/* Image-header variant — image full-bleed on top, padded content body below */
.categories-section .category-tile--hero {
  padding: 0;
  overflow: hidden;
}
.categories-section .category-tile__hero {
  display: block;
  width: 100%;
  height: 200px;
  aspect-ratio: 5 / 3;   /* reserves space pre-load to prevent CLS / desnivel during lazy-load */
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, #e4f0f6 0%, #cde4ef 100%);
  flex-shrink: 0;        /* image never compresses when text grows */
}

/* Tile body — content area below the image. This is the flex column that
   makes every tile in the row end at the same baseline. */
.category-tile__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;        /* fill remaining height under the image */
  padding: 22px 24px 22px;
  gap: 0;
}

.categories-section .category-tile--hero .category-tile__icon {
  margin: 0 0 14px;
}
.categories-section .category-tile--hero .category-tile__name {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.22;
  color: var(--color-primary);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Lead paragraph — 1-sentence family definition, soft authority */
.categories-section .category-tile__lead {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text-light, #5a6478);
}

/* Example list — bulleted, neat, scannable */
.categories-section .category-tile__examples {
  list-style: none;
  padding: 14px 0 0;
  margin: 0 0 14px;
  border-top: 1px solid rgba(26, 95, 122, 0.08);
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1 1 auto;        /* expands so all tiles end at same bottom */
}
.categories-section .category-tile__examples li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--color-primary);
  font-weight: 500;
}
.categories-section .category-tile__examples li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a96b4 0%, #5ac4d8 100%);
  box-shadow: 0 1px 3px rgba(42, 150, 180, 0.35);
}

/* Configure → affordance at bottom of card */
.category-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;       /* push to bottom */
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent, #2a96b4);
  font-weight: 600;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  transition: color 0.2s ease, transform 0.2s ease;
}
.category-tile__cta-arrow {
  font-family: inherit;
  font-size: 14px;
  transition: transform 0.25s ease;
}
.categories-section .category-tile:hover .category-tile__cta-arrow,
.categories-section .category-tile:focus-visible .category-tile__cta-arrow {
  transform: translateX(4px);
}
.categories-section .category-tile:hover .category-tile__cta,
.categories-section .category-tile:focus-visible .category-tile__cta {
  color: var(--color-primary, #1a5f7a);
}

/* Marketplace coverage */
.marketplace-coverage {
  padding: 100px 24px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.marketplace-header { text-align: center; margin-bottom: 52px; }
.marketplace-header .section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent, #2a96b4);
  font-weight: 600;
  margin-bottom: 18px;
}
.marketplace-title {
  font-family: var(--font-heading, 'DM Serif Display', serif);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.1;
  color: var(--color-primary, #1a5f7a);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.marketplace-subtitle {
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light, #5a6478);
}
.marketplace-grid {
  display: grid;
  /* Two cards (Available now + Not available yet). Wider than before so
     the available list can render in 2 columns inside the card without
     feeling cramped. Centered in the section. */
  grid-template-columns: minmax(300px, 580px) minmax(300px, 580px);
  gap: 32px;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
}
.marketplace-col {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 20px 24px;
  border: 1px solid rgba(26, 95, 122, 0.08);
  box-shadow: 0 4px 22px rgba(26, 95, 122, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.marketplace-col__label {
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary, #1a5f7a);
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(26, 95, 122, 0.08);
}
.marketplace-col--live .marketplace-col__label { color: #1f8a4c; }
.marketplace-col--next .marketplace-col__label { color: #2a96b4; }
.marketplace-col--conservative .marketplace-col__label { color: #9b1c1c; }
.marketplace-col--notlive {
  background: rgba(26, 95, 122, 0.03);
  box-shadow: none;
}
.marketplace-col--notlive .marketplace-col__label { color: rgba(26, 95, 122, 0.45); }
.marketplace-col__flags {
  /* Available now: 2-column grid (5 rows × 2 cols for 10 countries). */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.marketplace-col--notlive .marketplace-col__flags {
  /* Not-available: full-name labels, single column for clarity. */
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mkt-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-primary, #1a5f7a);
  font-weight: 500;
}
.mkt-flag__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 22px;
  padding: 0 8px;
  background: linear-gradient(135deg, #1a5f7a 0%, #2a7a95 100%);
  color: #ffffff;
  border-radius: 5px;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
/* Not-available flag: full row with code + name, both desaturated + underlined. */
.mkt-flag--off {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(26, 95, 122, 0.5);
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: rgba(26, 95, 122, 0.4);
  text-underline-offset: 2px;
}
.mkt-flag--off .mkt-flag__code--off {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 22px;
  padding: 0 8px;
  background: rgba(26, 95, 122, 0.08);
  color: rgba(26, 95, 122, 0.45);
  border-radius: 5px;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;  /* code itself not struck through */
}

/* How it works (4 steps) */
.how-section {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.how-header { text-align: center; margin-bottom: 52px; }
.how-header .section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent, #2a96b4);
  font-weight: 600;
  margin-bottom: 18px;
}
.how-title {
  font-family: var(--font-heading, 'DM Serif Display', serif);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.1;
  color: var(--color-primary, #1a5f7a);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.how-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 26px 28px;
  border: 1px solid rgba(26, 95, 122, 0.06);
  box-shadow: 0 4px 22px rgba(26, 95, 122, 0.06);
  position: relative;
}
.how-card__num {
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-accent, #2a96b4);
  font-weight: 700;
  margin-bottom: 14px;
}
.how-card h3 {
  font-family: var(--font-heading, 'DM Serif Display', serif);
  font-size: 20px;
  line-height: 1.22;
  color: var(--color-primary, #1a5f7a);
  font-weight: 400;
  margin: 0 0 10px;
}
.how-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-light, #5a6478);
  margin: 0;
}

/* Pricing — toggle + 3 tiers */
.pricing-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 5px;
  margin-top: 28px;
  gap: 4px;
}
.pricing-toggle__btn {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.7);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.pricing-toggle__btn:hover { color: #ffffff; }
.pricing-toggle__btn.is-active {
  background: #ffffff;
  color: var(--color-primary, #1a5f7a);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.pricing-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

/* Scope — What you get / What this is not */
.scope-section {
  padding: 80px 24px 100px;
  max-width: 1180px;
  margin: 0 auto;
}
.scope-header { text-align: center; margin-bottom: 48px; }
.scope-header .section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent, #2a96b4);
  font-weight: 600;
  margin-bottom: 18px;
}
.scope-title {
  font-family: var(--font-heading, 'DM Serif Display', serif);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  color: var(--color-primary, #1a5f7a);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}
.scope-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light, #5a6478);
}
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.scope-col {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 32px 32px;
  border: 1px solid rgba(26, 95, 122, 0.06);
  box-shadow: 0 4px 26px rgba(26, 95, 122, 0.07);
}
.scope-col--yes { border-top: 3px solid #1f8a4c; }
.scope-col--no  { border-top: 3px solid #9b1c1c; }
.scope-col__label {
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.scope-col--yes .scope-col__label { color: #1f8a4c; }
.scope-col--no .scope-col__label  { color: #9b1c1c; }
.scope-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.scope-col li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-primary, #1a5f7a);
  border-bottom: 1px solid rgba(26, 95, 122, 0.06);
}
.scope-col li:last-child { border-bottom: 0; }
.scope-col--yes li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 17px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #1f8a4c;
  border-bottom: 2px solid #1f8a4c;
  transform: rotate(-45deg);
}
.scope-col--no li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 16px;
  width: 12px;
  height: 2px;
  background: #9b1c1c;
  transform: rotate(45deg);
  box-shadow: 0 0 0 0 transparent;
}
.scope-col--no li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 16px;
  width: 12px;
  height: 2px;
  background: #9b1c1c;
  transform: rotate(-45deg);
}

/* Minimal footer */
.footer--minimal {
  background: #0f3a4d;
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 40px;
  text-align: center;
}
.footer-minimal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
}
.footer-minimal-row a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-minimal-row a:hover { color: #2a96b4; }
.footer-minimal-legal {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  max-width: 620px;
  margin: 0 auto 12px;
}
.footer-minimal-id {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 1180px) {
  .categories-section .category-grid { grid-template-columns: repeat(3, 1fr); }
  .marketplace-grid { grid-template-columns: repeat(2, minmax(280px, 520px)); gap: 24px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; }
  .solves-grid { grid-template-columns: 1fr; }
  .pricing-grid--3 { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .categories-section .category-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-section .category-tile--guard { grid-column: auto; }
  .marketplace-grid { grid-template-columns: repeat(2, minmax(240px, 440px)); gap: 20px; }
}
@media (max-width: 640px) {
  .categories-section .category-grid { grid-template-columns: 1fr; }
  .marketplace-grid { grid-template-columns: minmax(0, 520px); max-width: 520px; gap: 20px; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-minimal-row { gap: 18px; }
}

/* ===== AUTHORITY POLISH (2026-04-08) ===== */

/* Neutral dossier texture on hero — replaces GDPR-watermarked hero-bg-image */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 44px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0px, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 120px);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 55%, rgba(0,0,0,0) 92%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 55%, rgba(0,0,0,0) 92%);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

/* Two-column hero layout — text left, GPSR compliance art right */
.hero--split {
  text-align: left;
  /* Full-bleed background: no max-width / margin: 0 auto here (it was capping
     the gradient + .hero-geo-bg on ultra-wide viewports, leaving white gutters).
     Instead we use padding-inline with max() so the CONTENT stays centered
     at ≤1560px while the section itself fills the viewport edge-to-edge. */
  padding: 112px max(6vw, calc((100vw - 1560px) / 2)) 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
  max-width: none;
  margin: 0;
}
.hero--split .hero__text {
  max-width: 640px;
}
.hero--split .hero-badge { margin: 0 0 14px 0; }
.hero--split .hero-gold-rule { margin: 0 0 22px 0; }
.hero--split h1 { text-align: left; }
.hero--split .hero-subtitle { margin: 0 0 28px 0; text-align: left; max-width: 560px; }
.hero--split .hero-cta { justify-content: flex-start; }
.hero--split .hero-trust-strip { text-align: left; margin: 24px 0 0 0; }
.hero--split .hero-trust-badges { justify-content: flex-start; margin: 24px 0 0 0; }

.hero__art {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__art img {
  width: 100%;
  max-width: 780px;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

@media (max-width: 960px) {
  .hero--split {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 24px 70px;
    gap: 44px;
  }
  .hero--split .hero__text { max-width: 100%; margin: 0 auto; }
  .hero--split .hero-badge { margin: 0 auto 14px; }
  .hero--split .hero-gold-rule { margin: 0 auto 22px; }
  .hero--split .hero-subtitle { margin: 0 auto 28px; }
  .hero--split .hero-trust-strip { margin: 24px auto 0; }
  .hero--split .hero-trust-badges { margin: 24px auto 0; justify-content: center; }
  .hero--split h1,
  .hero--split .hero-subtitle,
  .hero--split .hero-trust-strip { text-align: center; }
  .hero--split .hero-cta { justify-content: center; }
  .hero__art img { max-width: 560px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 40px; line-height: 1.15; }
  .hero-subtitle { font-size: 15px; }
}

/* Proof card redacted-sample badge */
.proof-card__badge {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #e0f7ff;
  background: rgba(19, 65, 85, 0.88);
  border: 1px solid rgba(90, 190, 215, 0.30);
  border-radius: 4px;
  padding: 5px 9px;
  margin-bottom: 12px;
  text-transform: uppercase;
  align-self: flex-start;
}

/* Pricing "Best for" line replaces generic .pricing-card__desc */
.pricing-card__bestfor {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin: 14px 0 22px;
}
.pricing-card__bestfor strong {
  color: #2a96b4;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 11px;
  display: inline-block;
  margin-right: 6px;
}
.pricing-card--featured .pricing-card__bestfor { color: rgba(255, 255, 255, 0.95); }

/* Pricing toggle hint line — "Prefer the lower price? Switch to Standard 48h." */
.pricing-toggle__hint {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  font-style: italic;
}

/* Categories families clarifier */
.categories-subtitle--families {
  font-size: 14px;
  opacity: 0.72;
  margin-top: 10px;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ============================================================
   CONFIGURE & ORDER — IR checkout gating
   ============================================================ */

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.configure-section {
  position: relative;
  padding: 60px 24px 80px;
  background: var(--color-white);
  /* When the page anchor-scrolls (#configure or scrollIntoView) to this
     section, browsers will offset the landing by this margin so the section
     top doesn't slide under the fixed floating navbar.
     Matches NAV_CLEAR (120px) in index.html. */
  scroll-margin-top: 120px;
}
.configure-summary {
  /* Same reason — auto-scroll lands the summary card top below the navbar
     with adequate breathing room. */
  scroll-margin-top: 120px;
}

.configure-frame {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  background: linear-gradient(180deg, #134d64 0%, #134d64 33%, #1a6378 42%, #2a7a95 50%, #3d94ad 58%, #5aadca 66%, #7ec3dc 73%, #a4d8ea 80%, #c8e8f2 86%, #e4f2f8 92%, #ffffff 100%);
  border-radius: 36px;
  padding: 96px 72px 100px;
  overflow: hidden;
}

.configure-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.35;
  pointer-events: none;
}

.configure-header {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 54px;
}

.configure-header .section-label {
  color: #2a96b4;
}

.configure-title {
  color: #ffffff;
  font-family: var(--font-serif, 'Source Serif Pro', Georgia, serif);
  font-size: 44px;
  line-height: 1.15;
  font-weight: 600;
  margin: 12px 0 14px;
  letter-spacing: -0.01em;
}

.configure-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}
.configure-subtitle--helper {
  margin-top: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.configure-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1.1fr 0.9fr;
  gap: 28px;
  margin-bottom: 44px;
}

.configure-step {
  background: rgba(13, 24, 48, 0.55);
  border: 1px solid rgba(42, 150, 180, 0.22);
  border-radius: 18px;
  padding: 24px 22px 22px;
  backdrop-filter: blur(6px);
}

.configure-step__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.configure-step__num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  color: #2a96b4;
  letter-spacing: 0.14em;
}

.configure-step__title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.configure-step__note {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

/* Chips */
.configure-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.configure-chips--speed {
  gap: 10px;
}

.configure-chip {
  appearance: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 9px 12px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-family: inherit;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
  text-align: left;
}

.configure-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.configure-chip:focus-visible {
  outline: 2px solid #2a96b4;
  outline-offset: 2px;
}

.configure-chip__label {
  font-weight: 600;
  color: #ffffff;
}

.configure-chip__state {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

/* State tints */
.configure-chip--ok {
  background: rgba(52, 168, 102, 0.14);
  border-color: rgba(86, 200, 130, 0.42);
}
.configure-chip--ok .configure-chip__state {
  color: #7ddca0;
  opacity: 1;
}

.configure-chip--next {
  background: rgba(42, 150, 180, 0.12);
  border-color: rgba(42, 150, 180, 0.38);
}
.configure-chip--next .configure-chip__state {
  color: #e6b556;
  opacity: 1;
}

.configure-chip--after {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
}
.configure-chip--after .configure-chip__label {
  color: rgba(255, 255, 255, 0.7);
}
.configure-chip--after .configure-chip__state {
  color: rgba(255, 255, 255, 0.45);
}

.configure-chip--manual {
  background: rgba(86, 140, 220, 0.14);
  border-color: rgba(120, 168, 230, 0.42);
}
.configure-chip--manual .configure-chip__state {
  color: #9bc0ef;
  opacity: 1;
}

.configure-chip--off {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
}
.configure-chip--off .configure-chip__label {
  color: rgba(255, 255, 255, 0.5);
}
.configure-chip--off .configure-chip__state {
  color: rgba(255, 255, 255, 0.3);
}

.configure-chip.is-active {
  background: rgba(42, 150, 180, 0.24);
  border-color: #2a96b4;
  box-shadow: 0 0 0 1px #2a96b4 inset, 0 6px 20px -10px rgba(42, 150, 180, 0.65);
  transform: translateY(-1px);
}
.configure-chip.is-active .configure-chip__label {
  color: #ffffff;
}
.configure-chip.is-active .configure-chip__state {
  color: #ffd98a;
  opacity: 1;
}

/* Category select */
.configure-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(13, 24, 48, 0.7);
  background-image: linear-gradient(45deg, transparent 50%, #2a96b4 50%), linear-gradient(135deg, #2a96b4 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  border: 1px solid rgba(42, 150, 180, 0.42);
  border-radius: 10px;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  padding: 12px 44px 12px 14px;
  cursor: pointer;
  transition: border-color 120ms ease, background-color 120ms ease;
}

.configure-select:hover {
  border-color: rgba(42, 150, 180, 0.7);
}

.configure-select:focus-visible {
  outline: none;
  border-color: #2a96b4;
  box-shadow: 0 0 0 2px rgba(42, 150, 180, 0.32);
}

.configure-select option {
  background: #0c3344;
  color: #ffffff;
}

.configure-select optgroup {
  color: #2a96b4;
  font-style: normal;
  font-weight: 700;
}

/* Summary card */
.configure-summary {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(42, 150, 180, 0.25);
  border-radius: 20px;
  padding: 28px 32px 26px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-areas:
    "rows    cta"
    "note    cta"
    "fine    fine";
  gap: 18px 40px;
  align-items: start;
  box-shadow: 0 24px 60px -30px rgba(10, 42, 56, 0.5);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.configure-summary__rows {
  grid-area: rows;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
}

.configure-summary__row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(13, 24, 48, 0.08);
}

.configure-summary__row span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(13, 24, 48, 0.55);
}

.configure-summary__row strong {
  font-size: 15px;
  color: #0c3344;
  font-weight: 600;
}

.configure-summary__row--price strong {
  font-family: var(--font-serif, 'Source Serif Pro', Georgia, serif);
  font-size: 28px;
  font-weight: 700;
  color: #2a96b4;
}

.configure-summary__note {
  grid-area: note;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(13, 24, 48, 0.78);
}

.configure-summary__cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* B2B fields (company name + VAT ID) shown only when marketplace is EU non-NL.
   Integrates with the .configure-summary card design language: no boxed
   container, separated by a subtle top divider matching the row borders,
   DM Serif Display legend with a gradient accent stripe, small-caps labels
   matching .configure-summary__row spans, and inputs with the teal-gradient
   focus state used elsewhere on the landing. */
.configure-summary__b2b {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0 4px;
  margin-top: 6px;
  border: 0;
  border-top: 1px solid rgba(13, 24, 48, 0.10);
}
.configure-summary__b2b-legend {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: #0B1F3F;
  padding: 0;
  margin: 0;
  letter-spacing: 0.005em;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.configure-summary__b2b-legend::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #2a96b4, #5ac4d8);
  border-radius: 2px;
  flex-shrink: 0;
}
.configure-summary__b2b-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
@media (max-width: 720px) {
  .configure-summary__b2b-fields { grid-template-columns: 1fr; }
}
.configure-summary__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.configure-summary__field > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(13, 24, 48, 0.55);
}
.configure-summary__field input {
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 11px 14px;
  border: 1px solid rgba(13, 24, 48, 0.14);
  border-radius: 10px;
  background: #ffffff;
  color: #0B1F3F;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
}
.configure-summary__field input::placeholder {
  color: rgba(13, 24, 48, 0.32);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.configure-summary__field input:hover {
  border-color: rgba(42, 150, 180, 0.45);
}
.configure-summary__field input:focus {
  outline: none;
  border-color: #2a96b4;
  box-shadow: 0 0 0 4px rgba(42, 150, 180, 0.13);
}
.configure-summary__field input:not(:placeholder-shown):not(:focus) {
  border-color: rgba(42, 150, 180, 0.35);
  background: rgba(42, 150, 180, 0.04);
}
.configure-summary__b2b-hint {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(13, 24, 48, 0.58);
  margin: 0;
  padding-left: 22px;
  position: relative;
}
.configure-summary__b2b-hint::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: linear-gradient(135deg, #2a96b4, #5ac4d8);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 4 6v6c0 5 3.5 9 8 10 4.5-1 8-5 8-10V6l-8-4zm-1 14-4-4 1.4-1.4L11 13.2l5.6-5.6L18 9l-7 7z' fill='%23000'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 4 6v6c0 5 3.5 9 8 10 4.5-1 8-5 8-10V6l-8-4zm-1 14-4-4 1.4-1.4L11 13.2l5.6-5.6L18 9l-7 7z' fill='%23000'/></svg>") no-repeat center / contain;
}

/* When B2B is pending, the CTA becomes a soft outline awaiting style */
.configure-summary[data-status="b2b_pending"] .configure-summary__btn {
  background: rgba(13, 24, 48, 0.05);
  color: rgba(13, 24, 48, 0.55);
  border: 1px solid rgba(13, 24, 48, 0.14);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}
.configure-summary[data-status="b2b_pending"] .configure-summary__row--price strong {
  color: #2a96b4;
}
.configure-summary[data-status="b2b_pending"] .configure-summary__note {
  color: rgba(26, 95, 122, 0.85);
  font-weight: 500;
}

.configure-summary__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 12px;
  white-space: nowrap;
  min-width: 220px;
  text-align: center;
}

.configure-summary__btn[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.45;
  background: rgba(13, 24, 48, 0.12);
  color: rgba(13, 24, 48, 0.5);
  border: 1px solid rgba(13, 24, 48, 0.12);
  box-shadow: none;
}

.configure-summary__fine {
  grid-area: fine;
  margin: 6px 0 0;
  padding-top: 16px;
  border-top: 1px dashed rgba(13, 24, 48, 0.14);
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(13, 24, 48, 0.58);
  font-style: italic;
}
.configure-summary__error {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #c0392b;
  font-weight: 600;
}
.configure-summary__postcheckout {
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(13, 24, 48, 0.68);
}

.configure-chat-hint {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(42, 150, 180, 0.06);
  border: 1px solid rgba(42, 150, 180, 0.18);
  border-radius: 10px;
  text-align: center;
}
.configure-chat-hint p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(13, 24, 48, 0.78);
}
.configure-chat-hint strong {
  color: #0c3344;
}

/* Status states */
.configure-summary[data-status="incomplete"] {
  border-color: rgba(13, 24, 48, 0.14);
}

.configure-summary[data-status="blocked"] {
  border-color: rgba(198, 70, 70, 0.5);
  box-shadow: 0 24px 60px -30px rgba(198, 70, 70, 0.35);
}
.configure-summary[data-status="blocked"] .configure-summary__note {
  color: #8a2a2a;
  font-weight: 500;
}
.configure-summary[data-status="blocked"] .configure-summary__row--price strong {
  color: rgba(13, 24, 48, 0.3);
}
.configure-summary[data-status="blocked"] .configure-summary__btn {
  background: #8a2a2a;
  color: #ffffff;
  border: 1px solid #8a2a2a;
}

.configure-summary[data-status="manual"] {
  border-color: rgba(86, 140, 220, 0.5);
  box-shadow: 0 24px 60px -30px rgba(86, 140, 220, 0.4);
}
.configure-summary[data-status="manual"] .configure-summary__note {
  color: #1e3c70;
  font-weight: 500;
}
.configure-summary[data-status="manual"] .configure-summary__row--price strong {
  color: rgba(13, 24, 48, 0.3);
}
.configure-summary[data-status="manual"] .configure-summary__btn {
  background: #1e3c70;
  color: #ffffff;
  border: 1px solid #1e3c70;
}

.configure-summary[data-status="ready"] {
  border-color: #2a96b4;
  box-shadow: 0 24px 60px -26px rgba(42, 150, 180, 0.55);
}
.configure-summary[data-status="ready"] .configure-summary__note {
  color: #2f5a3a;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1080px) {
  .configure-frame {
    padding: 80px 44px 84px;
  }
  .configure-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .configure-summary {
    grid-template-columns: 1fr;
    grid-template-areas:
      "rows"
      "note"
      "cta"
      "fine";
    gap: 16px;
    padding: 24px 26px;
  }
  .configure-summary__cta {
    justify-content: stretch;
  }
  .configure-summary__btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .configure-frame {
    padding: 64px 20px 70px;
    border-radius: 24px;
  }
  .configure-title {
    font-size: 32px;
  }
  .configure-header {
    margin-bottom: 36px;
  }
  .configure-summary__rows {
    grid-template-columns: 1fr;
    gap: 6px 0;
  }
}

/* ============================================================
   CHATBOT — floating launcher + panel
   ============================================================ */

.chatbot-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 68px;
  height: 68px;
  padding: 0;
  border-radius: 50%;
  background: #0c3344;
  color: #ffffff;
  border: 2px solid #2a96b4;
  cursor: pointer;
  box-shadow: 0 18px 38px -14px rgba(10, 42, 56, 0.55), 0 0 0 4px rgba(42, 150, 180, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  font-family: inherit;
}

.chatbot-fab:hover {
  transform: translateY(-2px);
  background: #134556;
  box-shadow: 0 22px 42px -12px rgba(10, 42, 56, 0.65), 0 0 0 6px rgba(42, 150, 180, 0.16);
}

.chatbot-fab:focus-visible {
  outline: 3px solid #2a96b4;
  outline-offset: 4px;
}

.chatbot-fab[aria-expanded="true"] {
  background: #134556;
}

.chatbot-fab__icon {
  color: #2a96b4;
  margin-top: 2px;
}

.chatbot-fab__label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: -1px;
}

/* Panel */
.chatbot-panel {
  position: fixed;
  right: 24px;
  bottom: 108px;
  z-index: 1001;
  width: 380px;
  max-height: 620px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 40px 80px -24px rgba(10, 42, 56, 0.55), 0 0 0 1px rgba(42, 150, 180, 0.18);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  overflow: hidden;
  font-family: inherit;
}

.chatbot-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 14px;
  background: linear-gradient(135deg, #0c3344 0%, #134556 100%);
  color: #ffffff;
  border-bottom: 1px solid rgba(42, 150, 180, 0.22);
}

.chatbot-panel__eyebrow {
  margin: 0 0 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2a96b4;
}

.chatbot-panel__title {
  margin: 0;
  font-family: var(--font-serif, 'Source Serif Pro', Georgia, serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.chatbot-panel__close {
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 120ms ease;
}
.chatbot-panel__close:hover { background: rgba(255, 255, 255, 0.16); }

.chatbot-panel__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 18px 18px 8px;
  background: #f7f5f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chatbot-msg {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.5;
  white-space: normal;
  word-wrap: break-word;
}
.chatbot-msg ul { margin: 6px 0 4px 16px; padding: 0; list-style: disc; }
.chatbot-msg li { margin-bottom: 2px; }
.chatbot-msg strong { font-weight: 600; }
.chatbot-email-link { color: #2a96b4; font-weight: 600; text-decoration: none; }
.chatbot-email-link:hover { text-decoration: underline; }

.chatbot-msg--bot {
  align-self: flex-start;
  background: #ffffff;
  color: #0c3344;
  border: 1px solid rgba(13, 24, 48, 0.08);
  border-top-left-radius: 4px;
}

.chatbot-msg--user {
  align-self: flex-end;
  background: #0c3344;
  color: #ffffff;
  border-top-right-radius: 4px;
}

.chatbot-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 18px 14px;
  background: #f7f5f0;
  border-top: 1px solid rgba(13, 24, 48, 0.06);
  max-height: 180px;
  overflow-y: auto;
}

.chatbot-chip {
  appearance: none;
  background: #ffffff;
  border: 1px solid rgba(13, 24, 48, 0.14);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #0c3344;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 120ms ease, background 120ms ease;
}

.chatbot-chip:hover {
  border-color: #2a96b4;
  background: rgba(42, 150, 180, 0.08);
}

.chatbot-chip:focus-visible {
  outline: 2px solid #2a96b4;
  outline-offset: 2px;
}

/* Action chips (scroll-to-section) — filled ice-teal to stand out as CTAs */
.chatbot-chip--action {
  background: #1a5f7a;
  color: #ffffff;
  border-color: #1a5f7a;
}
.chatbot-chip--action:hover {
  background: #134d64;
  border-color: #134d64;
  color: #ffffff;
}

/* Typing indicator (3 animated dots in a bot bubble) */
.chatbot-msg--typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
}
.chatbot-typing-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(13, 24, 48, 0.35);
  animation: chatbot-typing 1.2s infinite ease-in-out;
}
.chatbot-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.chatbot-typing-dot:nth-child(3) { animation-delay: 0.30s; }
@keyframes chatbot-typing {
  0%, 60%, 100% { opacity: 0.35; transform: translateY(0); }
  30%           { opacity: 1;    transform: translateY(-3px); }
}

.chatbot-panel__footer {
  padding: 10px 18px 14px;
  background: #ffffff;
  border-top: 1px solid rgba(13, 24, 48, 0.08);
}
.chatbot-panel__footer p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(13, 24, 48, 0.62);
}
.chatbot-panel__footer a {
  color: #2a96b4;
  font-weight: 600;
  text-decoration: none;
}
.chatbot-panel__footer a:hover { text-decoration: underline; }

/* Mobile */
@media (max-width: 640px) {
  .chatbot-fab {
    right: 16px;
    bottom: 16px;
    width: 60px;
    height: 60px;
  }
  .chatbot-panel {
    right: 12px;
    left: 12px;
    bottom: 92px;
    width: auto;
    max-height: 75vh;
    border-radius: 16px;
  }
}

/* ============================================================
   PREMIUM VISUAL REFACTOR (2026-04-10)
   Hero console, editorial proof cards, tighter section rhythm
   ============================================================ */

/* --- Hero console (replaces stock image) --- */
.hero-console {
  width: 100%;
  max-width: 560px;
  background: #0a2a38;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(42, 150, 180, 0.15);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  animation: fadeInUp 1s ease 0.4s both, consoleFloat 6s ease-in-out 1.4s infinite;
}

@keyframes consoleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-console__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #101c32;
  border-bottom: 1px solid rgba(42, 150, 180, 0.12);
}

.hero-console__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.hero-console__dot:nth-child(1) { background: #ff5f57; }
.hero-console__dot:nth-child(2) { background: #febc2e; }
.hero-console__dot:nth-child(3) { background: #28c840; }

.hero-console__title {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}

.hero-console__body {
  padding: 6px 0;
}

.hero-console__row {
  display: grid;
  grid-template-columns: 1.6fr 0.65fr 0.75fr;
  gap: 8px;
  padding: 9px 18px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease;
}

.hero-console__row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.hero-console__row--header {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-console__row--header:hover { background: transparent; }

.hero-console__tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.hero-console__tag--present {
  background: rgba(31, 138, 76, 0.18);
  color: #4ade80;
}

.hero-console__tag--missing {
  background: rgba(239, 68, 68, 0.18);
  color: #f87171;
}

.hero-console__tag--pending {
  background: rgba(42, 150, 180, 0.18);
  color: #fbbf24;
}

.hero-console__meta {
  display: flex;
  gap: 18px;
  padding: 12px 18px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 4px;
}

.hero-console__meta span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.hero-console__meta span:last-child {
  margin-left: auto;
  color: #2a96b4;
}

/* --- Proof cards: premium artifact feel --- */
.proof-card__visual {
  background:
    linear-gradient(145deg, rgba(15, 58, 77, 0.55) 0%, rgba(26, 95, 122, 0.48) 40%, rgba(19, 77, 100, 0.52) 100%),
    url('assets/bg/geometric-dark.webp') center/cover no-repeat;
  padding: 32px;
  min-height: 220px;
  overflow: hidden;
}

.proof-card__visual::after {
  color: rgba(200, 235, 248, 0.9);
  background: rgba(10, 42, 56, 0.82);
  border: 1px solid rgba(90, 190, 215, 0.25);
}

.proof-mockup {
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
}

.proof-card {
  border: 1px solid rgba(26, 95, 122, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.proof-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(26, 95, 122, 0.16);
}

/* --- Solves section: reduce card clutter --- */
.solves-card {
  border: 1px solid rgba(26, 95, 122, 0.06);
  box-shadow: none;
  background: var(--color-bg, #f8f9fc);
}

.solves-card:hover {
  box-shadow: 0 8px 32px rgba(26, 95, 122, 0.08);
}

/* --- Category tiles: cleaner, less toy-like (redesign 2026-05-20) --- */
.categories-section .category-tile {
  box-shadow: 0 2px 16px rgba(26, 95, 122, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.categories-section .category-tile:hover,
.categories-section .category-tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(26, 95, 122, 0.16);
  border-color: rgba(42, 150, 180, 0.22);
}

.categories-subtitle--families {
  font-style: normal;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 14px;
}

/* --- Configure section: operator surface --- */
.configure-frame {
  background:
    linear-gradient(180deg, rgba(10, 42, 56, 0.88) 0%, rgba(15, 58, 77, 0.82) 28%, rgba(26, 95, 122, 0.72) 48%, rgba(42, 122, 149, 0.60) 62%, rgba(90, 173, 202, 0.42) 76%, rgba(164, 216, 234, 0.22) 88%, rgba(255, 255, 255, 0) 100%),
    url('assets/bg/geometric-dark.webp') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.configure-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.015em;
}

/* --- Geometric background utility --- */
.bg-geometric {
  position: relative;
  overflow: hidden;
}
.bg-geometric__img {
  position: absolute;
  inset: -20px;               /* extra bleed for motion */
  background: center/cover no-repeat;
  animation: bgDrift 30s ease-in-out infinite alternate;
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}
.bg-geometric__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.86);
  pointer-events: none;
}
.bg-geometric > *:not(.bg-geometric__img) {
  position: relative;
  z-index: 1;
}

/* Per-section image assignments */
.bg-geometric__img--blue   { background-image: url('assets/bg/geometric-blue.webp'); }
.bg-geometric__img--cyan   { background-image: url('assets/bg/geometric-cyan.webp'); }
.bg-geometric__img--white  { background-image: url('assets/bg/geometric-white.webp'); }
.bg-geometric__img--dark   { background-image: url('assets/bg/geometric-dark.webp'); }

/* Direction variants for visual variety */
.bg-geometric__img--drift-right { animation-name: bgDriftRight; }
.bg-geometric__img--drift-zoom  { animation-name: bgDriftZoom; }

/* Hero geometric overlay — dark hero needs different treatment */
.hero-geo-bg {
  position: absolute;
  inset: 0;
  background: url('assets/bg/geometric-dark.webp') center/cover no-repeat;
  animation: bgKenBurns 25s ease-in-out infinite alternate;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

/* ---- Background motion keyframes ---- */
@keyframes bgDrift {
  0%   { transform: translate(0, 0) scale(1.04); }
  100% { transform: translate(-12px, -8px) scale(1.08); }
}
@keyframes bgDriftRight {
  0%   { transform: translate(0, 0) scale(1.05); }
  100% { transform: translate(10px, -6px) scale(1.02); }
}
@keyframes bgDriftZoom {
  0%   { transform: scale(1.02) rotate(-0.3deg); }
  100% { transform: scale(1.10) rotate(0.3deg); }
}
@keyframes bgKenBurns {
  0%   { transform: scale(1.05) translate(0, 0); opacity: 0.25; }
  50%  { opacity: 0.35; }
  100% { transform: scale(1.15) translate(-20px, -10px); opacity: 0.28; }
}

/* Respect reduced-motion for bg animations */
@media (prefers-reduced-motion: reduce) {
  .bg-geometric__img,
  .hero-geo-bg {
    animation: none !important;
    transform: none;
  }
}

/* --- Final CTA: stronger closing --- */
.cta-section {
  padding: 100px 24px;
  border-top: none;
  background: linear-gradient(180deg, #e8f4f8 0%, #d4ecf4 40%, #c4e4ef 100%);
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  max-width: 680px;
  margin: 0 auto 14px;
  color: #134d64;
}

.cta-support {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #1a5f7a;
  text-transform: uppercase;
  max-width: 520px;
  margin: 0 auto 36px;
}

/* --- Scope section: tighter --- */
.scope-section {
  background: var(--color-white);
  border-top: 1px solid rgba(26, 95, 122, 0.04);
}

/* --- FAQ: calmer, less cluttered --- */
.faq-section {
  background: var(--color-bg, #f8f9fc);
}

.faq-list {
  max-width: 700px;
}

.faq-question {
  font-size: 16px;
  padding: 22px 0;
}

/* --- How it works: cleaner --- */
.how-card {
  background: var(--color-bg, #f8f9fc);
  border: 1px solid rgba(26, 95, 122, 0.04);
  box-shadow: none;
}

.how-card:hover {
  box-shadow: 0 8px 28px rgba(26, 95, 122, 0.08);
}

/* --- Hero console responsive --- */
@media (max-width: 960px) {
  .hero-console {
    max-width: 480px;
    margin: 0 auto;
  }
  .hero-console__row {
    grid-template-columns: 1.4fr 0.7fr 0.8fr;
    font-size: 10.5px;
    padding: 8px 14px;
  }
  .hero-console__meta {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 14px 12px;
  }
}

@media (max-width: 640px) {
  .hero-console {
    max-width: 100%;
  }
  .hero-console__row {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 8px 14px;
  }
  .hero-console__row--header {
    display: none;
  }
  .hero-console__tag {
    justify-self: start;
  }
  .hero-console__meta {
    flex-direction: column;
    gap: 4px;
  }
  .hero-console__meta span:last-child {
    margin-left: 0;
  }
}

/* ============================================================
   SCROLL-REVEAL ANIMATIONS (2026-04-10)
   Elements fade-in + slide up as they enter the viewport.
   Uses CSS-only animation-timeline: view() where supported,
   with a JS IntersectionObserver fallback.
   ============================================================ */

/* Base state: hidden until revealed */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger children in grids */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger > .reveal:nth-child(8) { transition-delay: 0.56s; }
.reveal-stagger > .reveal:nth-child(9) { transition-delay: 0.64s; }
.reveal-stagger > .reveal:nth-child(10) { transition-delay: 0.72s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-console {
    animation: fadeInUp 1s ease 0.4s both;
  }
}

/* ============================================================
   DELIVERABLES SECTION (2026-04-14) — typographic fact sheet
   Replaces the old .proof-section SVG mockup grid.
   ============================================================ */
.deliverables-section {
  padding: 110px 24px 90px;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
}

.deliverables-header {
  text-align: center;
  margin-bottom: 72px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.deliverables-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-primary);
  font-weight: 400;
  margin: 12px 0 14px;
}
.deliverables-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-light);
  margin: 0;
}

/* 2-column fact-sheet grid */
.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 72px;
  row-gap: 0;
  border-top: 1px solid rgba(26, 95, 122, 0.12);
}

.deliverable {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 36px 0 34px;
  border-bottom: 1px solid rgba(26, 95, 122, 0.12);
  align-items: start;
}

/* Remove the last row's border on each column */
.deliverable:nth-last-child(-n+2) {
  border-bottom: none;
}

.deliverable__num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.35;
  letter-spacing: -0.02em;
  user-select: none;
}

.deliverable__body {
  padding-top: 8px;
}

.deliverable__title {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.25;
  color: var(--color-primary);
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.deliverable__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0 0 14px;
}

.deliverable__spec {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.62;
  padding-top: 10px;
  border-top: 1px dashed rgba(26, 95, 122, 0.20);
}

.deliverables-footnote {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 95, 122, 0.12);
  text-align: center;
}
.deliverables-footnote p {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.45;
  margin: 0;
}

/* Mobile: single column */
@media (max-width: 900px) {
  .deliverables-section { padding: 80px 22px 60px; }
  .deliverables-list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .deliverable {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 28px 0 26px;
    border-bottom: 1px solid rgba(26, 95, 122, 0.12);
  }
  .deliverable:last-child { border-bottom: none; }
  .deliverable:nth-last-child(-n+2) { border-bottom: 1px solid rgba(26, 95, 122, 0.12); }
  .deliverable:last-child { border-bottom: none; }
  .deliverable__num { font-size: 40px; }
  .deliverable__title { font-size: 19px; }
}

/* ============================================================
   RESPONSIVE HARDENING (2026-04-14)
   Tightens tablet + mobile layout: reduces aggressive frame
   padding, scales hero typography, improves IR mockup legibility.
   ============================================================ */

/* --- TABLET (≤900px) --- */
@media (max-width: 900px) {
  /* IR mockup frame — was 90px horizontal padding on desktop, crushes on tablet */
  .video-frame {
    padding: 54px 32px 70px;
    border-radius: 24px;
  }
  .video-section { padding: 48px 20px 10px; }

  /* Categories & configure frames — looser padding to leave more tile width */
  .categories-frame { padding: 70px 32px 80px; border-radius: 28px; }
  .configure-frame { padding: 70px 32px 80px; border-radius: 28px; }

  /* Deliverables section — reduce top/bottom padding on tablet */
  .deliverables-section { padding: 80px 22px 70px; }

  /* Pricing — less vertical pad */
  .pricing-section { padding: 70px 22px 80px; }
}

/* --- MOBILE (≤640px) --- */
@media (max-width: 640px) {
  /* Hero h1 — tighter density on mobile */
  .hero h1 { font-size: 28px; line-height: 1.2; letter-spacing: -0.3px; }
  .hero-subtitle { font-size: 15px; line-height: 1.55; }
  .hero-badge { font-size: 12px; padding: 6px 14px; }
  .hero-trust-strip { font-size: 11.5px; letter-spacing: 0.01em; line-height: 1.7; }

  /* Pricing h2 — was 40px clamp min, too big on mobile */
  .pricing-title { font-size: clamp(28px, 7vw, 36px) !important; line-height: 1.15; letter-spacing: -0.4px; }
  .pricing-subtitle { font-size: 15px; line-height: 1.55; }
  .pricing-subtitle--strong { font-size: 15px; }

  /* Configure h2 — tighter too */
  .configure-title { font-size: clamp(28px, 7vw, 38px) !important; line-height: 1.15; }
  .configure-subtitle { font-size: 15px; line-height: 1.5; }

  /* How / FAQ / Scope titles — same treatment */
  .how-title, .faq-title, .scope-title, .solves-title { font-size: clamp(26px, 6.5vw, 34px) !important; line-height: 1.2; }

  /* Deliverables OUTPUT spec: allow wrapping without letter-spacing making it spill out */
  .deliverable__spec { letter-spacing: 0.04em; word-spacing: 0.05em; }

  /* Hero padding: loose vertical, compact horizontal */
  .hero--split { padding: 80px 20px 50px; gap: 36px; }
  .hero__art img { max-width: 420px; }

  /* IR mockup on mobile — tight padding so SVG text stays readable */
  .video-frame { padding: 36px 14px 44px; border-radius: 20px; }
  .video-section { padding: 36px 14px 8px; }
  .ir-mockup-card { padding: 16px 10px; }

  /* Categories frame — compact on mobile */
  .categories-frame { padding: 54px 18px 60px; border-radius: 22px; }
  .categories-title { font-size: clamp(30px, 7vw, 40px) !important; }
  .categories-subtitle { font-size: 15px; margin-bottom: 36px; }
  .categories-header { margin-bottom: 40px; }

  /* Category tile image + body — slightly compressed on mobile so text gets more room */
  .categories-section .category-tile__hero { height: 170px; }
  .category-tile__body { padding: 20px 20px 20px; }
  .categories-section .category-tile--hero .category-tile__name { font-size: 19px; }
  .categories-section .category-tile__lead { font-size: 14px; margin-bottom: 12px; }
  .categories-section .category-tile__examples { padding-top: 12px; gap: 6px; }
  .categories-section .category-tile__examples li { font-size: 13px; }

  /* Configure frame — compact */
  .configure-frame { padding: 54px 18px 60px; border-radius: 22px; }
  .configure-grid { gap: 28px; }

  /* Configure chips should wrap gracefully */
  .configure-chips { gap: 8px; }
  .configure-chip { padding: 10px 14px; font-size: 13px; }

  /* Pricing toggle — slightly smaller */
  .pricing-toggle { flex-wrap: wrap; gap: 8px; padding: 5px; }
  .pricing-toggle__btn { font-size: 13px; padding: 9px 16px; }
  .pricing-toggle__hint { font-size: 12px; margin-top: 14px; }
  .pricing-section { padding: 56px 18px 60px; }

  /* Pricing cards spacing tighter on mobile */
  .pricing-card { padding: 30px 24px; }

  /* Deliverables — tighter on mobile */
  .deliverables-section { padding: 60px 18px 50px; }
  .deliverables-title { font-size: clamp(28px, 6.6vw, 38px) !important; }
  .deliverables-subtitle { font-size: 15px; }
  .deliverables-header { margin-bottom: 48px; }
  .deliverable { padding: 24px 0 22px; gap: 14px; }
  .deliverable__num { font-size: 36px; }
  .deliverable__title { font-size: 18px; }
  .deliverable__desc { font-size: 14px; }
  .deliverable__spec { font-size: 10px; letter-spacing: 0.06em; }

  /* Proof cards footer CTA — stack on mobile */
  .category-cta-bar { padding: 22px 20px; gap: 16px; text-align: center; }
  .category-cta-bar__title { font-size: 17px; }
  .category-cta-bar__sub { font-size: 13px; }
  .category-cta-bar__btn { width: 100%; text-align: center; }

  /* Footer cleanup */
  .footer-minimal { padding: 40px 18px 30px; }
  .footer-minimal-row { flex-direction: column; gap: 16px; text-align: center; }

  /* Summary CTA — full width on mobile */
  .configure-summary__btn { width: 100%; justify-content: center; }

  /* Chatbot button smaller on mobile */
  .chatbot-fab { right: 16px; bottom: 16px; }
}

/* ============================================================
   IR INTERACTIVE TOUR (2026-04-14)
   Scroll-pinned section: 9 real PDF pages transition inside the
   existing .video-frame shell, with 7 callouts fading in/out.
   Sticky CSS is used for pinning (not GSAP pin) because .page-wrapper
   has overflow: clip which breaks ScrollTrigger.pin.
   ============================================================ */

.ir-tour {
  position: relative;
  background: var(--color-white);
}

.ir-tour-scroll {
  /* Total scroll height drives how long the user "scrolls through" the tour.
     8 logical steps × ~95vh = ~760vh. Scales with 19 premium-card PDF pages. */
  height: 760vh;
  position: relative;
}

.ir-tour-pinned {
  position: sticky;
  /* Offset sticky top so the PDF card NEVER slides under the fixed navbar.
     Navbar sits at top:14px with ~52px height = ends at ~66px; add 14px
     breathing room = 80px clearance on every viewport. Without this, the
     navbar visually overlaps the cover page during the pinned scroll. */
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  align-items: flex-start;          /* card sits at top, adjacent to the header above */
  justify-content: center;
  padding: 12px 24px 24px;          /* tight top padding so the card hugs the header */
  overflow: hidden;
  /* Background intentionally transparent — the dark teal is painted by
     .video-frame (the rounded card) only. The area outside the frame
     stays white from .ir-tour (inheriting --color-white). */
}

/* Override video-frame sizing for tour (wider + matches viewport height) */
.ir-tour-frame.video-frame {
  max-width: 1440px;
  width: 100%;
  padding: 36px 56px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
}

/* Skip-PDF-preview button — floats inside the pinned tour card so
   users can bypass the 8-step scroll-pinned demo and jump straight
   to "What you get". Offset from the bottom-right corner so it does
   NOT collide with the fixed chatbot FAB (68×68 at right:24 on
   desktop, 60×60 at right:16 on mobile). */
.ir-tour-skip {
  position: absolute;
  bottom: 18px;
  right: 110px;   /* 68 FAB + 24 FAB-right + 18 gap */
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(82, 88, 112, 0.18);
  border-radius: 999px;
  font-family: var(--font-heading), 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #134d64;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 20px -6px rgba(15, 30, 40, 0.22);
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
  line-height: 1;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.ir-tour-skip:hover {
  background: #ffffff;
  border-color: rgba(26, 95, 122, 0.38);
  transform: translateY(-1px);
}
.ir-tour-skip:focus {
  outline: none;
  border-color: rgba(26, 95, 122, 0.65);
  box-shadow: 0 6px 20px -6px rgba(15, 30, 40, 0.22),
              0 0 0 3px rgba(42, 150, 180, 0.28);
}

/* Mobile + tablet: lay out the skip button in normal flow directly below
   the PDF demo frame, centered. The pinned container switches to flex-column
   so the button no longer overlaps the chat FAB at the viewport bottom —
   it sits as a distinct element right after the PDF card + callouts stack. */
@media (max-width: 900px) {
  .ir-tour-pinned {
    /* Mobile + tablet: switch pinned layout to a column so PDF card +
       callouts stack vertically, and the skip button can sit beneath them
       in normal flow (no overlap with the chat FAB).
       NOTE: top:80px + height:calc(100vh - 80px) are now in the base rule,
       applied on every viewport so the navbar never overlaps the card. */
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
  }
  .ir-tour-skip {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    transform: none;
    align-self: center;
    padding: 10px 18px;
    font-size: 12.5px;
  }
  .ir-tour-skip:hover {
    transform: translateY(-1px);
  }
  .ir-tour-skip:focus {
    transform: none;
  }
}

.ir-tour-card.video-card {
  aspect-ratio: auto;
  height: calc(100vh - 180px);
  max-height: 760px;
  min-height: 420px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  animation: none;
  transform: none !important;
  position: relative;
}
/* Kill the scroll-tilt animation on tour card */
.ir-tour-card.video-card,
.ir-tour-card.video-card::after {
  animation: none !important;
}

/* Pages: stacked vertically as a continuous strip. The strip's translateY
   is driven by scroll progress so the PDF feels like one scrollable document. */
.ir-tour-pages {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}
.ir-tour-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.ir-tour-page {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  transform: none;
  transition: none;
  /* Subtle page separator */
  border-bottom: 1px solid rgba(26, 95, 122, 0.08);
  /* Anti-replication: block drag, selection, and native save affordances */
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}
.ir-tour-page:last-child {
  border-bottom: none;
}
/* Print: drop the tour entirely so browser print captures nothing. */
@media print {
  .ir-tour,
  .ir-tour-pages,
  .ir-tour-strip,
  .ir-tour-page {
    display: none !important;
    visibility: hidden !important;
  }
}
/* Legacy is-active class no longer drives visibility (strip-based animation) */
.ir-tour-page.is-active {
  opacity: 1;
}

/* Progress strip pinned to bottom of card */
.ir-tour-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 22px;
  background: linear-gradient(to top, rgba(19, 77, 100, 0.06), transparent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 2px;
  text-transform: uppercase;
  pointer-events: none;
}
.ir-tour-progress__num {
  font-weight: 700;
  color: var(--color-primary-dark);
}
.ir-tour-progress__total,
.ir-tour-progress__sep {
  opacity: 0.55;
}
.ir-tour-progress__dot {
  margin: 0 10px;
  opacity: 0.55;
}
.ir-tour-progress__label {
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Callouts panel (right column on desktop) */
.ir-tour-callouts {
  position: relative;
  min-height: 300px;
}
.ir-tour-callout {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: none;
  will-change: opacity, transform;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.ir-tour-callout.is-active {
  opacity: 1;
  transform: translateX(0);
}
.ir-tour-callout__label {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e0f7ff;
  padding: 10px 14px;
  background: rgba(19, 77, 100, 0.55);
  border: 1px solid rgba(224, 247, 255, 0.28);
  border-radius: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-self: flex-start;
  max-width: 100%;
  line-height: 1.45;
}
.ir-tour-callout__desc {
  font-family: var(--font-heading);
  font-size: 21px;
  line-height: 1.35;
  color: #ffffff;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Tablet: callouts move below card */
@media (max-width: 1080px) {
  .ir-tour-frame.video-frame {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 28px 32px;
  }
  .ir-tour-card.video-card {
    height: calc(100vh - 260px);
    max-height: 620px;
    min-height: 360px;
  }
  .ir-tour-callouts {
    min-height: 120px;
  }
  .ir-tour-callout__desc { font-size: 17px; }
  .ir-tour-callout__label { font-size: 11px; }
}

/* Mobile: mismo tour pinneado que desktop, pero con card + callouts stackeados verticales */
@media (max-width: 640px) {
  .ir-tour-scroll {
    height: 680vh;  /* proportional to desktop 760vh, slightly less for mobile */
  }
  .ir-tour-pinned {
    padding: 16px 12px;
  }
  .ir-tour-frame.video-frame {
    grid-template-columns: 1fr;
    padding: 16px 12px 20px;
    gap: 14px;
    max-width: 100%;
    border-radius: 18px;
  }
  .ir-tour-card.video-card {
    height: 58vh;           /* card ocupa 58% del viewport, deja espacio para callouts */
    max-height: 480px;
    min-height: 320px;
    aspect-ratio: auto;
    border-radius: 10px;
  }
  /* Callouts abajo del card (no al lado — no hay room) */
  .ir-tour-callouts {
    position: relative;
    min-height: 110px;
    order: 2;  /* asegura que queden debajo del card */
  }
  .ir-tour-callout {
    position: absolute;
    inset: 0;
    padding: 4px 4px 0;
    gap: 10px;
  }
  .ir-tour-callout__label {
    font-size: 10px;
    padding: 7px 10px;
    letter-spacing: 0.09em;
  }
  .ir-tour-callout__desc {
    font-size: 15px;
    line-height: 1.35;
    color: #ffffff;  /* sigue blanco como desktop para coherencia */
  }
  .ir-tour-progress {
    padding: 8px 14px;
    font-size: 9px;
    letter-spacing: 0.06em;
  }
  .ir-tour-progress__dot { margin: 0 6px; }
}

/* Accessibility: reduced motion — disable scrub on desktop */
@media (prefers-reduced-motion: reduce) {
  .ir-tour-scroll { height: auto; }
  .ir-tour-pinned { position: static; height: auto; }
  .ir-tour-card.video-card { height: auto; max-height: none; }
  .ir-tour-pages { position: static; overflow: visible; }
  .ir-tour-strip { position: static; transform: none !important; display: flex; flex-direction: column; gap: 18px; }
  .ir-tour-page { position: static; opacity: 1 !important; transform: none !important; height: auto; }
  .ir-tour-callout { position: static; opacity: 1 !important; transform: none !important; }
}

/* ================================================================
   CATEGORY DEMAND CAPTURE (modal + trigger link)
   ================================================================ */
.category-demand-link {
  text-align: center;
  margin-top: 28px;
}
.category-demand-trigger {
  background: transparent;
  border: none;
  color: var(--color-accent, #2a96b4);
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 14px;
  border-bottom: 1px dashed rgba(42, 150, 180, 0.5);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.category-demand-trigger:hover,
.category-demand-trigger:focus-visible {
  color: var(--color-primary, #1a5f7a);
  border-bottom-color: rgba(26, 95, 122, 0.7);
  outline: none;
  transform: translateY(-1px);
}

.cd-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}
.cd-modal[aria-hidden="false"] {
  display: block;
  animation: cd-fade-in 0.18s ease-out;
}
@keyframes cd-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cd-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 42, 56, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cd-modal__panel {
  position: relative;
  background: #ffffff;
  max-width: 520px;
  width: calc(100% - 32px);
  margin: 5vh auto 40px;
  border-radius: 16px;
  padding: 36px 36px 28px;
  box-shadow: 0 24px 70px rgba(10, 42, 56, 0.32);
  max-height: 90vh;
  overflow-y: auto;
}
.cd-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--color-primary, #1a5f7a);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.cd-modal__close:hover,
.cd-modal__close:focus-visible {
  background: rgba(26, 95, 122, 0.08);
  outline: none;
}
.cd-modal__title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  line-height: 1.25;
  color: var(--color-primary-dark, #134d64);
  margin-bottom: 8px;
}
.cd-modal__subtitle {
  color: rgba(82, 88, 112, 0.85);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.cd-form .form-group {
  margin-bottom: 16px;
}
.cd-form__checkbox {
  margin-top: 4px;
  margin-bottom: 20px;
}
.cd-form__checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  color: var(--color-text, #134d64);
  font-size: 14px;
  cursor: pointer;
}
.cd-form__checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--color-accent, #2a96b4);
  cursor: pointer;
}
.cd-submit {
  width: 100%;
  margin-top: 4px;
}
.cd-submit[disabled] {
  opacity: 0.65;
  cursor: progress;
}
.cd-status {
  margin-top: 14px;
  font-size: 14px;
  min-height: 20px;
  color: rgba(82, 88, 112, 0.85);
}
.cd-status.error {
  color: #b91c1c;
}
.cd-success {
  text-align: center;
  padding: 24px 8px 8px;
}
.cd-success h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--color-primary-dark, #134d64);
  margin-bottom: 10px;
}
.cd-success p {
  color: rgba(82, 88, 112, 0.9);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .cd-modal__panel {
    margin: 2vh auto 20px;
    padding: 28px 22px 22px;
    max-height: 96vh;
  }
  .cd-modal__title { font-size: 22px; }
}

/* ============================================================
 * LANDING CONVERSION TRUST PATCH — 2026-05-17
 * Adds: hero urgency line, relevance strip, IR tour header,
 *       methodology section, scenarios section, pricing comparison.
 * ============================================================ */

/* Hero secondary urgency line (under existing subtitle, above CTAs) */
.hero-urgency {
  position: relative;
  z-index: 2;
  margin: -8px 0 22px;
  max-width: 560px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  text-align: left;
  animation: fadeInUp 0.8s ease 0.4s both;
}
@media (max-width: 960px) {
  .hero-urgency { text-align: center; margin: 0 auto 20px; }
}

/* Above-fold relevance strip (after hero) — modernized 2026-05-18 */
.relevance-strip {
  position: relative;
  padding: 76px 24px;
  background:
    radial-gradient(1200px 380px at 50% 0%, rgba(42, 150, 180, 0.07), transparent 70%),
    linear-gradient(180deg, #f5f8fb 0%, #eef4f8 100%);
  border-top: 1px solid rgba(26, 95, 122, 0.08);
  border-bottom: 1px solid rgba(26, 95, 122, 0.08);
  overflow: hidden;
}
.relevance-strip::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #2a96b4, #5ac4d8);
  opacity: 0.9;
}
.relevance-strip__inner { max-width: 1180px; margin: 0 auto; position: relative; }
.relevance-strip__title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}
.relevance-strip__eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a5f7a;
  font-weight: 600;
  margin-bottom: 14px;
  padding: 5px 12px;
  background: rgba(42, 150, 180, 0.10);
  border: 1px solid rgba(42, 150, 180, 0.22);
  border-radius: 999px;
}
.relevance-strip__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 400;
  color: #0B1F3F;
  margin: 0 0 12px;
  line-height: 1.22;
}
.relevance-strip__subtitle {
  font-size: 15px;
  color: #5a6478;
  line-height: 1.6;
  margin: 0;
}
.relevance-strip__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}
.relevance-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafcfd 100%);
  border: 1px solid rgba(26, 95, 122, 0.10);
  border-radius: 16px;
  padding: 26px 24px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(26, 95, 122, 0.04), 0 8px 24px rgba(26, 95, 122, 0.06);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.relevance-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2a96b4, #5ac4d8);
  opacity: 0.85;
  transform: scaleX(0.4);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), opacity 0.35s ease;
}
.relevance-card:hover {
  transform: translateY(-3px);
  border-color: rgba(42, 150, 180, 0.32);
  box-shadow: 0 2px 4px rgba(26, 95, 122, 0.05), 0 14px 36px rgba(26, 95, 122, 0.10);
}
.relevance-card:hover::before { transform: scaleX(1); opacity: 1; }
.relevance-card__num {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #2a96b4;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.relevance-card__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  color: #0B1F3F;
  margin: 0 0 10px;
  line-height: 1.3;
}
.relevance-card__body {
  font-size: 13.5px;
  line-height: 1.65;
  color: #5a6478;
  margin: 0 0 18px;
  flex: 1;
}
.relevance-card__count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  color: #6b7280;
  border-top: 1px solid rgba(26, 95, 122, 0.10);
  padding-top: 14px;
  letter-spacing: 0.01em;
}
.relevance-card__count strong {
  color: #1a5f7a;
  font-weight: 700;
  font-size: 28px;
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1;
  letter-spacing: -0.01em;
}
.relevance-strip__cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.relevance-strip__cta {
  white-space: nowrap;
}
@media (max-width: 880px) {
  .relevance-strip { padding: 48px 18px; }
  .relevance-strip__cards { grid-template-columns: 1fr; gap: 16px; }
}

/* IR tour header (partial-sample wording above the pinned tour) */
.ir-tour-header {
  max-width: 920px;
  margin: 0 auto;
  padding: 96px 24px 96px;
  text-align: center;
}
.ir-tour-header__eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a5f7a;
  font-weight: 600;
  background: rgba(42, 150, 180, 0.10);
  border: 1px solid rgba(42, 150, 180, 0.22);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 14px;
}
.ir-tour-header__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 400;
  color: #0B1F3F;
  margin: 0 0 10px;
  line-height: 1.3;
}
.ir-tour-header__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #5a6478;
  margin: 0 auto;
  max-width: 760px;
}
@media (max-width: 720px) {
  .ir-tour-header { padding: 64px 18px 64px; }
}

/* Methodology section */
.methodology-section {
  padding: 88px 24px;
  background: #ffffff;
}
.methodology-frame {
  max-width: 1180px;
  margin: 0 auto;
}
.methodology-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}
.methodology-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 400;
  color: #0B1F3F;
  margin: 12px 0 14px;
  line-height: 1.25;
}
.methodology-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #5a6478;
  margin: 0;
}
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}
.methodology-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
  border: 1px solid rgba(26, 95, 122, 0.10);
  border-radius: 16px;
  padding: 30px 26px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(26, 95, 122, 0.04), 0 10px 28px rgba(26, 95, 122, 0.07);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.methodology-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #2a96b4, #5ac4d8);
  opacity: 0.7;
  transform: scaleY(0.4);
  transform-origin: top center;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), opacity 0.35s ease;
}
.methodology-card:hover {
  transform: translateY(-3px);
  border-color: rgba(42, 150, 180, 0.30);
  box-shadow: 0 2px 4px rgba(26, 95, 122, 0.06), 0 18px 40px rgba(26, 95, 122, 0.12);
}
.methodology-card:hover::before { transform: scaleY(1); opacity: 1; }
.methodology-card__num {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #2a96b4;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.methodology-card__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #0B1F3F;
  margin: 0 0 14px;
  line-height: 1.3;
}
.methodology-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #5a6478;
  margin: 0 0 18px;
  flex: 1;
}
.methodology-card__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.methodology-chip {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #1a5f7a;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(26, 95, 122, 0.18);
  border-radius: 999px;
  padding: 5px 11px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.methodology-chip:hover {
  background: rgba(42, 150, 180, 0.10);
  border-color: rgba(42, 150, 180, 0.42);
  color: #134d64;
}
.methodology-fine {
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 95, 122, 0.08);
}
.methodology-fine p { margin: 0; }
@media (max-width: 880px) {
  .methodology-section { padding: 64px 18px; }
  .methodology-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* Scenarios section */
.scenarios-section {
  padding: 88px 24px;
  background: #f5f8fb;
}
.scenarios-frame {
  max-width: 1180px;
  margin: 0 auto;
}
.scenarios-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}
.scenarios-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 400;
  color: #0B1F3F;
  margin: 12px 0 14px;
  line-height: 1.25;
}
.scenarios-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #5a6478;
  margin: 0;
}
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 24px;
}
.scenario-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafcfd 100%);
  border: 1px solid rgba(26, 95, 122, 0.10);
  border-radius: 16px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(26, 95, 122, 0.04), 0 10px 28px rgba(26, 95, 122, 0.07);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.scenario-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, rgba(42, 150, 180, 0.10), transparent 70%);
  pointer-events: none;
}
.scenario-card:hover {
  transform: translateY(-3px);
  border-color: rgba(42, 150, 180, 0.30);
  box-shadow: 0 2px 4px rgba(26, 95, 122, 0.06), 0 18px 40px rgba(26, 95, 122, 0.12);
}
.scenario-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  position: relative;
}
.scenario-card__num {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, #1a5f7a 0%, #2a96b4 100%);
  border-radius: 999px;
  padding: 5px 12px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(26, 95, 122, 0.18);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.scenario-card__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  color: #0B1F3F;
  margin: 0;
  line-height: 1.3;
}
.scenario-card__body {
  font-size: 14px;
  line-height: 1.7;
  color: #5a6478;
  margin: 0 0 20px;
  flex: 1;
  position: relative;
}
.scenario-card__beforeafter {
  border-top: 1px solid rgba(26, 95, 122, 0.10);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.scenario-card__row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
  line-height: 1.55;
  color: #5a6478;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(244, 247, 250, 0.7);
}
.scenario-card__rowlabel {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9aa3ad;
  font-weight: 700;
  flex-shrink: 0;
  width: 56px;
}
.scenario-card__row--after {
  background: linear-gradient(135deg, rgba(42, 150, 180, 0.08) 0%, rgba(90, 196, 216, 0.05) 100%);
  border-left: 2px solid #2a96b4;
}
.scenario-card__row--after .scenario-card__rowlabel { color: #1a5f7a; }
.scenario-card__row--after .scenario-card__rowtext { color: #0B1F3F; font-weight: 500; }
.scenarios-fine {
  text-align: center;
  font-size: 11px;
  color: #6b7280;
  margin: 12px 0 0;
}
@media (max-width: 880px) {
  .scenarios-section { padding: 64px 18px; }
  .scenarios-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* Inline pricing clarification + fiscal footnote (replaces the deleted
   pricing-compare table and pricing-guide tier-selector block). The
   clarify line is conversion copy (not legalese), so it uses a
   slightly larger size + muted ink. The footnote stays at the small
   12px grey size for legalese. */
.pricing-clarify {
  margin: 32px auto 8px;
  max-width: 720px;
  text-align: center;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(13, 24, 48, 0.72);
}
.pricing-frame__footnote {
  margin: 0 auto;
  max-width: 780px;
  text-align: center;
  font-size: 12px;
  line-height: 1.55;
  color: #6b7280;
}
@media (max-width: 720px) {
  .pricing-clarify { font-size: 15px; padding: 0 12px; }
  .pricing-frame__footnote { padding: 0 12px; }
}

