/* ============================================================
   Biometrida — Design System (converted exactly from Figma)
   Tokens sourced from Figma variable definitions.
   ============================================================ */

/* ---- Design Tokens ---- */
:root {
  /* Colors */
  --c-primary: #4880ff;
  --c-primary-50: #356cfb;
  --c-primary-10: #00154f;
  --c-primary-t5: #f4f5ff;
  --c-primary-t10: #ebefff;
  --c-primary-t15: #e2e9ff;
  --c-primary-t30: #c7d6ff;
  --c-secondary: #1d1f32;
  --c-orange: #fc6d15;
  --c-orange-20: #571e00;
  --c-orange-t5: #fdf4f3;
  --c-orange-t10: #fdede8;
  --c-orange-t30: #fdd0b9;
  --c-green: #00ba9a;
  --c-green-60: #00a486;
  --c-green-20: #00382c;
  --c-green-t5: #f0f8fa;
  --c-green-t10: #e9f6f6;
  --c-green-t30: #b1e8e1;
  --c-yellow: #dea000;
  --c-yellow-50: #9c6f00;
  --c-yellow-20: #422d00;
  --c-yellow-t5: #fdf8f2;
  --c-yellow-t10: #fdf5e6;
  --c-yellow-t40: #fee199;
  --c-bg: #fafafc;
  --c-white: #ffffff;
  --c-black: #000000;
  --c-neutral-80: #47494a;
  --c-neutral-70: #5e6061;
  --c-neutral-50: #8c8d8e;
  --c-neutral-40: #a3a4a5;
  --c-neutral-08: #ededed;
  --c-neutral-var12: #e4e4e4;
  --c-hero-orange: #fc8f15;

  /* Typography */
  --font: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  /* Spacing */
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-9: 36px;
  --sp-10: 40px;
  --sp-11: 44px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;

  /* Radii */
  --r-6: 6px;
  --r-8: 8px;
  --r-12: 12px;
  --r-16: 16px;
  --r-20: 20px;
  --r-pill: 208px;

  /* Shadows */
  --shadow-card:
    0px 5px 2.5px rgba(0, 0, 0, 0.08), 0px 8px 5px rgba(0, 0, 0, 0.05),
    0px 3px 7px rgba(0, 0, 0, 0.04);

  /* Layout */
  --max-w: 1280px;
  --px: 80px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-secondary);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.85;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
p {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}
:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--c-secondary);
  color: #fff;
  border-radius: 0 0 8px 0;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

/* ---- Layout helpers ---- */
.page-wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
.full-bleed {
  width: 100%;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-neutral-08);
}
.header-inner {
  display: flex;
  align-items: center;
  
  padding: var(--sp-4) var(--px);
  max-width: var(--max-w);
  margin-inline: auto;
  height: 76px;
}
/* Logo */
.header-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
}
.header-logo img {
  width: 164px;
  height: 36px;
  object-fit: contain;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-8);
  flex: 1;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.042px;
  color: var(--c-black);
  white-space: nowrap;
  border-radius: var(--r-8);
  transition: background 0.15s;
}
.nav-link:hover {
  background: var(--c-primary-t10);
  opacity: 1;
}
.nav-link.active {
  color: var(--c-primary);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: var(--sp-2);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.042px;
  color: var(--c-black);
  white-space: nowrap;
  cursor: pointer;
  border-radius: var(--r-8);
  transition: background 0.15s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  background: var(--c-primary-t10);
  opacity: 1;
}
.nav-dropdown-toggle .chevron {
  font-size: 11px;
  transition: transform 0.2s;
}
.nav-dropdown.open .chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--c-white);
  border: 1px solid var(--c-neutral-var12);
  border-radius: var(--r-12);
  box-shadow: var(--shadow-card);
  padding: 8px;
  display: none;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-neutral-80);
  border-radius: var(--r-8);
  transition: background 0.15s;
}
.nav-dropdown-menu a:hover {
  background: var(--c-primary-t10);
  color: var(--c-primary);
  opacity: 1;
}
.nav-dropdown-menu a.current {
  color: var(--c-primary);
}

/* CTA button */
.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 var(--sp-4);
  background: var(--c-primary);
  color: var(--c-bg);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.042px;
  white-space: nowrap;
  border-radius: var(--r-pill);
  transition:
    background 0.15s,
    opacity 0.15s;
}
.btn-demo:hover {
  background: var(--c-primary-50);
  opacity: 1;
}

/* Language toggle */
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--c-secondary);
  background: transparent;
  border: 1.5px solid var(--c-neutral-08);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
  margin-left: 16px;
  flex-shrink: 0;
}
.lang-btn:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

/* Hamburger */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  border-radius: var(--r-8);
  border: 1px solid var(--c-neutral-var12);
  flex-shrink: 0;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-secondary);
  border-radius: 2px;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-secondary);
  padding: var(--sp-12) var(--px);
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  gap: var(--sp-8);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.footer-logo img {
  width: 164px;
  height: 36px;
  object-fit: contain;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fafafa;
  transition: background 0.15s;
}
.footer-social a:hover {
  background: var(--c-primary);
  opacity: 1;
}
.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: var(--sp-9);
}
.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.024px;
  color: var(--c-white);
  white-space: nowrap;
  transition: opacity 0.15s;
}
.footer-links a:hover {
  opacity: 0.7;
}
.footer-bottom {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-bottom span,
.footer-bottom a {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.18px;
  color: var(--c-primary);
  white-space: nowrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 var(--sp-4);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.042px;
  white-space: nowrap;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition:
    filter 0.15s,
    opacity 0.15s;
  text-decoration: none;
}
.btn:hover {
  filter: brightness(0.92);
  opacity: 1;
}
.btn-primary {
  background: var(--c-primary);
  color: var(--c-bg);
}
.btn-orange {
  background: var(--c-orange);
  color: var(--c-bg);
}
.btn-outline {
  background: transparent;
  color: var(--c-secondary);
  border: 1.5px solid var(--c-secondary);
}
.btn-sm {
  height: 36px;
  font-size: 14px;
}

/* Result links */
.result-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.024px;
  color: var(--c-primary);
  transition: opacity 0.15s;
  text-decoration: none;
}
.result-link:hover {
  opacity: 0.7;
}
.result-link-orange {
  color: var(--c-orange);
}
.result-link-green {
  color: var(--c-green);
}
.result-link-yellow {
  color: var(--c-yellow);
}

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero-home {
  padding-top: 110px;
  padding-bottom: var(--sp-2);
  padding-inline: var(--px);
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-16);
}
.hero-home-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-9);
}
.hero-home-title {
  font-size: 38px;
  font-weight: 400;
  line-height: 57px;
  color: var(--c-black);
  max-width: 496px;
}
.hero-home-title em {
  color: var(--c-hero-orange);
  font-style: normal;
  font-weight: 400;
}
.hero-home-sub {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 0.044px;
  color: var(--c-neutral-80);
}
.hero-home-cta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.hero-home-image {
  flex-shrink: 0;
  position: relative;
  width: 500px;
  height: 631px;
}
.hero-home-image .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 390px;
}
.hero-home-image .hero-vec {
  position: absolute;
  pointer-events: none;
}
.hero-home-image .hero-vec-1 {
  width: 459px;
  height: 445px;
  bottom: 0;
  right: -7px;
}
.hero-home-image .hero-vec-2 {
  width: 336px;
  height: 340px;
  top: 101px;
  right: 145px;
}

/* ============================================================
   HOME — DASHBOARD STATS SECTION
   ============================================================ */
.dashboard-section {
  padding-block: var(--sp-12);
  background: var(--c-white);
  position: relative;
  overflow: hidden;
}
.dashboard-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.dashboard-screenshot {
  flex: 0 0 818px;
  height: 553px;
  border-radius: var(--r-12);
  overflow: hidden;
  position: relative;
}
.dashboard-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dashboard-stats {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.dash-stat {
  background: rgba(72, 124, 255, 0.07);
  border-radius: var(--r-12);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.dash-stat-num {
  font-size: 42px;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.084px;
  display: block;
}
.dash-stat-num sup {
  font-size: 28px;
  vertical-align: super;
}
.dash-stat-num.blue {
  color: #487cff;
}
.dash-stat-num.green {
  color: var(--c-green);
}
.dash-stat-num.orange {
  color: var(--c-orange);
}
.dash-stat-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.032px;
  color: var(--c-neutral-80);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding-block: 64px;
}
.section-alt {
  background: var(--c-white);
}
.section-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
.section-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.056px;
  color: var(--c-primary);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-label.left {
  text-align: left;
}
.section-title {
  font-size: 38px;
  font-weight: 400;
  line-height: 50px;
  color: var(--c-black);
  text-align: center;
  margin-bottom: 8px;
}
.section-title.left {
  text-align: left;
}
.section-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.08px;
  color: var(--c-neutral-80);
  text-align: center;
}
.section-sub.left {
  text-align: left;
}
.section-head {
  padding-inline: 70px;
  text-align: center;
}
.compliance-section-head{
  background-color: #1D1F32;
  color: #ffffff;
  font-size: 18px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.compliance-section-head .section-label{
  text-align: left;
  color: #ffffff;
  font-size: 18px;
  padding-left: 30px;
}



/* ============================================================
   METRICS STRIP
   ============================================================ */
.metrics-strip {
  background: var(--c-bg);
  padding-block: 48px;
}
.metrics-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metric-item {
  padding: 0 20px;
  text-align: center;
  border-right: 1px solid var(--c-neutral-08);
}
.metric-item:first-child {
  padding-left: 0;
}
.metric-item:last-child {
  border-right: 0;
}
.metric-num {
  font-size: 42px;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.084px;
  margin-bottom: 8px;
}
.metric-num.blue {
  color: var(--c-primary);
}
.metric-num.green {
  color: var(--c-green);
}
.metric-num.orange {
  color: var(--c-orange);
}
.metric-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.04px;
  color: var(--c-black);
  margin-bottom: 4px;
}
.metric-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.032px;
  color: var(--c-neutral-80);
}

/* ============================================================
   RESULTS CARDS
   ============================================================ */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.result-card {
  border-radius: var(--r-12);
  padding: 24px 24px 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 415px;
}
.result-telecom {
  background: var(--c-primary-t10);
}
.result-banking {
  background: var(--c-orange-t10);
}
.result-micro {
  background: var(--c-green-t10);
}
.result-public {
  background: var(--c-yellow-t5);
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.result-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}
.tag-telecom {
  background: var(--c-primary);
  color: #fff;
}
.tag-telecom-sub {
  background: rgba(72, 128, 255, 0.4);
  color: var(--c-secondary);
}
.tag-banking {
  background: var(--c-orange);
  color: #fff;
}
.tag-banking-sub {
  background: rgba(252, 109, 21, 0.4);
  color: var(--c-secondary);
}
.tag-micro {
  background: var(--c-green);
  color: #fff;
}
.tag-micro-sub {
  background: rgba(0, 186, 154, 0.4);
  color: var(--c-secondary);
}
.tag-public {
  background: var(--c-yellow);
  color: #fff;
}
.tag-public-sub {
  background: var(--c-yellow-t40);
  color: var(--c-secondary);
}

.result-headline-wrap {
  flex: 1;
}
.result-headline {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  color: var(--c-black);
}
.result-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.1px;
  color: var(--c-neutral-80);
}

/* ============================================================
   VIDEO EMBED
   ============================================================ */
.video-block {
  position: relative;
  background: #1e1e1e;
  border-radius: var(--r-20);
  overflow: hidden;
}

/* ── Custom video player ── */
.vid-player {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: var(--r-20);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.vid-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-20);
}

/* Big centered play button (shown when paused) */
.vid-big-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s;
}
.vid-big-play svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform 0.15s;
}
.vid-big-play:hover svg {
  transform: scale(1.1);
}
.vid-player.playing .vid-big-play {
  opacity: 0;
  pointer-events: none;
}

/* Controls bar */
.vid-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  border-radius: 0 0 var(--r-20) var(--r-20);
  opacity: 0;
  transition: opacity 0.2s;
}
.vid-player:hover .vid-controls,
.vid-player.paused .vid-controls {
  opacity: 1;
}

/* Play / Stop icon buttons */
.vid-play-btn,
.vid-stop-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: background 0.15s;
}
.vid-play-btn:hover,
.vid-stop-btn:hover {
  background: rgba(255,255,255,0.3);
}
.vid-play-btn svg,
.vid-stop-btn svg {
  width: 14px;
  height: 14px;
}
.vid-play-btn .icon-pause { display: none; }
.vid-player.playing .vid-play-btn .icon-play  { display: none; }
.vid-player.playing .vid-play-btn .icon-pause { display: block; }

/* Progress bar */
.vid-progress {
  flex: 1;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.vid-track {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}
.vid-fill {
  height: 100%;
  background: var(--c-primary);
  border-radius: 2px;
  width: 0%;
  pointer-events: none;
}
.vid-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
  pointer-events: none;
  transition: transform 0.1s;
}
.vid-progress:hover .vid-thumb {
  transform: translate(-50%, -50%) scale(1.3);
}

/* Time display */
.vid-time {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Legacy selector kept for any other embed references */
.youtube-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--r-20);
}

/* ============================================================
   MODULES SECTION
   ============================================================ */
.modules-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.modules-intro-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 24px 0;
}
.modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.module-item {
  border-radius: var(--r-12);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.module-icon {
  font-size: 28px;
  color: var(--c-secondary);
  margin-bottom: 4px;
  line-height: 1;
}
.module-icon.light {
  color: #fff;
}
.module-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0.048px;
  color: var(--c-secondary);
}
.module-title.light {
  color: #fff;
}
.module-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: var(--c-primary);
}
.module-subtitle.light {
  color: rgba(255, 255, 255, 0.85);
}
.module-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.032px;
  color: var(--c-neutral-80);
}
.module-desc.light {
  color: #ededed;
}
.bg-primary-t5 {
  background: var(--c-primary-t5);
}
.bg-green-t5 {
  background: var(--c-green-t5);
}
.bg-orange-t5 {
  background: var(--c-orange-t5);
}
.bg-secondary {
  background: var(--c-secondary);
}
.module-featured {
  height: 100%;
}
.module-flow {
  grid-column: span 1;
}
.module-item .module-subtitle {
  color: var(--c-primary);
}
.module-flow .module-subtitle {
  color: rgba(255, 255, 255, 0.9);
}
.exclusive-badge {
  display: inline-flex;
  padding: 2px 8px;
  background: var(--c-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
}

/* ============================================================
   SECTORS
   ============================================================ */
.sectors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sector-card {
  background: var(--c-white);
  border-radius: var(--r-20);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.sector-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  opacity: 1;
}
.sector-card-img {
  height: 225px;
  overflow: hidden;
  border-radius: var(--r-20) var(--r-20) 0 0;
}
.sector-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.sector-card:hover .sector-card-img img {
  transform: scale(1.04);
}
.sector-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  justify-content: space-between;
}
.sector-card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sector-card-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 45px;
  color: var(--c-black);
}
.sector-card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.08px;
  color: var(--c-neutral-80);
}

/* ============================================================
   LET'S TALK / CONTACT CTA
   ============================================================ */
.contact-talk {
  padding-block: 64px;
  background: var(--c-bg);
}
.contact-talk-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  align-items: center;
  gap: var(--sp-16);
}
.talk-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.talk-title {
  font-size: 38px;
  font-weight: 400;
  line-height: 50px;
  color: var(--c-black);
  margin-top: 8px;
}
.talk-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.08px;
  color: var(--c-neutral-80);
  margin-top: 4px;
}
.talk-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.talk-perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background-color: #e2e9ff;
  padding: 16px;
  border-radius: 12px;
}
.talk-perk-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.talk-perk-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--c-secondary);
  margin-bottom: 2px;
}
.talk-perk-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--c-neutral-80);
}
.talk-right {
  flex-shrink: 0;
  position: relative;
}
.talk-phone {
  width: 500px;
  height: 500px;
  border-radius: 40px;
  overflow: hidden;
}
.talk-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   COMPLIANCE
   ============================================================ */
.compliance-section {
  padding-block: 64px;
  background: var(--c-white);
}
.compliance-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.comp-feat {
  padding: 32px 24px;
  background-color: #e9f6f6;
  border-radius: 12px;
  margin: 16px;
  min-height: 230px;
}
.comp-feat:nth-child(2n) {
  border-left: 0;
}
.comp-feat:nth-child(-n + 2) {
  border-bottom: 0;
}
.comp-feat-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--c-secondary);
  margin-bottom: 8px;
}
.comp-feat-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.032px;
  color: var(--c-neutral-80);
}
.compliance-certs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background-color: #1d1f32;
  padding:16px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}
.cert-item {
  padding: 50px;
  background-color: #212947;
  margin:16px;
  border-radius: 12px;
  text-align: center;
  min-height: 240px;
}
.cert-item:not(:last-child) {
  border-right: 0;
}
.cert-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}
.cert-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.028px;
  color: #fff;
}

/* ============================================================
   DEMO FORM SECTION
   ============================================================ */
.demo-section {
  padding-block: 64px;
  background: var(--c-bg);
}
.demo-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  align-items: center;
  gap: var(--sp-16);
}
.demo-image {
  flex: 1;
  min-width: 0;
  position: relative;
  height: 600px;
  display: block;
}
.demo-img {
  position: absolute;
  width: 522px;
  height: 594px;
  border-radius: 690px;
  overflow: hidden;
  object-fit: cover;
}
.demo-vec {
  position: absolute;
  pointer-events: none;
}
.demo-vec-1 {
  width: 495px;
  height: 478px;
  bottom: 0;
  left: 3px;
  z-index: 1;
}
.demo-vec-2 {
  width: 315px;
  height: 318px;
  top: 85px;
  left: 0;
  z-index: 0;
}
.demo-form-wrap {
  flex: 0 0 468px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 56px;
}
.demo-form-title {
  font-size: 38px;
  font-weight: 400;
  line-height: 50px;
  color: var(--c-black);
}
.demo-form-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.08px;
  color: var(--c-neutral-80);
  margin-top: 4px;
}

/* ============================================================
   FORM
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.08px;
  color: var(--c-neutral-80);
  margin-bottom: 4px;
}
.form-req {
  color: #b00020;
}
.form-field {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0 var(--sp-4);
  background: var(--c-white);
  border: 1px solid var(--c-neutral-40);
  border-radius: var(--r-8);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: var(--c-neutral-80);
  outline: none;
  transition: border-color 0.15s;
}
.form-field:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-primary-t15);
}
.form-field[aria-invalid="true"] {
  border-color: #b00020;
}
.form-field::placeholder {
  color: var(--c-neutral-50);
}
.form-error {
  font-size: 13px;
  color: #b00020;
  margin-top: 4px;
  min-height: 18px;
}
select.form-field {
  cursor: pointer;
}
textarea.form-field {
  height: auto;
  min-height: 88px;
  padding: 10px var(--sp-4);
  resize: vertical;
  line-height: 1.5;
}
.form-status {
  font-size: 14px;
  line-height: 21px;
  padding: 12px 0;
}
.form-status.success {
  color: #00693a;
}
.form-status.failure {
  color: #b00020;
}
.form-check-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--c-neutral-70);
  cursor: pointer;
  line-height: 1.5;
}
.form-check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--c-primary);
  cursor: pointer;
}
.form-check-label a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-check-label a:hover {
  color: var(--c-primary-50);
  opacity: 1;
}

/* ============================================================
   FLOW BUILDER — HERO
   ============================================================ */
.hero-fb {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-inline: var(--px);
  background: var(--c-primary-t10);
}
.hero-fb-inner {
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-16);
  padding-bottom: 30px;
}
.hero-fb-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-9);
}
.hero-fb-title {
  font-size: 38px;
  font-weight: 400;
  line-height: 57px;
  color: var(--c-black);
}
.hero-fb-sub {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 0.044px;
  color: var(--c-neutral-80);
}
.hero-fb-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.fb-stat {
  background: var(--c-white);
  border-radius: var(--r-12);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fb-stat-num {
  font-size: 28px;
  font-weight: 600;
  line-height: 42px;
  color: var(--c-primary);
}
.fb-stat-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--c-neutral-80);
}
.hero-fb-image {
  flex-shrink: 0;
  position: relative;
  width: 520px;
  height: 450px;
}
.hero-fb-image img.ui-shot {
  position: absolute;
  width: 100%;
  border-radius: 12px;
  z-index: 2;
}

/* ============================================================
   USE-CASE HEROES
   ============================================================ */
.uc-hero.micro{
  width: 100%;
  background: var(--c-green-t30);
  padding: 30px;
} 
.uc-hero.telecom{
  width: 100%;
  background: var(--c-primary-t30);
  padding: 30px;
} 
.uc-hero.mobile{
  width: 100%;
  background: var(--c-orange-t30);
  padding: 30px;
} 
.uc-hero.public{
  width: 100%;
  background: var(--c-yellow-t40);
  padding: 30px;
} 
.uc-hero-inner {
  overflow: hidden;
  display: flex;
  gap: 56px;
  align-items: flex-end;
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.uc-hero-text {
  flex-shrink: 0;
  width: 539px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.uc-eyebrow {
  display: inline-flex;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  white-space: nowrap;
  align-self: flex-start;
}
.uc-eyebrow.telecom {
  background: var(--c-primary-10);
}
.uc-eyebrow.mobile {
  background: var(--c-orange-20);
}
.uc-eyebrow.micro {
  background: var(--c-green-20);
}
.uc-eyebrow.public {
  background: var(--c-yellow-20);
}

.uc-hero-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 57px;
  color: #fff;
}
.uc-hero-title em {
  font-style: normal;
}
.telecom .uc-hero-title em {
  color: var(--c-primary-10);
}
.mobile .uc-hero-title em {
  color: var(--c-orange-20);
}
.micro .uc-hero-title em {
  color: var(--c-green-20);
}
.public .uc-hero-title em {
  color: var(--c-yellow-20);
}

.uc-hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.027px;
  color: #fafafc;
}
.uc-stats {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.uc-stat {
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.uc-stat-num {
  font-size: 28px;
  font-weight: 600;
  line-height: 42px;
}
.uc-stat-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.032px;
  color: var(--c-neutral-80);
}
.telecom .uc-stat {
  background: var(--c-primary-t10);
}
.telecom .uc-stat-num {
  color: var(--c-primary-50);
}
.mobile .uc-stat {
  background: var(--c-orange-t10);
}
.mobile .uc-stat-num {
  color: var(--c-orange);
}
.micro .uc-stat {
  background: var(--c-green-t10);
}
.micro .uc-stat-num {
  color: var(--c-green-60);
}
.public .uc-stat {
  background: var(--c-yellow-t10);
}
.public .uc-stat-num {
  color: var(--c-yellow-50);
}

/* ============================================================
   USE-CASE BODY
   ============================================================ */
.uc-body {
  padding-block: 64px;
}
.uc-body-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-top: 32px;
}
.uc-body-wrap {
  display: grid;
  grid-template-columns: 1fr 359px;
  gap: 32px;
  align-items: start;
}
.uc-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Disclaimer */
.uc-disclaimer {
  background: var(--c-primary-t5);
  border-radius: var(--r-12);
  padding: 16px 20px;
  font-size: 14px;
  line-height: 22px;
  color: var(--c-neutral-80);
  margin-bottom: 32px;
}
.uc-disclaimer strong { color: var(--c-black); }

/* Anonymized notice */
.uc-notice {
  background: var(--c-primary-t5);
  border-radius: var(--r-12);
  padding: 24px;
  font-size: 14px;
  line-height: 22px;
  color: var(--c-neutral-80);
}
.uc-notice strong {
  color: var(--c-black);
}

/* Section heading */
.uc-section-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 0.044px;
  color: var(--c-black);
  margin-bottom: 12px;
  margin-top: 32px;
}
.uc-section-title:first-child { margin-top: 0; }
.uc-body-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.08px;
  color: var(--c-neutral-80);
  margin-bottom: 12px;
}
.uc-body-text:last-child { margin-bottom: 0; }
.uc-body-text p {
  margin-bottom: 16px;
}
.uc-body-text p:last-child {
  margin-bottom: 0;
}
.uc-results-grid, .uc-limits { margin-top: 0; }
.uc-section-title + .uc-results-grid,
.uc-section-title + .uc-body-text { margin-top: 0; }

/* Results grid */
.uc-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.uc-result-card {
  background: var(--c-primary-t5);
  border-radius: var(--r-12);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.uc-result-num {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: var(--c-primary);
}
.uc-result-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.032px;
  color: var(--c-neutral-80);
}

/* Limits box */
.uc-limits {
  background: var(--c-orange-t5);
  border: 1px solid var(--c-orange);
  border-radius: var(--r-12);
  padding: 24px 24px 34px;
  font-size: 14px;
  line-height: 22px;
  color: var(--c-neutral-80);
  margin-top: 16px;
}
.uc-limits-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.024px;
  color: var(--c-orange);
  margin-bottom: 8px;
}
.uc-limits p {
  margin-bottom: 8px;
}
.uc-limits p:last-child {
  margin-bottom: 0;
}

/* Sidebar */
.uc-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.uc-sidebar-card {
  background: var(--c-primary-t5);
  border-radius: var(--r-12);
  padding: 24px 24px 34px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.uc-sidebar-card h3 {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.028px;
  color: var(--c-black);
  text-transform: uppercase;
}
.uc-sidebar-dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  font-size: 14px;
  line-height: 22px;
}
.uc-sidebar-dl dt,
.uc-sidebar-dl dd {
  padding: 8px 0;
  border-bottom: 1px solid var(--c-neutral-var12);
  margin: 0;
}
.uc-sidebar-dl dt:last-of-type,
.uc-sidebar-dl dd:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.uc-sidebar-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-neutral-var12);
  font-size: 14px;
  line-height: 22px;
}
.uc-sidebar-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.uc-sidebar-dt, .uc-sidebar-dl dt {
  flex: 1;
  color: var(--c-neutral-70);
  letter-spacing: 0.1px;
}
.uc-sidebar-dd, .uc-sidebar-dl dd {
  flex: 1;
  color: var(--c-secondary);
}
.uc-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.uc-module-tag {
  background: var(--c-primary-t15);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 14px;
  color: var(--c-secondary);
  font-weight: 400;
  white-space: nowrap;
}
.uc-cta-card {
  background: var(--c-secondary);
  border-radius: var(--r-12);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.uc-cta-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
}
.uc-cta-desc {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.032px;
  color: #ededed;
}

/* ============================================================
   USE-CASE CONTACT
   ============================================================ */
.uc-contact {
  padding-block: 64px;
  background: var(--c-bg);
}
.uc-contact-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  gap: var(--sp-16);
  align-items: center;
  justify-content: center;
}
.uc-contact-form-wrap {
  flex: 0 0 560px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.uc-contact-image {
  flex: 1;
  min-width: 0;
  position: relative;
  height: 600px;
}
.uc-contact-img {
  position: absolute;
  width: 522px;
  height: 594px;
  border-radius: 690px;
  object-fit: cover;
}
.uc-contact-vec {
  position: absolute;
  pointer-events: none;
}
.uc-contact-vec-1 {
  width: 495px;
  height: 478px;
  bottom: 0;
  left: 3px;
  z-index: 1;
}
.uc-contact-vec-2 {
  width: 315px;
  height: 318px;
  top: 85px;
  left: 0;
  z-index: 0;
}

/* ============================================================
   FLOW BUILDER — COMPARISON
   ============================================================ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.compare-card {
  background: var(--c-white);
  border: 1px solid var(--c-neutral-08);
  border-radius: var(--r-12);
  padding: 28px;
}
.compare-card.bad {
  border-top: 4px solid var(--c-orange);
}
.compare-card.good {
  border-top: 4px solid var(--c-green);
}
.compare-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--c-secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-card li {
  font-size: 15px;
  line-height: 24px;
  color: var(--c-neutral-80);
  padding-left: 20px;
  position: relative;
}
.compare-card li::before {
  position: absolute;
  left: 0;
}
.compare-card.bad li::before {
  content: "✕";
  color: var(--c-orange);
}
.compare-card.good li::before {
  content: "✓";
  color: var(--c-green);
}

/* ============================================================
   FLOW BUILDER — INTEGRATION
   ============================================================ */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.int-card {
  background: var(--c-white);
  border: 1px solid var(--c-neutral-08);
  border-radius: var(--r-12);
  padding: 28px;
}
.int-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.int-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-secondary);
  margin-bottom: 8px;
}
.int-card-desc {
  font-size: 15px;
  line-height: 24px;
  color: var(--c-neutral-80);
}

/* ============================================================
   FLOW BUILDER — AUDIT FEATURES
   ============================================================ */
.fb-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.fb-feature {
  padding: 32px 24px;
  border: 1px solid var(--c-neutral-08);
  display: flex;
  gap: 20px;
}
.fb-feature:nth-child(2n) {
  border-left: 0;
}
.fb-feature:nth-child(-n + 2) {
  border-bottom: 0;
}
.fb-feature-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.fb-feature-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-secondary);
  margin-bottom: 6px;
}
.fb-feature-desc {
  font-size: 15px;
  line-height: 24px;
  color: var(--c-neutral-80);
}

/* ============================================================
   FLOW BUILDER — ROUTING ENGINE
   ============================================================ */
.fb-route-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.fb-route-item {
  background: var(--c-white);
  border: 1px solid var(--c-neutral-08);
  border-radius: var(--r-12);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fb-route-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--c-primary-t10);
  line-height: 1;
}
.fb-route-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-secondary);
}
.fb-route-desc {
  font-size: 14px;
  line-height: 22px;
  color: var(--c-neutral-80);
}

/* ============================================================
   STANDARDS BLOCK (FLOW BUILDER) — legacy
   ============================================================ */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.standard-card {
  background: var(--c-secondary);
  border-radius: var(--r-12);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.standard-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.standard-desc {
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   FLOW BUILDER — STATS STRIP (expanded with descriptions)
   ============================================================ */
.fb-stats-section {
  padding: 48px var(--px);
  background: var(--c-white);
  border-bottom: 1px solid var(--c-neutral-08);
}
.fb-stats-inner {
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  gap: 36px;
}
.fb-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  border-radius: 8px;
}
.fb-stat-big {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.084px;
}
.fb-stat-big.blue   { color: var(--c-primary); }
.fb-stat-big.green  { color: var(--c-green); }
.fb-stat-big.orange { color: var(--c-orange); }
.fb-stat-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--c-secondary);
}
.fb-stat-extra {
  font-size: 16px;
  line-height: 24px;
  color: var(--c-neutral-80);
}

/* ============================================================
   FLOW BUILDER — HERO IMAGE VECTORS
   ============================================================ */
.hero-fb-image {
  position: relative;
  flex-shrink: 0;
}
.hero-fb-image .ui-shot {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  width: 445px;
  height: auto;
  display: block;

}


/* ============================================================
   FLOW BUILDER — VIDEO
   ============================================================ */
.fb-video-section {
  padding: 0 var(--px) 32px;
}
.fb-video-section .section-inner {
  max-width: 1120px;
  margin-inline: auto;
}

/* ============================================================
   FLOW BUILDER — COMPARE CARD (redesigned)
   ============================================================ */
.compare-card {
  background: var(--c-white);
  border-radius: 20px;
  padding: 36px 0;
  box-shadow: 0 5px 5px rgba(0,0,0,.08), 0 8px 10px rgba(0,0,0,.05), 0 3px 14px rgba(0,0,0,.04);
  overflow: hidden;
  border: none;
}
.compare-card.bad  { border-top: 7px solid var(--c-orange); }
.compare-card.good { border-top: 7px solid var(--c-green); }
.compare-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  margin-bottom: 28px;
}
.compare-icon {
  font-size: 30px;
  flex-shrink: 0;
  line-height: 1;
}
.bad-icon  { color: var(--c-orange); }
.good-icon { color: var(--c-green); }
.compare-card h3 {
  font-size: 30px;
  font-weight: 400;
  line-height: 45px;
  color: var(--c-secondary);
  margin: 0;
}
.compare-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px;
  list-style: none;
  margin: 0;
}
.compare-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 24px;
  color: var(--c-neutral-80);
}
.compare-list li .emoji {
  font-size: 26px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

/* ============================================================
   FLOW BUILDER — AUDIT 2×2 GRID
   ============================================================ */
.fb-audit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.fb-audit-card {
  background: #e9f6f6;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 212px;
}
.fb-audit-icon {
  font-size: 32px;
  color: var(--c-green);
  flex-shrink: 0;
  width: 72px;
  height: 56px;
  display: flex;
  align-items: center;
}
.fb-audit-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--c-secondary);
  margin-bottom: 2px;
}
.fb-audit-desc {
  font-size: 16px;
  line-height: 24px;
  color: var(--c-neutral-80);
}

/* ============================================================
   FLOW BUILDER — DARK STANDARDS PANEL
   ============================================================ */
.fb-standards-dark {
  background: #1d1f32;
  border-radius: 12px;
  padding: 32px 40px;
  margin-top: 12px;
}
.fb-std-label {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #fff;
  margin-bottom: 12px;
}
.fb-std-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fb-std-card {
  border-radius: 12px;
  padding: 24px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 240px;
  justify-content: center;
  text-align: center;
}
.fb-std-card.compliance {
  background: rgba(0, 186, 154, 0.1);
  border: 1px solid #00ba9a;
}
.fb-std-card.security {
  background: rgba(72, 128, 255, 0.1);
  padding: 24px 80px;
}
.fb-std-card-icon {
  font-size: 28px;
  color: #fff;
}
.fb-std-card-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0.048px;
  color: #fff;
}
.fb-std-card.compliance .fb-std-card-title {
  color: #4ccdb8;
}
.fb-std-card-desc {
  font-size: 16px;
  line-height: 24px;
  color: #ededed;
}

/* ============================================================
   FLOW BUILDER — INTEGRATION CARDS (colored bgs)
   ============================================================ */
.int-card.int-link   { background: #f0f8fa; border: none; }
.int-card.int-iframe { background: #fdf4f3; border: none; }
.int-card.int-sdk    { background: #f4f5ff; border: none; }

/* ============================================================
   FLOW BUILDER — CREATION MODE
   ============================================================ */
.fb-creation-section {
  background: #f4f5ff;
  padding: 20px var(--px);
}
.fb-creation-wrap {
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  gap: 36px;
  align-items: center;
}
.fb-creation-text {
  flex: 1;
  min-width: 0;
}
.fb-creation-options {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.fb-creation-option {
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fb-option-h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  color: var(--c-secondary);
}
.fb-option-p {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.1px;
  color: var(--c-neutral-80);
}
.fb-option-badge {
  display: inline-flex;
  align-items: center;
  background: #e2e9ff;
  color: #1d1f32;
  font-size: 14px;
  line-height: normal;
  padding: 6px 8px;
  border-radius: 6px;
  align-self: flex-start;
}

/* ============================================================
   FLOW BUILDER — DECISION TREE LAYOUT
   ============================================================ */
.fb-decision-top {
  display: flex;
  gap: 36px;
  align-items: center;
  margin-bottom: 32px;
}
.fb-decision-text {
  flex: 1;
  min-width: 0;
}
.fb-decision-image {
  flex-shrink: 0;
  width: 500px;
}
.fb-decision-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* updated route cards — Figma: bg #f4f5ff, no border */
.fb-route-item {
  background: #f4f5ff;
  border: none;
  border-radius: var(--r-12);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fb-route-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--c-secondary);
  letter-spacing: 0.04px;
}
.fb-route-desc {
  font-size: 16px;
  line-height: 24px;
  color: var(--c-neutral-80);
  letter-spacing: 0.032px;
}

/* ============================================================
   FLOW BUILDER — DEMO BLOB IMAGE
   ============================================================ */
.demo-blob {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

/* ============================================================
   LANGUAGE CONTENT SWITCHING
   ============================================================ */
html:not([lang="fr"]) .fr-only { display: none !important; }
html[lang="fr"] .en-only { display: none !important; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  background: var(--c-primary-t5);
  padding: 64px var(--px) 48px;
  border-bottom: 1px solid var(--c-neutral-08);
}
.legal-hero-inner {
  max-width: 1120px;
  margin-inline: auto;
}
.legal-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 16px;
}
.legal-hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-secondary);
  margin-bottom: 12px;
}
.legal-meta {
  font-size: 14px;
  color: var(--c-neutral-50);
}
.legal-body {
  max-width: 760px;
  margin-inline: auto;
  padding: 56px var(--px) 80px;
}
.legal-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-secondary);
  margin: 40px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--c-neutral-08);
}
.legal-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-secondary);
  margin: 24px 0 8px;
}
.legal-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-neutral-80);
  margin-bottom: 16px;
}
.legal-body ul, .legal-body ol {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-neutral-80);
  padding-left: 24px;
  margin-bottom: 16px;
  list-style: disc;
}
.legal-body ul li, .legal-body ol li {
  margin-bottom: 6px;
}
.legal-body a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-body a:hover {
  color: var(--c-primary-50);
  opacity: 1;
}
.legal-card {
  background: var(--c-primary-t5);
  border: 1px solid var(--c-primary-t15);
  border-radius: var(--r-12);
  padding: 20px 24px;
  margin: 16px 0;
}
.legal-card p { margin-bottom: 6px; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-note {
  background: var(--c-yellow-t5);
  border-left: 3px solid var(--c-yellow);
  padding: 12px 16px;
  border-radius: 0 var(--r-8) var(--r-8) 0;
  font-size: 14px !important;
  margin: 16px 0;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0 24px;
}
.legal-table th {
  background: var(--c-primary-t5);
  color: var(--c-secondary);
  font-weight: 600;
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--c-neutral-08);
}
.legal-table td {
  padding: 10px 14px;
  border: 1px solid var(--c-neutral-08);
  vertical-align: top;
  color: var(--c-neutral-80);
  line-height: 1.5;
}
.legal-table tr:nth-child(even) td { background: var(--c-bg); }

@media (max-width: 900px) {
  .legal-hero { padding: 48px var(--sp-4) 36px; }
  .legal-hero h1 { font-size: 28px; }
  .legal-body { padding: 40px var(--sp-4) 60px; }
  .legal-table { display: block; overflow-x: auto; }
}

/* ============================================================
   HOW WE OPERATE PAGE
   ============================================================ */
.how{
  width: 100%;
  background: #01AC8E;
}
.how-hero {
  position: relative;
  padding: 80px 0px;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
}
.how-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  
}
.how-hero-dec {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  opacity: 0.10;
  pointer-events: none;
}
.how-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.how-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #B1E8E1;
  margin-bottom: 16px;
}
.how-hero h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
}
.how-hero-lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0;
}
.how-section {
  padding: 72px var(--px);
}
.how-section--alt {
  background: var(--c-primary-t5);
  border-top: 1px solid var(--c-primary-t15);
  border-bottom: 1px solid var(--c-primary-t15);
}
.how-inner {
  max-width: 1120px;
  margin-inline: auto;
}
.how-section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 12px;
}
.how-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--c-secondary);
  margin: 0 0 16px;
  line-height: 1.2;
}
.how-section-lede {
  font-size: 16px;
  color: var(--c-neutral-70);
  line-height: 1.6;
  max-width: 660px;
  margin-bottom: 40px;
}
.how-section-note {
  background: var(--c-yellow-t5);
  border-left: 3px solid var(--c-yellow);
  padding: 12px 16px;
  border-radius: 0 var(--r-8) var(--r-8) 0;
  font-size: 14px;
  color: var(--c-neutral-80);
  line-height: 1.6;
  margin-top: 24px;
}
.how-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.how-entity {
  background: var(--c-white);
  border: 1px solid var(--c-neutral-08);
  border-radius: var(--r-16);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.how-entity h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-secondary);
  margin: 0 0 12px;
}
.how-entity-loc {
  font-weight: 400;
  color: var(--c-neutral-50);
  font-size: 15px;
}
.how-entity p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-neutral-70);
  margin: 0;
}
.how-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-12);
  border: 1px solid var(--c-neutral-08);
}
.how-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.how-table thead th {
  background: var(--c-secondary);
  color: var(--c-white);
  font-weight: 600;
  text-align: left;
  padding: 14px 20px;
}
.how-table tbody th {
  font-weight: 500;
  color: var(--c-secondary);
  padding: 14px 20px;
  border-bottom: 1px solid var(--c-neutral-08);
  background: var(--c-white);
  text-align: left;
  width: 60%;
}
.how-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--c-neutral-08);
  color: var(--c-neutral-70);
  background: var(--c-white);
}
.how-table tbody tr:last-child th,
.how-table tbody tr:last-child td { border-bottom: 0; }
.how-table tbody tr:nth-child(odd) th,
.how-table tbody tr:nth-child(odd) td { background: var(--c-primary-t5); }
.how-arch-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.how-arch-list li {
  background: var(--c-white);
  border: 1px solid var(--c-neutral-08);
  border-radius: var(--r-16);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.how-arch-list li h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-secondary);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.how-arch-list li h3::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
  flex-shrink: 0;
}
.how-arch-list li p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-neutral-70);
  margin: 0;
}
.how-commitments {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: commit;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.how-commitments li {
  counter-increment: commit;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.how-commitments li::before {
  content: counter(commit);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  margin-top: 2px;
}
.how-commitments li h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-secondary);
  margin: 0 0 6px;
}
.how-commitments li p {
  font-size: 15px;
  color: var(--c-neutral-70);
  line-height: 1.6;
  margin: 0;
}
.how-cta {
  background: var(--c-secondary);
  padding: 72px var(--px);
  text-align: center;
}
.how-cta h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--c-white);
  margin: 0 0 12px;
}
.how-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin: 0 0 28px;
}

@media (max-width: 1024px) {
  .how-arch-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .how-hero { padding: 64px var(--sp-4) 48px; }
  .how-hero h1 { font-size: 30px; }
  .how-hero-lede { font-size: 15px; }
  .how-hero-dec { display: none; }
  .how-section { padding: 48px var(--sp-4); }
  .how-twocol { grid-template-columns: 1fr; }
  .how-arch-list { grid-template-columns: 1fr; }
  .how-cta { padding: 48px var(--sp-4); }
  .how-cta h2 { font-size: 22px; }
}

/* ============================================================
   PUBLIC SECTOR PAGE COMPONENTS
   ============================================================ */
.pub-section {
  padding: 64px var(--px);
  max-width: var(--max-w);
  margin-inline: auto;
}
.pub-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 12px;
}
.pub-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--c-secondary);
  margin: 0 0 8px;
  line-height: 1.25;
}
.pub-section-intro {
  font-size: 15px;
  color: var(--c-neutral-70);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 640px;
}
/* Challenge cards */
.pub-challenges-section {
  background: var(--c-bg);
  padding: 48px 0px;
  max-width: 1120px;
  margin: 0 auto;
}
.pub-challenges-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}
.pub-challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.pub-challenge-card {
  padding: 28px;
  background: var(--c-white);
  border-radius: var(--r-12);
  border: 1px solid var(--c-neutral-08);
  box-shadow: var(--shadow-card);
}
.pub-challenge-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-primary-t10);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  margin-bottom: 14px;
}
.pub-challenge-tag.orange { color: var(--c-orange); background: var(--c-orange-t10); }
.pub-challenge-tag.green  { color: var(--c-green-60); background: var(--c-green-t10); }
.pub-challenge-tag.yellow { color: var(--c-yellow-50); background: var(--c-yellow-t10); }
.pub-challenge-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-secondary);
  margin: 0 0 10px;
}
.pub-challenge-desc {
  font-size: 14px;
  color: var(--c-neutral-70);
  line-height: 1.65;
  margin: 0;
}
/* Use case cards */
.pub-usecase-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}
.pub-usecase-card {
  background: var(--c-white);
  border-radius: var(--r-12);
  border: 1px solid var(--c-neutral-08);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.pub-usecase-header {
  background: var(--c-primary-t5);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary-10);
  border-bottom: 1px solid var(--c-primary-t15);
}
.pub-usecase-body {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.pub-usecase-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--c-neutral-50);
  margin-bottom: 6px;
}
.pub-usecase-col-text {
  font-size: 13px;
  color: var(--c-neutral-70);
  line-height: 1.6;
}
.pub-usecase-result-text {
  font-size: 13px;
  color: var(--c-green-60);
  font-weight: 500;
  line-height: 1.6;
}
/* Benefits grid */
.pub-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.pub-benefit-card {
  padding: 20px;
  background: var(--c-white);
  border-radius: var(--r-12);
  border: 1px solid var(--c-neutral-08);
  box-shadow: var(--shadow-card);
}
.pub-benefit-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-secondary);
  margin: 0 0 8px;
}
.pub-benefit-desc {
  font-size: 13px;
  color: var(--c-neutral-70);
  line-height: 1.65;
  margin: 0;
}
/* Compliance frameworks */
.pub-framework-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}
.pub-framework-item {
  padding: 16px 20px;
  background: var(--c-white);
  border-radius: var(--r-12);
  border-left: 4px solid var(--c-primary);
  box-shadow: var(--shadow-card);
}
.pub-framework-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-secondary);
  margin: 0 0 6px;
}
.pub-framework-desc {
  font-size: 13px;
  color: var(--c-neutral-70);
  line-height: 1.6;
  margin: 0;
}
/* FAQ */
.pub-faq {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pub-faq details {
  background: var(--c-white);
  border-radius: var(--r-12);
  border: 1px solid var(--c-neutral-08);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.pub-faq summary {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-secondary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.pub-faq summary::-webkit-details-marker { display: none; }
.pub-faq summary::after {
  content: '+';
  font-size: 20px;
  line-height: 1;
  color: var(--c-primary);
  flex-shrink: 0;
  margin-top: -1px;
}
.pub-faq details[open] summary::after { content: '−'; }
.pub-faq-answer {
  padding: 0 20px 16px;
  font-size: 13px;
  color: var(--c-neutral-70);
  line-height: 1.7;
}
/* Operational journey (dark section) */
.pub-journey-section {
  background: var(--c-secondary);
  padding: 64px 0px;
  width: 100%;
}
.pub-journey-inner {
  margin: 0 auto ;
  max-width: 1120px;
  margin-inline: auto;
}
.pub-journey-section .pub-section-label { color: var(--c-primary-t30); }
.pub-journey-section .pub-section-title { color: var(--c-white); }
.pub-journey-section .pub-section-intro { color: rgba(255,255,255,0.55); max-width: 580px; }
.pub-journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 40px;
}
.pub-journey-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 56px;
  right: 56px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  pointer-events: none;
}
.pub-journey-step {
  padding: 0 20px 0 0;
  position: relative;
}
.pub-journey-step:last-child { padding-right: 0; }
.pub-journey-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.pub-journey-step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-white);
  margin: 0 0 8px;
}
.pub-journey-step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0 0 12px;
}
.pub-journey-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}
.pub-journey-tag.ok   { background: rgba(0,186,154,0.15); color: var(--c-green); }
.pub-journey-tag.warn { background: rgba(222,160,0,0.15);  color: var(--c-yellow); }
.pub-journey-note {
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-8);
  border-left: 3px solid var(--c-primary);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
/* Responses / challenge→answer rows */
.pub-response-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.pub-response-card {
  background: var(--c-white);
  border-radius: var(--r-12);
  border: 1px solid var(--c-neutral-08);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.pub-response-body {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.pub-response-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--c-neutral-50);
  margin-bottom: 6px;
}
.pub-response-col-text {
  font-size: 13px;
  color: var(--c-neutral-70);
  line-height: 1.6;
}
.pub-response-result-text {
  font-size: 13px;
  color: var(--c-green-60);
  font-weight: 500;
  line-height: 1.6;
}
/* Case study inline card */
.pub-case-card {
  background: var(--c-secondary);
  border-radius: var(--r-12);
  padding: 20px;
  color: var(--c-white);
  margin-bottom: 20px;
}
.pub-case-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-neutral-40);
  margin-bottom: 10px;
}
.pub-case-subtitle {
  font-size: 12px;
  color: var(--c-neutral-40);
  margin: 4px 0 12px;
}
.pub-case-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
  margin: 0 0 12px;
}
.pub-case-row {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.pub-case-row strong {
  color: var(--c-white);
}
/* Responsive for pub components */
@media (max-width: 900px) {
  .pub-challenges-grid,
  .pub-benefits-grid {
    grid-template-columns: 1fr;
  }
  .pub-usecase-body,
  .pub-response-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pub-section { padding: 40px var(--px); }
  .pub-challenges-section { padding: 40px var(--px); }
  .pub-section-title { font-size: 22px; }
  .pub-journey-section { padding: 40px var(--px); }
  .pub-journey-steps { grid-template-columns: 1fr; gap: 24px; }
  .pub-journey-steps::before { display: none; }
  .pub-journey-step { padding: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root {
    --px: 40px;
  }
  .hero-home-image {
    width: 380px;
    height: 500px;
  }
  .hero-home-title {
    font-size: 32px;
    line-height: 48px;
  }
  .dashboard-screenshot {
    flex: 0 0 55%;
  }
  .hero-fb-image {
    display: none;
  }
  .uc-hero-text {
    width: auto;
    flex: 1;
  }
}

@media (max-width: 900px) {
  :root {
    --px: 24px;
  }
  .header-inner {
    height: 64px;
  }
  .header-logo img {
    width: 130px;
    height: auto;
  }
  .header-nav {
    display: none;
    
  }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-white);
    padding: 16px var(--px) 32px;
    gap: 4px;
    overflow-y: auto;
    z-index: 99;
    border-top: 1px solid var(--c-neutral-08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  .header-nav.open .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 16px;
    display: block;
  }
  .menu-btn {
    display: flex;
  }
  .header-nav.open .nav-link,
  .header-nav.open .nav-dropdown-toggle {
    font-size: 16px;
    padding: 12px var(--sp-4);
  }
  /* lang-btn sits in header bar on mobile, left of hamburger */
  .lang-btn {
    margin-left: auto;
    margin-right: 25px;
  }
  .hero-home {
    flex-direction: column;
    padding-top: 64px;
    gap: 32px;
  }
  .hero-home-image {
    display: none;
  }
  .dashboard-inner {
    flex-direction: column;
  }
  .dashboard-screenshot {
    flex: none;
    width: 90%;
    height: auto;
  }
  .dashboard-stats{
    flex-direction: row;
  }
  .hero-fb-inner {
    flex-direction: column;
  }
  .uc-hero-inner {
    flex-direction: column;
    gap: 24px;
  }
  .section-head {
  padding: 30px!important;
  
  }
  .uc-hero-text {
    width: 100%;
  }
  .uc-body-wrap {
    grid-template-columns: 1fr;
  }
  .uc-sidebar {
    position: static;
  }
  .uc-results-grid {
    grid-template-columns: 1fr;
  }
  .uc-contact-inner {
    flex-direction: column;
  }
  .uc-contact-form-wrap {
    flex: none;
    width: 100%;
  }
  .uc-contact-image {
    display: none;
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .demo-inner {
    flex-direction: column;
  }
  .demo-image {
    display: none;
  }
  .demo-form-wrap {
    flex: none;
    width: 100%;
    padding-top: 0;
  }
  .contact-talk-inner {
    flex-direction: column;
  }
  .talk-left {
    flex: none;
    width: 100%;
  }
  .talk-right {
    display: none;
  }
  .compliance-certs {
    grid-template-columns: 1fr 1fr;
  }
  
  .compliance-features {
    grid-template-columns: 1fr;
  }
  
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .integration-grid {
    grid-template-columns: 1fr;
  }
  .fb-features {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .metric-item {
    padding: 16px;
    border-right: none;
    border-bottom: 1px solid var(--c-neutral-08);
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-right {
    align-items: flex-start;
    width: 100%;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .footer-bottom {
    justify-content: flex-start;
  }
  .modules-intro {
    grid-template-columns: 1fr;
  }
  .modules-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-fb-stats {
    grid-template-columns: 1fr 1fr;
  }
  .standards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fb-route-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fb-stats-inner {
    flex-wrap: wrap;
    gap: 24px;
  }
  .fb-stat-item {
    flex: 1 1 45%;
  }
  .fb-audit-grid {
    grid-template-columns: 1fr;
  }
  .fb-std-grid {
    grid-template-columns: 1fr;
  }
  .fb-std-card.security {
    padding: 24px 44px;
  }
  .fb-decision-top {
    flex-direction: column;
  }
  .fb-decision-image {
    width: 100%;
  }
  .fb-creation-wrap {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  :root {
    --px: 16px;
  }
  .hero-home-title {
    font-size: 26px;
    line-height: 38px;
  }
  .section-title {
    font-size: 28px;
    line-height: 40px;
  }
  .uc-hero-title {
    font-size: 26px;
    line-height: 38px;
  }
  .uc-stats {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .compliance-certs {
    grid-template-columns: 1fr;
  }
  
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .hero-fb-stats {
    grid-template-columns: 1fr;
  }
  .standards-grid {
    grid-template-columns: 1fr;
  }
  .fb-route-grid {
    grid-template-columns: 1fr;
  }
  .fb-stat-item {
    flex: 1 1 100%;
  }
  .fb-stat-big {
    font-size: 32px;
  }
  .talk-title {
    font-size: 28px;
    line-height: 38px;
  }
  .demo-form-title {
    font-size: 28px;
    line-height: 38px;
  }
  .dashboard-stats{
    flex-direction: column;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}
