@import url("tokens.css");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--tx);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling for better animation experience */
html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--n9);
  color: #fff;
  border-radius: var(--r1);
  font-weight: 600;
  transition: top var(--dur);
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
  text-decoration: none;
}

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

/* Announcement bar (Netlify-aligned) */
.ann {
  background: var(--n9);
  color: #fff;
  font-size: 0.8125rem;
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 1001;
}

.ann-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  padding-right: 2rem;
}

.ann p {
  margin: 0;
  font-weight: 500;
}

.ann-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--g4);
  border-radius: 50%;
  margin-right: 6px;
  animation: ann-pulse 2s infinite;
}

@keyframes ann-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.ann a {
  color: var(--t3);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ann a:hover {
  color: #fff;
}

.ann-x {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 4px;
  line-height: 0;
}

.ann-x:hover {
  color: #fff;
}

.ann.hidden {
  display: none;
}

/* Custom AOS animations - subtle and sophisticated */
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--bdr);
  transition: box-shadow var(--dur);
}

.header.scrolled {
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  min-height: var(--hdr);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  height: 42px;
  width: auto;
  display: block;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--acc);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-contact-link {
  color: var(--n4);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8125rem;
}

.header-contact-link:hover {
  color: var(--acc);
}

.header-login-link {
  color: var(--n4);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8125rem;
}

.header-login-link:hover {
  color: var(--acc);
}

/* WhatsApp click-to-chat — brand icon only (no visible “WhatsApp” word) */
.whatsapp-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #25d366;
}

.whatsapp-icon--footer {
  width: 20px;
  height: 20px;
}

.whatsapp-chat-link {
  text-decoration: none;
  color: inherit;
}

.whatsapp-chat-link:hover .whatsapp-icon {
  color: #1da851;
}

.whatsapp-chat-link--inline {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin: 0 0.1em;
  padding: 0.2rem;
  border-radius: 8px;
  line-height: 0;
}

.whatsapp-chat-link--inline:hover {
  background: rgba(37, 211, 102, 0.1);
}

.whatsapp-chat-link--footer {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.footer .whatsapp-chat-link--footer:hover {
  color: var(--t3);
}

.whatsapp-chat-link--footer .whatsapp-chat-number {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.35rem;
  border-radius: 10px;
  border: 1px solid rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.06);
  text-decoration: none;
  line-height: 0;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-whatsapp:hover {
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.15);
}

.nav-links a {
  text-decoration: none;
  color: var(--n5);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-item {
  position: relative;
}

/* top: 100% only — any pixel gap lets the pointer leave .nav-item and closes the menu */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid rgba(42, 157, 143, 0.15);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 0.75rem 0.5rem 0.5rem;
  display: none;
  z-index: 1005;
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  color: var(--n6);
  font-size: 0.92rem;
}

.nav-dropdown a:hover {
  background: rgba(42, 157, 143, 0.08);
  color: var(--acc);
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  display: block;
}

.nav-links a:hover {
  color: var(--acc);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--acc);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: var(--r2);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--dur);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  line-height: 1.4;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--acc);
  color: #fff;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--acc-h);
  box-shadow: 0 4px 20px rgba(42, 157, 143, 0.3);
  transform: translateY(-1px);
  color: #fff;
}

.btn-large {
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
}

/* Hero — base (inner pages); dark cinematic on .hero--home only */
.hero {
  position: relative;
  padding: 3.5rem 0 2.5rem;
  margin-top: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--t0) 0%, var(--bg) 55%);
  color: var(--tx);
  border-bottom: 1px solid var(--n05);
}

.hero.hero--home {
  padding: 5rem 0 4.5rem;
  min-height: 58vh;
  background: var(--n9);
  color: #fff;
  border-bottom: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-aurora {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(42, 157, 143, 0.22), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 20%, rgba(139, 195, 74, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 50% at 60% 90%, rgba(42, 157, 143, 0.14), transparent 55%);
  animation: hero-aurora-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-aurora-drift {
  from {
    transform: translate(0, 0) rotate(0deg);
  }
  to {
    transform: translate(2%, -2%) rotate(3deg);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000, transparent);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--t3);
  background: rgba(42, 157, 143, 0.08);
  border: 1px solid rgba(42, 157, 143, 0.15);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin: 0;
  max-width: 100%;
  flex-wrap: wrap;
  row-gap: 0.25rem;
  box-sizing: border-box;
  line-height: 1.35;
}

.hero-eyebrow-lead {
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--t8);
}

.hero-eyebrow-date {
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--t6);
}

.hero-eyebrow-sep {
  display: inline-block;
  margin: 0 0.4em;
  font-weight: 400;
  color: var(--t4);
  opacity: 0.65;
  user-select: none;
}

.hero-eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.hero-eyebrow-line--mobile {
  display: none;
}

/* Homepage hero — soft “kicker” pill */
.hero.hero--home .hero-eyebrow {
  gap: 0.6rem;
  padding: 0.5rem 1.2rem 0.5rem 0.95rem;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  color: rgba(230, 252, 247, 0.98);
  background: linear-gradient(
    165deg,
    rgba(55, 175, 160, 0.28) 0%,
    rgba(30, 111, 101, 0.18) 42%,
    rgba(22, 80, 74, 0.14) 100%
  );
  border: 1px solid rgba(168, 221, 214, 0.45);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 6px 24px rgba(42, 157, 143, 0.22),
    0 2px 8px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero.hero--home .hero-eyebrow-lead {
  color: #f6fffc;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  text-shadow: 0 0 20px rgba(91, 175, 166, 0.45);
}

.hero.hero--home .hero-eyebrow-date {
  color: rgba(200, 244, 232, 0.95);
  font-weight: 500;
  font-size: 0.92em;
  letter-spacing: 0.025em;
  font-variant-numeric: tabular-nums;
}

.hero.hero--home .hero-eyebrow-sep {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 0.4em;
  font-weight: 300;
  transform: translateY(-0.05em);
}

.hero-eyebrow-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 0.2rem;
  color: var(--t4);
  opacity: 0.85;
}

.hero-eyebrow-arrow-icon {
  display: block;
  vertical-align: middle;
}

.hero.hero--home .hero-eyebrow-arrow {
  color: rgba(168, 221, 214, 0.95);
  margin: 0 0.35rem;
  opacity: 1;
}

@keyframes hero-eyebrow-arrow-nudge {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.65;
  }
  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero.hero--home .hero-eyebrow-arrow-icon {
    animation: hero-eyebrow-arrow-nudge 2.4s ease-in-out infinite;
  }
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  background: radial-gradient(circle at 30% 30%, #d8f8b0, var(--g4) 55%, #5a9a3a);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow:
    0 0 0 2px rgba(139, 195, 74, 0.35),
    0 0 16px rgba(139, 195, 74, 0.5);
  animation: ann-pulse 2s infinite;
}

.hero.hero--home .hero-eyebrow-dot {
  width: 9px;
  height: 9px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--n9);
  margin: 0;
  letter-spacing: -0.01em;
}

.hero.hero--home .hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  color: #fff;
}

.hero-title em {
  font-style: italic;
  color: var(--t6);
}

.hero.hero--home .hero-title em {
  background: linear-gradient(135deg, var(--t3), var(--g4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--tx2);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.hero.hero--home .hero-subtitle {
  color: var(--n2);
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta-secondary {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  width: 100%;
}

.hero-cta-quiet {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-cta-quiet:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

.hero.hero--home .hero-main--split .hero-cta-secondary {
  text-align: center;
}

.hero-trust {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--n5);
  padding: 0.35rem 0.75rem;
  background: var(--t0);
  border: 1px solid var(--n05);
  border-radius: 100px;
}

.hero.hero--home .trust-pill {
  color: var(--n2);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-pill::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--g4);
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-secondary {
  background: transparent;
  color: var(--acc);
  border: 1.5px solid var(--n05);
}

.btn-secondary:hover {
  border-color: var(--t3);
  background: var(--t0);
  color: var(--t7);
  transform: translateY(-1px);
}

.hero.hero--home .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero.hero--home .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

#main,
#requirements,
#industries,
#platform,
#trust-urgency,
#how-it-works,
#faq,
#contact {
  scroll-margin-top: 5.5rem;
}

/* Homepage — hero split: 40% copy / 60% carousel; trust row full width below */
.hero.hero--home .hero-content--split {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  grid-template-rows: auto auto;
  column-gap: clamp(1.75rem, 4vw, 3rem);
  row-gap: 1.75rem;
  align-items: center;
  max-width: min(1240px, 100%);
  margin: 0 auto;
  width: 100%;
}

.hero.hero--home .hero-content--split > .hero-main--split {
  grid-column: 1;
  grid-row: 1;
}

.hero.hero--home .hero-content--split > .hero-visual {
  grid-column: 2;
  grid-row: 1;
}

.hero.hero--home .hero-content--split > .hero-trust--banner {
  grid-column: 1 / -1;
  grid-row: 2;
}

.hero.hero--home .hero-main--split {
  text-align: left;
  align-items: flex-start;
  margin: 0;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  padding-right: clamp(0px, 1vw, 0.5rem);
}

/* Slightly calmer type scale in the narrower (40%) column */
.hero.hero--home .hero-main--split .hero-title {
  font-size: clamp(2rem, 2.75vw + 1rem, 3.35rem);
  line-height: 1.06;
}

.hero.hero--home .hero-main--split .hero-subtitle {
  text-align: left;
  margin: 0;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.65;
}

.hero.hero--home .hero-main--split .hero-cta--solo {
  justify-content: center;
  width: 100%;
  margin-top: 0.35rem;
}

.hero.hero--home .hero-cta--solo .btn-hero-primary {
  padding: 1.05rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  min-width: min(300px, 100%);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(42, 157, 143, 0.35);
}

.hero.hero--home .hero-cta--solo .btn-hero-primary:hover {
  box-shadow: 0 14px 42px rgba(42, 157, 143, 0.42);
}

.hero-trust--banner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  align-items: stretch;
  margin-top: 0.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero.hero--home .hero-trust--banner .trust-pill {
  justify-content: center;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.74);
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.hero.hero--home .hero-trust--banner .trust-pill::before {
  opacity: 0.88;
  width: 4px;
  height: 4px;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
}

.hero-product-shot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Homepage hero — landscape carousel (fills 60% column), bottom caption bar */
.hero-carousel {
  width: 100%;
  max-width: none;
  margin-left: 0;
}

.hero-carousel-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: min(420px, 46vh);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 32px 96px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  background: radial-gradient(ellipse 120% 80% at 50% 20%, #1a242e 0%, #0a0d11 65%);
}

.hero-carousel-track {
  display: flex;
  flex-direction: row;
  width: 400%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-carousel-slide {
  position: relative;
  flex: 0 0 25%;
  width: 25%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.hero-carousel-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #e8ecf0;
}

/* Default: cover + explicit top anchor (avoids keyword-order quirks in some engines) */
.hero-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  display: block;
}

/*
 * Ultra-wide screenshots (wider than ~16:10): cover crops heavily; contain shows full UI like the source PNG.
 * Letterboxing uses .hero-carousel-media background.
 */
.hero-carousel-img--contain {
  object-fit: contain;
  object-position: 50% 0;
}

.hero-carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  z-index: 3;
  margin: 0;
  padding: 0.85rem 1.25rem 0.95rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(6, 9, 15, 0) 0%,
    rgba(6, 9, 15, 0.62) 32%,
    rgba(6, 9, 15, 0.92) 100%
  );
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.hero-carousel-label {
  display: inline-block;
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8fff7;
  margin-bottom: 0.35rem;
  padding: 0.28em 0.75em 0.3em;
  background: rgba(6, 9, 15, 0.82);
  border: 1px solid rgba(127, 212, 190, 0.45);
  border-radius: 4px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
  text-shadow: none;
}

.hero-carousel-line {
  display: block;
  font-family: var(--serif);
  font-size: clamp(0.98rem, 2.1vw, 1.2rem);
  line-height: 1.28;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  letter-spacing: -0.015em;
  margin: 0 auto;
  max-width: 36ch;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.95),
    0 0 1px rgba(0, 0, 0, 0.8);
}

.hero-carousel-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.85rem;
  opacity: 0.92;
}

.hero-carousel-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-carousel-nav:hover {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-carousel-nav:focus-visible {
  outline: 2px solid var(--t3);
  outline-offset: 2px;
}

.hero-carousel-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.hero-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.hero-carousel-dot.is-active {
  background: var(--t3);
  transform: scale(1.25);
}

.hero-carousel-dot:focus-visible {
  outline: 2px solid var(--t3);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-track {
    transition: none;
  }
}

.section-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t6);
  margin: 0 0 0.65rem;
}

.requirements .section-header .section-eyebrow {
  color: var(--acc);
}

.obligation-ref {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--n05);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--tx2);
}

/* Cool gray band — clearly different from `.requirements` (off-white) without hurting legibility */
.industries-preview {
  padding: 4.5rem 0;
  background: var(--n0);
  border-top: 1px solid var(--n05);
  border-bottom: 1px solid var(--n05);
}

.industry-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
}

.industry-tile {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 0 1 260px;
  min-width: min(220px, 100%);
  max-width: 320px;
  padding: 1.25rem 1.35rem;
  background: var(--bg);
  border: 1px solid var(--n05);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.industry-tile:hover {
  border-color: rgba(42, 157, 143, 0.35);
  box-shadow: 0 12px 40px rgba(6, 9, 15, 0.06);
  transform: translateY(-2px);
}

.industry-tile-label {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--n9);
}

.industry-tile-desc {
  font-size: 0.8125rem;
  color: var(--tx2);
  line-height: 1.45;
}

.platform-teaser {
  padding: 4.5rem 0;
  background: var(--n9);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.platform-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 15% 20%, rgba(42, 157, 143, 0.18), transparent 55%),
    radial-gradient(ellipse 45% 35% at 90% 80%, rgba(139, 195, 74, 0.1), transparent 50%);
  pointer-events: none;
}

.platform-teaser-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.section-eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.55);
}

.platform-teaser-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 400;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.platform-teaser-title strong {
  font-weight: 600;
  color: var(--g4);
}

.platform-teaser-lead {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--n2);
  max-width: 36rem;
}

.platform-teaser-bullets {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--n2);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.platform-teaser-bullets li {
  margin-bottom: 0.4rem;
}

.platform-teaser-outro {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--n2);
  max-width: 36rem;
}

.platform-teaser-outro a {
  color: var(--t3);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 201, 191, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.platform-teaser-outro a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.platform-teaser-visual {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.platform-teaser-shot {
  width: 100%;
  height: auto;
  display: block;
}

/* Platform teaser — story carousel (fade + metro line; not the hero sliding track) */
.platform-teaser-visual--story {
  padding: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}

.platform-story {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(42, 157, 143, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(139, 195, 74, 0.08), transparent 50%),
    linear-gradient(168deg, #141a22 0%, #0a0d12 100%);
}

.platform-story-chrome {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.platform-story-chrome-dots {
  display: flex;
  gap: 5px;
}

.platform-story-chrome-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.platform-story-chrome-dots span:nth-child(1) {
  background: rgba(239, 68, 68, 0.75);
}

.platform-story-chrome-dots span:nth-child(2) {
  background: rgba(234, 179, 8, 0.8);
}

.platform-story-chrome-dots span:nth-child(3) {
  background: rgba(74, 222, 128, 0.75);
}

.platform-story-chrome-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.platform-story-viewport {
  position: relative;
  min-height: min(360px, 52vw);
  max-height: min(420px, 58vw);
  cursor: pointer;
  outline: none;
}

.platform-story-viewport:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(124, 201, 191, 0.65);
}

.platform-story-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.75rem 0.85rem;
}

.platform-story-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.platform-story-device {
  width: 100%;
  height: 100%;
  max-height: min(400px, 56vw);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: radial-gradient(ellipse at 50% 20%, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.platform-story-device img {
  width: 100%;
  height: 100%;
  max-height: min(400px, 56vw);
  object-fit: contain;
  object-position: center top;
  display: block;
}

.platform-story-beat {
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
  padding: 1.35rem 1.4rem 1.45rem;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(42, 157, 143, 0.14) 0%, transparent 42%),
    linear-gradient(225deg, rgba(139, 195, 74, 0.1) 0%, transparent 45%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.platform-story-slide--beat--risk .platform-story-beat {
  border-color: rgba(239, 68, 68, 0.28);
  background:
    linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
    linear-gradient(225deg, rgba(42, 157, 143, 0.08) 0%, transparent 50%),
    rgba(255, 255, 255, 0.04);
}

.platform-story-beat-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 0.75rem;
}

.platform-story-beat-line {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.8vw, 1.45rem);
  font-weight: 500;
  line-height: 1.28;
  color: #fff;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.platform-story-beat-note {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.platform-story-beat-note strong {
  color: #fecaca;
  font-weight: 600;
}

.platform-story-controls {
  padding: 0.65rem 0.75rem 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.platform-story-metro {
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  gap: 3px;
  height: 38px;
  margin-bottom: 0.65rem;
  padding: 0 0.15rem;
}

.platform-story-stop {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  padding: 0 1px 2px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.platform-story-stop:hover {
  background: rgba(255, 255, 255, 0.04);
}

.platform-story-stop:focus-visible {
  outline: 2px solid var(--t3);
  outline-offset: 2px;
}

.platform-story-stop::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 22px;
  height: 11px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  transition:
    height 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.platform-story-stop--beat::after {
  height: 9px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2) 0,
    rgba(255, 255, 255, 0.2) 2px,
    transparent 2px,
    transparent 4px
  );
  border-radius: 3px;
}

.platform-story-stop.is-active::after {
  height: 30px;
  background: linear-gradient(180deg, var(--g4) 0%, var(--acc) 100%);
  box-shadow: 0 0 16px rgba(42, 157, 143, 0.35);
}

.platform-story-stop--beat.is-active::after {
  background: linear-gradient(180deg, rgba(196, 230, 104, 0.95) 0%, var(--acc) 100%);
}

.platform-story-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.platform-story-arrow {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.platform-story-arrow:hover {
  background: rgba(42, 157, 143, 0.18);
  border-color: rgba(42, 157, 143, 0.35);
  color: #fff;
}

.platform-story-arrow:focus-visible {
  outline: 2px solid var(--t3);
  outline-offset: 2px;
}

.platform-story-count {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  min-width: 2.5rem;
  text-align: center;
}

.platform-story-count-sep {
  margin: 0 0.15em;
  opacity: 0.6;
}

.platform-story-hint {
  margin: 0.55rem 0 0;
  text-align: center;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .platform-story-slide {
    transition-duration: 0.01ms;
  }

  .platform-story-stop::after {
    transition-duration: 0.01ms;
  }
}

/* Trust & urgency — stat grid */
.trust-urgency-strip {
  position: relative;
  padding: 3.25rem 0 3.5rem;
  overflow: hidden;
  background: var(--n9);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-urgency-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 20% 30%, rgba(42, 157, 143, 0.2), transparent 58%),
    radial-gradient(ellipse 45% 40% at 92% 75%, rgba(139, 195, 74, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(6, 9, 15, 0.2) 0%, var(--n9) 100%);
}

.trust-urgency-inner {
  position: relative;
  z-index: 1;
}

.trust-urgency-heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  text-align: center;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.trust-urgency-sub {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--n2);
}

.trust-urgency-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.trust-urgency-stat {
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.trust-urgency-stat:hover {
  border-color: rgba(42, 157, 143, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.trust-urgency-value {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: #fff;
}

.trust-urgency-value--compact {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.2;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .trust-urgency-value {
    background: linear-gradient(135deg, #fff 0%, var(--g4) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.trust-urgency-label {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--n2);
  margin: 0;
}

@media (max-width: 900px) {
  .trust-urgency-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .trust-urgency-grid {
    grid-template-columns: 1fr;
  }

  .trust-urgency-strip {
    padding: 2.5rem 0 2.75rem;
  }
}

.faq .section-header p a {
  color: var(--t7);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(35, 127, 116, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.faq .section-header p a:hover {
  color: var(--t8);
  border-bottom-color: var(--t6);
}

@media (max-width: 900px) {
  .hero.hero--home .hero-content--split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 1.35rem;
  }

  /* Copy block first, then carousel (read headline before product shot) */
  .hero.hero--home .hero-content--split > .hero-main--split {
    grid-column: 1;
    grid-row: 1;
  }

  .hero.hero--home .hero-content--split > .hero-visual {
    grid-column: 1;
    grid-row: 2;
  }

  .hero.hero--home .hero-content--split > .hero-trust--banner {
    grid-column: 1;
    grid-row: 3;
    margin-top: 0;
    padding-top: 1rem;
  }

  .hero.hero--home .hero-main--split {
    text-align: center;
    align-items: center;
    margin: 0 auto;
    max-width: 640px;
    padding-right: 0;
  }

  .hero.hero--home .hero-main--split .hero-subtitle {
    text-align: center;
  }

  /* One-line eyebrow: shorter copy + tighter pill (desktop line hidden from layout + a11y) */
  .hero.hero--home .hero-eyebrow {
    flex-wrap: nowrap;
    max-width: min(100%, 100vw - 2rem);
    margin-left: auto;
    margin-right: auto;
    padding: 0.32rem 0.7rem 0.32rem 0.6rem;
    font-size: 0.6875rem;
    letter-spacing: 0.02em;
    gap: 0.4rem;
  }

  .hero.hero--home .hero-eyebrow-line--desktop {
    display: none;
  }

  .hero.hero--home .hero-eyebrow-line--mobile {
    display: inline-flex;
    gap: 0.28rem;
    white-space: nowrap;
  }

  .hero.hero--home .hero-eyebrow-line--mobile .hero-eyebrow-lead {
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .hero.hero--home .hero-eyebrow-line--mobile .hero-eyebrow-date {
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(210, 248, 238, 0.98);
  }

  .hero.hero--home .hero-eyebrow-line--mobile .hero-eyebrow-arrow {
    margin: 0 0.06rem;
  }

  .hero.hero--home .hero-eyebrow-dot {
    width: 6px;
    height: 6px;
  }

  @media (max-width: 360px) {
    .hero.hero--home .hero-eyebrow {
      font-size: 0.625rem;
      padding: 0.28rem 0.55rem 0.28rem 0.5rem;
      gap: 0.32rem;
    }

    .hero.hero--home .hero-eyebrow-line--mobile {
      gap: 0.22rem;
    }

    .hero.hero--home .hero-eyebrow-dot {
      width: 5px;
      height: 5px;
    }
  }

  .hero.hero--home .hero-trust--banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 0.65rem;
  }

  .hero-visual {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }

  .hero-carousel {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .hero-carousel-viewport {
    max-height: min(340px, 52vw);
    aspect-ratio: 16 / 10;
  }

  .hero-carousel-line {
    font-size: clamp(0.9rem, 3.6vw, 1.1rem);
  }

  .hero-carousel-caption {
    padding: 0.55rem 1rem 0.65rem;
  }

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

  .platform-teaser-visual {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .platform-story-viewport {
    min-height: min(260px, 72vw);
    max-height: none;
  }

  .platform-story-device,
  .platform-story-device img {
    max-height: min(300px, 70vw);
  }

  .platform-story-metro {
    height: 32px;
    gap: 2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }

  .platform-story-stop {
    flex: 1 1 18px;
    min-width: 14px;
  }

  .platform-story-stop.is-active::after {
    height: 24px;
  }

  .platform-story-beat {
    padding: 1.1rem 1rem 1.2rem;
  }

  .platform-story-hint {
    font-size: 0.625rem;
    padding: 0 0.5rem;
    line-height: 1.35;
  }
}

/* Compliance Requirements — light band */
.requirements {
  padding: 5rem 0;
  background: var(--nw);
  border-top: 1px solid var(--n05);
  border-bottom: 1px solid var(--n05);
  position: relative;
}

.requirements::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--acc) 0%, var(--g4) 100%);
}

/* Non-compliance risk (DPDP penalties up to ₹250 crore) */
.compliance-risk-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  max-width: min(44rem, 100%);
  margin: 0 auto 1.75rem;
  padding: 0.9rem 1.15rem;
  border-radius: var(--r2);
  border: 1px solid rgba(239, 68, 68, 0.22);
  border-left: 4px solid var(--rd);
  background: linear-gradient(
    105deg,
    rgba(254, 243, 199, 0.55) 0%,
    rgba(255, 255, 255, 0.96) 52%,
    rgba(254, 226, 226, 0.38) 100%
  );
}

.compliance-risk-alert__icon {
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: var(--rd);
}

.compliance-risk-alert__icon svg {
  display: block;
}

.compliance-risk-alert__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--n8);
  text-align: left;
}

.compliance-risk-alert__text strong {
  color: var(--n9);
  font-weight: 600;
}

.compliance-risk-alert--requirements {
  max-width: min(52rem, 100%);
}

.requirements .section-header {
  margin-bottom: 1.35rem;
}

.requirements .compliance-risk-alert + .requirements-grid.requirements-matrix {
  margin-top: 0;
}

/* Requirements matrix — Inform / Consent / Empower / Report */
.requirements-grid.requirements-matrix {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--n05);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--sh2);
}

.requirement-card.requirement-card--matrix {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 0;
  min-height: 17rem;
  padding: 1.65rem 1.5rem 1.35rem;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--n05);
  transition: background 0.22s ease;
}

.requirement-card.requirement-card--matrix:last-child {
  border-bottom: none;
}

.requirement-card.requirement-card--matrix:hover {
  background: linear-gradient(180deg, rgba(237, 248, 246, 0.55) 0%, #fff 52%);
}

.requirement-card--matrix .requirement-card__index {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--n3);
  line-height: 1;
  margin: 0 0 0.85rem;
}

.requirement-card--matrix .requirement-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 0 0.95rem;
  color: var(--t6);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.requirement-card--matrix .requirement-card__svg {
  width: 48px;
  height: 48px;
  display: block;
}

.requirement-card--matrix .requirement-card__svg--report .req-report-alert {
  stroke: var(--rd);
}

.requirement-card--matrix .requirement-card__keyword {
  margin: 0 0 0.4rem;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t7);
  line-height: 1.2;
}

.requirement-card--matrix .requirement-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--n9);
  margin: 0 0 0.65rem;
}

.requirement-card--matrix .requirement-description {
  font-size: 0.9375rem;
  line-height: 1.58;
  color: var(--tx2);
  margin: 0;
}

.requirement-card--matrix .obligation-ref {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--n05);
  font-size: 0.8125rem;
  line-height: 1.52;
  color: var(--n4);
  width: 100%;
}

@media (min-width: 700px) {
  .requirements-grid.requirements-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .requirement-card.requirement-card--matrix {
    border-bottom: 1px solid var(--n05);
    border-right: 1px solid var(--n05);
  }

  .requirement-card.requirement-card--matrix:nth-child(2n) {
    border-right: none;
  }

  .requirement-card.requirement-card--matrix:nth-child(n + 3) {
    border-bottom: none;
  }
}

/* Reveal (replaces AOS) */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .how-grid--journey .how-card.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .how-card .how-num {
    animation: none;
  }

  .how-progress-fill {
    transform: scaleX(1);
    transition: none;
  }
}

/* Requirements Carousel - Traditional Carousel with Smooth Transitions */
.requirements-carousel-wrapper {
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.requirements-carousel {
  position: relative;
  width: 100%;
  height: 500px; /* Fixed height for carousel */
  overflow: hidden;
}

/* Requirement Slide - Properly sized cards */
.requirement-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(100px) scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.requirement-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 10;
}

.requirement-slide.prev {
  opacity: 0.3;
  transform: translateX(-50px) scale(0.95);
  z-index: 5;
}

.requirement-slide.next {
  opacity: 0.3;
  transform: translateX(50px) scale(0.95);
  z-index: 5;
}

/* Alternating background colors for striking contrast */
.requirement-slide[data-slide="1"] {
  background: linear-gradient(135deg, var(--acc) 0%, var(--t5) 50%, var(--acc) 100%);
  color: #ffffff;
}

.requirement-slide[data-slide="2"] {
  background: #ffffff;
  color: #1f2937;
}

.requirement-slide[data-slide="3"] {
  background: linear-gradient(135deg, var(--g4) 0%, var(--g3) 50%, var(--g4) 100%);
  color: #1f2937;
}

.requirement-slide[data-slide="4"] {
  background: #1f2937;
  color: #ffffff;
}

.requirement-slide[data-slide="5"] {
  background: linear-gradient(135deg, var(--acc) 0%, var(--g4) 50%, var(--acc) 100%);
  color: #ffffff;
}

.requirement-slide[data-slide="6"] {
  background: #ffffff;
  color: #1f2937;
}

/* Requirement Content */
.requirement-content {
  max-width: 1000px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Large Icon with enhanced effects */
.requirement-icon-large {
  font-size: 4.5rem;
  margin-bottom: 2rem;
  display: block;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
  will-change: transform;
}

/* Title - Reasonable size */
.requirement-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.requirement-slide[data-slide="1"] .requirement-title,
.requirement-slide[data-slide="4"] .requirement-title,
.requirement-slide[data-slide="5"] .requirement-title {
  color: #ffffff;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.requirement-slide[data-slide="2"] .requirement-title,
.requirement-slide[data-slide="3"] .requirement-title,
.requirement-slide[data-slide="6"] .requirement-title {
  color: var(--acc);
}

/* Description */
.requirement-description {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 400;
  opacity: 0.95;
}

.requirement-slide[data-slide="1"] .requirement-description,
.requirement-slide[data-slide="4"] .requirement-description,
.requirement-slide[data-slide="5"] .requirement-description {
  color: rgba(255, 255, 255, 0.98);
}

.requirement-slide[data-slide="2"] .requirement-description,
.requirement-slide[data-slide="3"] .requirement-description,
.requirement-slide[data-slide="6"] .requirement-description {
  color: #4b5563;
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}

/* Carousel Indicators - Apple-style dots */
.carousel-indicators {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.carousel-indicators .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(42, 157, 143, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.carousel-indicators .indicator.active {
  background: var(--acc);
  width: 30px;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(42, 157, 143, 0.4);
}

.carousel-indicators .indicator:hover {
  background: rgba(42, 157, 143, 0.6);
  transform: scale(1.2);
}

/* Carousel Arrows */
.carousel-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(42, 157, 143, 0.1);
  border: 2px solid rgba(42, 157, 143, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  color: var(--acc);
}

.carousel-arrow:hover {
  background: var(--acc);
  color: #ffffff;
  border-color: var(--acc);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
}

.carousel-arrow:active {
  transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
  .requirements {
    padding: 3rem 0;
  }

  .requirements-grid:not(.requirements-matrix) {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 1rem;
  }

  .requirements-grid.requirements-matrix {
    margin-top: 2rem;
  }

  .requirement-card:not(.requirement-card--matrix) {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .requirement-card--matrix {
    min-height: 0;
    padding: 1.35rem 1.2rem 1.15rem;
  }

  .requirement-card--matrix .requirement-title {
    font-size: 1.2rem;
  }

  .requirements-carousel-wrapper {
    padding: 0 1rem;
    margin-top: 2rem;
  }

  .requirements-carousel {
    height: 400px;
  }

  .requirement-slide {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .requirement-icon-large {
    font-size: 3rem;
    margin-bottom: 1.25rem;
  }

  .requirement-slide .requirement-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .requirement-slide .requirement-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .carousel-nav {
    margin-top: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  .carousel-indicators {
    gap: 0.5rem;
    order: 2;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .carousel-indicators .indicator {
    width: 8px;
    height: 8px;
  }

  .carousel-indicators .indicator.active {
    width: 24px;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
    padding-bottom: 0.75rem;
  }

  .section-header p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* Grid adjustments for expanded cards - removed, using transform overlay instead */

/* Kavach Platform Overview — dark band */
.kavach-platform {
  padding: 6rem 0;
  background: var(--n9);
  position: relative;
  overflow: hidden;
}

.kavach-platform::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--t6) 0%, var(--t3) 50%, var(--g4) 100%);
}

.kavach-platform .platform-title {
  color: #fff;
}

.kavach-platform .platform-title strong {
  color: var(--t3);
}

.kavach-platform .platform-subtitle {
  color: var(--n2);
}

.platform-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.platform-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--n9);
  margin-bottom: 1.5rem;
  line-height: 1.08;
}

.platform-title strong {
  color: var(--t6);
  font-weight: 600;
}

.platform-subtitle {
  font-size: 1.25rem;
  color: var(--tx2);
  line-height: 1.7;
}

.platform-showcase {
  max-width: 1400px;
  margin: 0 auto;
}

.platform-feature {
  margin-bottom: 8rem;
  opacity: 0;
  position: relative;
  padding: 4rem 3rem;
  border-radius: 24px;
  overflow: hidden;
  /* Opaque base required: tinted gradients below are layered on white so dark section bands never show through */
  background: #ffffff;
  border: 1px solid var(--n05);
  box-shadow: var(--sh3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kavach-platform .platform-feature {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.platform-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.platform-feature:last-child {
  margin-bottom: 0;
}

/* Individual feature background colors — gradient layered over solid white (not transparent) */
.platform-feature[data-feature="dashboard"] {
  background:
    linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(42, 157, 143, 0.04) 100%),
    #ffffff;
  border: 1px solid rgba(42, 157, 143, 0.18);
}

.platform-feature[data-feature="dashboard"]::before {
  background: radial-gradient(circle at 20% 50%, rgba(42, 157, 143, 0.1) 0%, transparent 70%);
}

.platform-feature[data-feature="consent"] {
  background:
    linear-gradient(135deg, rgba(139, 195, 74, 0.12) 0%, rgba(139, 195, 74, 0.05) 100%),
    #ffffff;
  border: 1px solid rgba(139, 195, 74, 0.25);
}

.platform-feature[data-feature="consent"]::before {
  background: radial-gradient(circle at 80% 50%, rgba(139, 195, 74, 0.15) 0%, transparent 70%);
}

.platform-feature[data-feature="portal"] {
  background:
    linear-gradient(135deg, rgba(42, 157, 143, 0.08) 0%, rgba(99, 102, 241, 0.06) 100%),
    #ffffff;
  border: 1px solid rgba(42, 157, 143, 0.2);
}

.platform-feature[data-feature="portal"]::before {
  background: radial-gradient(circle at 50% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
}

.platform-feature[data-feature="timeline"] {
  background:
    linear-gradient(135deg, rgba(139, 195, 74, 0.14) 0%, rgba(139, 195, 74, 0.06) 100%),
    #ffffff;
  border: 1px solid rgba(139, 195, 74, 0.28);
}

.platform-feature[data-feature="timeline"]::before {
  background: radial-gradient(circle at 30% 80%, rgba(139, 195, 74, 0.15) 0%, transparent 70%);
}

.platform-feature[data-feature="forms"] {
  background:
    linear-gradient(135deg, rgba(42, 157, 143, 0.09) 0%, rgba(59, 130, 246, 0.08) 100%),
    #ffffff;
  border: 1px solid rgba(42, 157, 143, 0.18);
}

.platform-feature[data-feature="forms"]::before {
  background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
}

.platform-feature[data-feature="rights"] {
  background:
    linear-gradient(135deg, rgba(139, 195, 74, 0.14) 0%, rgba(156, 204, 101, 0.08) 100%),
    #ffffff;
  border: 1px solid rgba(139, 195, 74, 0.22);
}

.platform-feature[data-feature="rights"]::before {
  background: radial-gradient(circle at 60% 70%, rgba(156, 204, 101, 0.15) 0%, transparent 70%);
}

.platform-feature[data-feature="audit"] {
  background:
    linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(30, 64, 175, 0.07) 100%),
    #ffffff;
  border: 1px solid rgba(42, 157, 143, 0.2);
}

.platform-feature[data-feature="audit"]::before {
  background: radial-gradient(circle at 40% 40%, rgba(30, 64, 175, 0.12) 0%, transparent 70%);
}

.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.feature-left .feature-content {
  direction: ltr;
}

.feature-right .feature-content {
  direction: rtl;
}

.feature-right .feature-content > * {
  direction: ltr;
}

.feature-text {
  padding: 2rem;
}

.feature-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--acc);
  background: rgba(42, 157, 143, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.feature-text h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--n9);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.feature-text p {
  font-size: 1.125rem;
  color: var(--n5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.feature-list li {
  font-size: 1rem;
  color: var(--n5);
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--g4);
  font-weight: 700;
  font-size: 1.25rem;
}

.feature-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.feature-image {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.platform-screenshot {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(30%) brightness(0.98);
  transition: filter 0.6s ease, transform 0.6s ease;
  transform: scale(1);
}

.platform-feature:hover .platform-screenshot {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.02);
}

.platform-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.kavach-platform .platform-feature:hover {
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.platform-feature:hover::before {
  opacity: 1;
}

.platform-feature:hover .feature-image-wrapper {
  transform: perspective(1000px) rotateY(-2deg);
  box-shadow: 0 30px 80px rgba(42, 157, 143, 0.25);
}

/* Alternating color accents */
.platform-feature[data-feature="dashboard"] .feature-label {
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(42, 157, 143, 0.05) 100%);
}

.platform-feature[data-feature="consent"] .feature-label {
  background: linear-gradient(135deg, rgba(139, 195, 74, 0.1) 0%, rgba(139, 195, 74, 0.05) 100%);
  color: var(--g6);
}

.platform-feature[data-feature="portal"] .feature-label {
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(42, 157, 143, 0.05) 100%);
}

.platform-feature[data-feature="timeline"] .feature-label {
  background: linear-gradient(135deg, rgba(139, 195, 74, 0.1) 0%, rgba(139, 195, 74, 0.05) 100%);
  color: var(--g6);
}

.platform-feature[data-feature="forms"] .feature-label {
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(42, 157, 143, 0.05) 100%);
}

.platform-feature[data-feature="rights"] .feature-label {
  background: linear-gradient(135deg, rgba(139, 195, 74, 0.1) 0%, rgba(139, 195, 74, 0.05) 100%);
  color: var(--g6);
}

.platform-feature[data-feature="audit"] .feature-label {
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(42, 157, 143, 0.05) 100%);
}

/* Responsive */
@media (max-width: 968px) {
  .platform-title {
    font-size: 2.5rem;
  }

  .platform-subtitle {
    font-size: 1.125rem;
  }

  .feature-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-right .feature-content {
    direction: ltr;
  }

  .feature-text h3 {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) {
  .kavach-platform {
    padding: 3rem 0;
  }

  .platform-header {
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }

  .platform-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .platform-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .platform-feature {
    margin-bottom: 3rem;
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .platform-feature::before {
    opacity: 0.6;
  }

  .feature-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    flex-direction: column;
  }

  .feature-left .feature-content,
  .feature-right .feature-content {
    direction: ltr;
  }

  .feature-text {
    padding: 0;
    order: 2;
  }

  .feature-image-wrapper {
    order: 1;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .feature-image {
    max-height: 300px;
    overflow: hidden;
  }

  .platform-screenshot {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    object-position: top;
  }

  .feature-label {
    font-size: 0.75rem;
    padding: 0.4rem 0.875rem;
    margin-bottom: 1rem;
  }

  .feature-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
    line-height: 1.3;
  }

  .feature-text p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .feature-list {
    margin-top: 1rem;
  }

  .feature-list li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    line-height: 1.5;
  }

  .feature-list li::before {
    font-size: 1.1rem;
  }

  .platform-screenshot {
    filter: grayscale(20%) brightness(1);
  }

  .platform-feature:hover .platform-screenshot {
    filter: grayscale(0%) brightness(1);
    transform: scale(1);
  }

  .platform-feature:hover .feature-image-wrapper {
    transform: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 480px) {
  .kavach-platform {
    padding: 2.5rem 0;
  }

  .platform-header {
    margin-bottom: 2rem;
    padding: 0 0.75rem;
  }

  .platform-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .platform-subtitle {
    font-size: 0.875rem;
  }

  .platform-feature {
    margin-bottom: 2.5rem;
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }

  .platform-feature::before {
    opacity: 0.5;
  }

  .feature-content {
    gap: 1.5rem;
  }

  .feature-image-wrapper {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    margin-bottom: 1.25rem;
  }

  .feature-image {
    max-height: 250px;
  }

  .platform-screenshot {
    max-height: 250px;
  }

  .feature-label {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    margin-bottom: 0.875rem;
  }

  .feature-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .feature-text p {
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .feature-list li {
    font-size: 0.85rem;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
  }

  .feature-list li::before {
    font-size: 1rem;
  }
}

/* How It Works — light band */
.how-it-works {
  padding: 6rem 0;
  background: var(--bg);
  border-top: 1px solid var(--n05);
  border-bottom: 1px solid var(--n05);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g4) 0%, var(--acc) 100%);
}

.how-it-works .section-header {
  margin-bottom: 1.75rem;
}

/* Wider lead copy so “Compliant in a few days” subhead reads in ~2 lines on desktop */
.how-it-works .section-header .how-section-lead {
  max-width: min(44rem, 100%);
  font-size: 1.0625rem;
  line-height: 1.4;
  text-wrap: balance;
}

.how-it-works .how-journey {
  margin-top: 0;
}

/* How it works — journey rail + staggered steps */
.how-journey {
  margin-top: 3rem;
  position: relative;
}

.how-progress {
  max-width: min(760px, 100%);
  margin: 0 auto 2.25rem;
  padding: 0 0.75rem;
}

.how-progress-track {
  height: 5px;
  border-radius: 100px;
  background: var(--n05);
  overflow: hidden;
  position: relative;
}

.how-progress-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--t6), var(--g4) 45%, var(--acc));
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-progress-fill.is-filled {
  transform: scaleX(1);
}

.how-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.how-card {
  position: relative;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(140deg, rgba(42, 157, 143, 0.2), rgba(139, 195, 74, 0.12)) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 1.55rem 1.45rem 1.4rem;
  box-shadow: 0 4px 24px rgba(6, 9, 15, 0.04);
  transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 16px 48px rgba(42, 157, 143, 0.1),
    0 8px 24px rgba(6, 9, 15, 0.06);
}

.how-num {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--t1) 0%, var(--t0) 100%);
  border: 1px solid rgba(42, 157, 143, 0.28);
  color: var(--t8);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.how-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--n9);
}

.how-card p {
  margin: 0;
  color: var(--tx2);
  font-size: 0.9375rem;
  line-height: 1.58;
}

/* Staggered entrance (pairs with .reveal / initReveal) */
.how-grid--journey .how-card.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
}

.how-grid--journey .how-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-grid--journey .how-card.reveal.is-visible:nth-child(1) {
  transition-delay: 0.06s;
}

.how-grid--journey .how-card.reveal.is-visible:nth-child(2) {
  transition-delay: 0.2s;
}

.how-grid--journey .how-card.reveal.is-visible:nth-child(3) {
  transition-delay: 0.34s;
}

@media (prefers-reduced-motion: no-preference) {
  .how-card.is-visible .how-num {
    animation: how-num-pulse 3.2s ease-in-out 0.5s infinite;
  }
}

@keyframes how-num-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.28);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(42, 157, 143, 0);
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 3.5rem 0;
  }

  .how-it-works .section-header .how-section-lead {
    font-size: 1rem;
    line-height: 1.48;
    max-width: 100%;
    padding: 0 0.35rem;
  }

  .how-journey {
    margin-top: 2rem;
  }

  .how-it-works .how-journey {
    margin-top: 0;
  }

  .how-progress {
    margin-bottom: 1.5rem;
  }

  .how-grid,
  .how-grid--journey {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .how-card:hover {
    transform: none;
  }
}

.adoption-process {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.process-flow {
  position: relative;
  margin-top: 4rem;
}

.process-step {
  display: flex;
  gap: 3rem;
  margin-bottom: 5rem;
  opacity: 0;
  align-items: flex-start;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
  text-align: right;
}

.step-visual {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
}

.step-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acc) 0%, var(--t5) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(42, 157, 143, 0.3);
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:nth-child(even) .step-circle {
  background: linear-gradient(135deg, var(--g4) 0%, var(--g3) 100%);
  box-shadow: 0 10px 30px rgba(139, 195, 74, 0.3);
}

.process-step:hover .step-circle {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(42, 157, 143, 0.4);
}

.process-step:nth-child(even):hover .step-circle {
  box-shadow: 0 15px 40px rgba(139, 195, 74, 0.4);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.step-icon {
  font-size: 2rem;
  opacity: 0.9;
}

.step-connector {
  width: 4px;
  height: 5rem;
  background: linear-gradient(180deg, var(--acc) 0%, rgba(42, 157, 143, 0.3) 100%);
  margin-top: 1rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.process-step:nth-child(even) .step-connector {
  background: linear-gradient(180deg, var(--g4) 0%, rgba(139, 195, 74, 0.3) 100%);
}

.process-step:last-child .step-connector {
  display: none;
}

.step-connector::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(180deg, var(--acc) 0%, var(--g4) 100%);
  border-radius: 2px;
  transition: height 1s ease;
}

.process-step:nth-child(even) .step-connector::after {
  background: linear-gradient(180deg, var(--g4) 0%, var(--acc) 100%);
}

.step-content {
  flex: 1;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .step-content {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--acc);
  background: rgba(42, 157, 143, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.process-step:nth-child(even) .step-label {
  color: var(--g6);
  background: rgba(139, 195, 74, 0.15);
}

.step-content h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.step-content p {
  font-size: 1.0625rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.step-features li {
  font-size: 0.9375rem;
  color: #4b5563;
  padding: 0.5rem 1rem;
  background: rgba(42, 157, 143, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--acc);
}

.process-step:nth-child(even) .step-features li {
  background: rgba(139, 195, 74, 0.08);
  border-left-color: var(--g4);
}

.steps-cta {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
}

.section-header strong {
  color: var(--t6);
  font-weight: 600;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--n9);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--acc) 0%, var(--g4) 100%);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--tx2);
  max-width: 600px;
  margin: 0 auto;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background: #ffffff;
  border-top: 2px solid rgba(42, 157, 143, 0.1);
  position: relative;
}

.benefits::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--acc) 0%, var(--g4) 100%);
}

/* Capability Teaser Sections */
.capability-teaser {
  margin-bottom: 4rem;
  padding: 3rem 0;
}

.capability-teaser:last-child {
  margin-bottom: 0;
}

.teaser-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.capability-teaser-reverse .teaser-content {
  direction: rtl;
}

.capability-teaser-reverse .teaser-content > * {
  direction: ltr;
}

.teaser-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--acc);
  margin-bottom: 1rem;
}

.teaser-text p {
  font-size: 1.125rem;
  color: var(--tx2);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.teaser-features {
  list-style: none;
  margin-bottom: 2rem;
}

.teaser-features li {
  font-size: 1rem;
  color: var(--tx);
  margin-bottom: 0.75rem;
  padding-left: 0;
}

.teaser-features li:before {
  content: "";
  margin-right: 0.5rem;
}

.teaser-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.teaser-image-placeholder {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background: linear-gradient(135deg, var(--acc) 0%, var(--g4) 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 8px 24px rgba(42, 157, 143, 0.2);
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.teaser-image-placeholder p {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.capability-section {
  margin-bottom: 4rem;
}

.capability-section:last-child {
  margin-bottom: 0;
}

.capability-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--acc);
  margin-bottom: 0.5rem;
  text-align: center;
}

.capability-section-subtitle {
  font-size: 1.125rem;
  color: var(--tx2);
  text-align: center;
  margin-bottom: 2.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Flippable Benefit Cards */
.benefit-card-flip {
  perspective: 1000px;
  height: 280px;
}

.benefit-card-flip .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.benefit-card-flip.flipped .card-inner {
  transform: rotateY(180deg);
}

.benefit-card-flip .card-front,
.benefit-card-flip .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #f9fafb;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.benefit-card-flip .card-back {
  transform: rotateY(180deg);
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  overflow-y: auto;
  background: white;
}

.benefit-card-flip .card-front:hover {
  border-color: var(--acc);
  box-shadow: 0 4px 12px rgba(42, 157, 143, 0.15);
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.benefit-icon--whatsapp {
  font-size: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
}

.benefit-icon--whatsapp .whatsapp-icon {
  width: 3.25rem;
  height: 3.25rem;
  color: #25d366;
}

.benefit-card-flip .card-front h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--acc);
  margin-bottom: 0.5rem;
}

.benefit-card-flip .card-front p {
  color: var(--n3);
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
}

.benefit-card-flip .card-back h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--acc);
  margin-bottom: 1rem;
}

.benefit-card-flip .card-back p {
  color: var(--tx2);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: #f5f7fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--g4);
  box-shadow: 0 4px 12px rgba(139, 195, 74, 0.15);
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--acc);
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: var(--tx2);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* FAQ — light band (vs dark platform-teaser + trust strip) */
.faq {
  padding: 5rem 0;
  background: var(--nw);
  border-top: 1px solid var(--n05);
  border-bottom: 1px solid var(--n05);
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g4) 0%, var(--acc) 50%, var(--t6) 100%);
}

.faq::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 12% 0%, rgba(42, 157, 143, 0.08), transparent 55%);
}

.faq .container {
  position: relative;
  z-index: 1;
}

.faq .section-header {
  margin-bottom: 2.75rem;
}

.faq .section-header h2 {
  color: var(--n9);
}

.faq .section-header h2 strong {
  color: var(--t6);
}

.faq .section-header p {
  color: var(--tx2);
}

.faq .section-header h2::after {
  background: linear-gradient(90deg, var(--acc) 0%, var(--g4) 100%);
}

.faq-list {
  max-width: min(44rem, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--n05);
  box-shadow: var(--sh2);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--t6), var(--g4));
  opacity: 0;
  transform: scaleY(0.65);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.faq-item:hover {
  border-color: rgba(42, 157, 143, 0.28);
  box-shadow: 0 6px 24px rgba(42, 157, 143, 0.1);
}

.faq-item.is-open {
  border-color: rgba(42, 157, 143, 0.38);
  box-shadow:
    0 12px 40px rgba(15, 23, 42, 0.07),
    0 0 0 1px rgba(42, 157, 143, 0.14);
}

.faq-item.is-open::before {
  opacity: 1;
  transform: scaleY(1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  width: 100%;
  padding: 1.15rem 1.25rem 1.15rem 1.35rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--n9);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.faq-question:hover {
  color: var(--tx);
  background: var(--t0);
}

.faq-question:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 2px;
  border-radius: 12px;
}

.faq-item.is-open .faq-question {
  color: var(--n9);
}

.faq-question::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: -0.2rem;
  border-right: 2px solid var(--n4);
  border-bottom: 2px solid var(--n4);
  transform: rotate(45deg);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s ease;
}

.faq-item.is-open .faq-question::after {
  margin-top: 0.15rem;
  transform: rotate(-135deg);
  border-color: var(--t6);
}

.faq-answer {
  padding: 0 1.35rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.35s ease;
}

.faq-answer.active {
  padding: 0 1.35rem 1.35rem;
  max-height: 960px;
}

.faq-answer p {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--n05);
  color: var(--tx2);
  font-size: 0.9375rem;
  line-height: 1.68;
}

.faq-answer p a {
  color: var(--t7);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(35, 127, 116, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.faq-answer p a:hover {
  color: var(--t8);
  border-bottom-color: var(--t6);
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-item::before,
  .faq-question,
  .faq-question::after,
  .faq-answer {
    transition-duration: 0.01ms;
  }
}

/* About — light band */
.about {
  padding: 5rem 0;
  background: var(--nw);
  border-top: 1px solid var(--n05);
  border-bottom: 1px solid var(--n05);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--acc) 0%, var(--g4) 100%);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  text-align: left;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--n9);
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--tx2);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid #e5e7eb;
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--acc);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 1rem;
  color: var(--tx2);
  font-weight: 500;
}

/* Contact — dark band */
.contact {
  padding: 5rem 0;
  background: var(--n9);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g4) 0%, var(--t6) 100%);
}

.contact .section-header h2 {
  color: #fff;
}

.contact .section-header p {
  color: var(--n2);
}

.contact .section-header h2::after {
  background: linear-gradient(90deg, var(--t4) 0%, var(--g4) 100%);
}

.contact-form-wrapper {
  max-width: 34rem;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--acc);
  margin-bottom: 1rem;
}

.contact-info > p {
  font-size: 1.125rem;
  color: var(--tx2);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-item > div {
  flex: 1;
}

.contact-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 1rem;
  color: var(--tx2);
  margin: 0;
}

.contact-form {
  background: #fff;
  padding: 1.5rem 1.35rem 1.65rem;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(6, 9, 15, 0.08);
  border: 1px solid var(--n05);
  width: 100%;
}

/* Shared native select styling (language + industry + intent) */
.contact-form .form-select {
  width: 100%;
  max-width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0.62rem 2.35rem 0.62rem 0.8rem;
  border: 1px solid var(--n05);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.35;
  color: var(--tx);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 1.05rem;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form .form-select:hover {
  border-color: var(--n3);
}

.contact-form .form-select:focus {
  outline: none;
  border-color: var(--acc);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.18);
}

.contact-form .form-select:invalid {
  color: var(--tx3);
}

.contact-form .form-select option {
  color: var(--tx);
}

/* Language — compact top bar */
.form-language-selector {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  margin: 0 0 0.85rem;
  padding: 0 0 0.65rem;
  border-bottom: 1px solid var(--n05);
}

.form-language-selector label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--tx2);
  margin: 0;
}

.contact-form .language-select {
  flex: 0 1 auto;
  min-width: min(11rem, 100%);
  max-width: 16rem;
}

/* Industry + intent side by side on wider viewports */
.form-row--duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.85rem;
  margin-bottom: 0.65rem;
}

.form-row--duo .form-group {
  margin-bottom: 0;
}

@media (max-width: 520px) {
  .form-row--duo {
    grid-template-columns: 1fr;
  }
}

/* Purpose Statement */
.form-purpose-notice {
  background: var(--t0);
  border-left: 3px solid var(--acc);
  padding: 0.75rem 0.85rem 0.8rem 0.95rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.form-purpose-notice p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--tx2);
  line-height: 1.58;
}

.form-purpose-notice strong {
  color: var(--acc);
  font-weight: 600;
}

.form-purpose-notice a {
  color: var(--acc);
  text-decoration: underline;
  font-weight: 500;
}

.form-purpose-notice a:hover {
  color: var(--t5);
}

/* Consent Checkbox */
.consent-group {
  margin-top: 0.85rem;
  margin-bottom: 0.65rem;
}

.consent-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.8125rem;
  color: var(--tx);
  line-height: 1.55;
}

.consent-checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--acc);
}

.consent-checkbox-label span {
  flex: 1;
}

.consent-checkbox-label a {
  color: var(--acc);
  text-decoration: underline;
  font-weight: 500;
}

.consent-checkbox-label a:hover {
  color: var(--t5);
}

.consent-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  padding-left: 1.75rem;
}

.marketing-consent-group {
  margin-bottom: 0.85rem;
}

.marketing-consent-group .consent-checkbox-label {
  color: var(--tx2);
  font-size: 0.78rem;
}

/* Data Rights Notice */
.form-rights-notice {
  background: var(--nw);
  border: 1px solid var(--n05);
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.form-rights-notice p {
  margin: 0;
  color: var(--tx2);
  line-height: 1.55;
}

.form-rights-notice a {
  color: var(--acc);
  text-decoration: underline;
  font-weight: 500;
}

.form-rights-notice a:hover {
  color: var(--t5);
}

.contact-form h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--n9);
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--tx2);
  line-height: 1.45;
  margin: 0 0 0.85rem;
}

.contact-form .form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--tx);
  margin: 0 0 0.35rem;
  letter-spacing: 0.01em;
}

.contact-form .required-mark {
  margin-left: 0.2em;
  color: var(--rd);
  font-weight: 700;
  font-size: 1.05em;
  line-height: 1;
  text-decoration: none;
  cursor: help;
}

.contact-form .consent-label-body {
  flex: 1;
  display: flex;
  gap: 0.3rem;
  align-items: flex-start;
  min-width: 0;
}

.contact-form .consent-required-mark {
  flex-shrink: 0;
  margin-top: 0.12rem;
}

.form-group {
  margin-bottom: 0.65rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.62rem 0.8rem;
  border: 1px solid var(--n05);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--tx);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--tx3);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: var(--n3);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--acc);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.18);
}

.form-group textarea {
  resize: vertical;
  min-height: 5.5rem;
  font-family: inherit;
  line-height: 1.5;
}

.btn-block {
  width: 100%;
  display: block;
}

.contact-form .btn-block {
  margin-top: 0.35rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  font-size: 0.9375rem;
  border-radius: 10px;
}

.form-footer {
  font-size: 0.8125rem;
  color: var(--tx2);
  text-align: center;
  margin-top: 0.75rem;
}

/* Contact modal (site-wide lead form) */
html.contact-modal-open {
  overflow: hidden;
}

.contact-modal-root {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem 1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.contact-modal-root[hidden] {
  display: none !important;
}

.contact-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 28, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact-modal-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin: 2rem auto;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(42, 157, 143, 0.18);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  padding: 1.25rem 1.35rem 1.5rem;
  max-height: min(90vh, 900px);
  overflow-y: auto;
}

.contact-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 8px;
  background: rgba(42, 157, 143, 0.1);
  color: var(--n6);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-modal-close:hover {
  background: rgba(42, 157, 143, 0.2);
  color: var(--acc);
}

.contact-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 2.5rem 0.75rem 0;
  color: var(--n8);
  letter-spacing: -0.02em;
}

.contact-form--modal {
  margin-top: 0;
}

.contact-form--modal .form-language-selector {
  margin-bottom: 0.5rem;
}

.contact-form--modal h3 {
  font-size: 1.05rem;
  margin-top: 0.35rem;
}

.contact-form--modal .form-subtitle {
  font-size: 0.88rem;
}

/* Footer */
.footer {
  position: relative;
  background: var(--n9);
  color: var(--n2);
  padding: 2.75rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--t6) 0%, var(--g4) 100%);
  opacity: 0.9;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 1.5rem;
}

.footer-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.footer-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
  object-position: left center;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.footer-brand-link:hover .footer-logo {
  opacity: 1;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  align-items: center;
  justify-content: flex-end;
}

.footer-contact-link,
.footer-contact-static {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  color: var(--n3);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: var(--t3);
}

.footer-contact-static {
  color: var(--n4);
  cursor: default;
}

.footer-contact-icon {
  flex-shrink: 0;
  color: var(--t5);
  opacity: 0.92;
}

.footer-contact-link:hover .footer-contact-icon {
  color: var(--t3);
}

.footer-nav {
  width: 100%;
}

/* Inner pages: logo + columns without contact row */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-content > .footer-brand .logo {
  display: block;
  max-height: 40px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.footer-column h4 {
  color: rgba(255, 255, 255, 0.52);
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-column a {
  display: block;
  color: var(--n3);
  text-decoration: none;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.footer-column a:last-child {
  margin-bottom: 0;
}

.footer-column a:hover {
  color: var(--t3);
}

.footer-links a {
  color: var(--n3);
  text-decoration: none;
  transition: color var(--dur);
}

.footer-links a:hover {
  color: var(--t3);
}

.footer-bottom {
  text-align: center;
  padding: 1.15rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--n4);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

/* Legal Pages */
.legal-page {
  padding: 6rem 0 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--n9);
  margin-bottom: 0.5rem;
}

.last-updated {
  color: var(--tx2);
  font-style: italic;
  margin-bottom: 2rem;
}

.legal-page section {
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.5rem;
  color: var(--acc);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.legal-page h3 {
  font-size: 1.25rem;
  color: var(--acc);
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.legal-page p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--tx2);
}

.legal-page ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
  color: var(--tx2);
}

/* Platform page — technical / architecture narrative */
.platform-page {
  padding: 0 0 4rem;
  max-width: none;
  margin: 0;
}

.platform-page .container {
  max-width: min(1120px, 100%);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.platform-hero {
  position: relative;
  background: linear-gradient(165deg, var(--n9) 0%, #0a1018 45%, var(--n8) 100%);
  color: var(--n1);
  padding: 5.5rem 0 3.25rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.platform-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 20% -20%, rgba(42, 157, 143, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(139, 195, 74, 0.08), transparent 50%);
  pointer-events: none;
}

.platform-hero-inner {
  position: relative;
  z-index: 1;
}

.platform-hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t4);
  margin: 0 0 0.75rem;
}

.platform-hero h1 {
  font-family: var(--sans);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.platform-hero-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--n2);
  max-width: 44rem;
  margin: 0 0 1.5rem;
}

.platform-hero-lead strong {
  color: #fff;
  font-weight: 600;
}

.platform-spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-spec-row li {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--t2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(42, 157, 143, 0.35);
  padding: 0.35rem 0.65rem;
  border-radius: var(--r1);
  margin: 0;
}

.platform-section {
  margin-bottom: 3.25rem;
}

.platform-section-header {
  margin-bottom: 1.25rem;
}

.platform-section-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t6);
  margin: 0 0 0.4rem;
}

.platform-section-eyebrow--tight {
  margin-bottom: 0.5rem;
}

.platform-section h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--n9);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.platform-section-dek {
  font-size: 1rem;
  color: var(--tx2);
  line-height: 1.65;
  margin: 0;
  max-width: 52rem;
}

.platform-section .platform-section-dek + p,
.platform-section > p {
  color: var(--tx2);
  line-height: 1.7;
  margin: 0 0 1rem;
  max-width: 52rem;
}

.platform-section > p:last-child {
  margin-bottom: 0;
}

.platform-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

@media (max-width: 820px) {
  .platform-two-col {
    grid-template-columns: 1fr;
  }
}

.platform-callout {
  background: var(--n0);
  border: 1px solid var(--bdr);
  border-left: 3px solid var(--t6);
  border-radius: var(--r2);
  padding: 1rem 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--tx2);
}

.platform-callout strong {
  color: var(--tx);
}

.platform-diagram-block {
  margin: 1.5rem 0 2.5rem;
}

.platform-diagram-block:first-child {
  margin-top: 0;
}

.platform-diagram-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.65rem;
}

.platform-diagram-title {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--n9);
  margin: 0;
}

.platform-diagram-meta {
  font-size: 0.75rem;
  color: var(--tx3);
  margin: 0;
}

.platform-diagram-shell {
  background: var(--n8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r3);
  padding: 1.25rem 1rem 1rem;
  overflow-x: auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.platform-diagram-shell .mermaid {
  display: flex;
  justify-content: center;
  min-width: min(100%, 640px);
}

.platform-diagram-shell .mermaid svg {
  max-width: 100%;
  height: auto;
}

.platform-diagram-caption {
  font-size: 0.8125rem;
  color: var(--tx2);
  margin: 0.75rem 0 0;
  line-height: 1.55;
  max-width: 48rem;
}

.platform-pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem 1.25rem;
  margin: 1.5rem 0 0;
  list-style: none;
  padding: 0;
}

.platform-pillar-grid li {
  margin: 0;
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--r2);
  box-shadow: var(--sh1);
}

.platform-pillar-grid h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--t7);
  margin: 0 0 0.5rem;
}

.platform-pillar-grid p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--tx2);
  margin: 0;
}

.platform-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.75rem;
}

@media (max-width: 768px) {
  .platform-shot-grid {
    grid-template-columns: 1fr;
  }
}

.platform-shot {
  margin: 0;
  background: var(--n8);
  border-radius: var(--r3);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--sh3);
}

.platform-shot img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.platform-shot--full {
  grid-column: 1 / -1;
  max-width: 100%;
}

.platform-shot--below-grid {
  margin-top: 1.5rem;
}

.platform-shot figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--n2);
  background: linear-gradient(180deg, var(--n7) 0%, var(--n8) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.platform-shot-tag {
  display: inline-block;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--t3);
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.platform-cta-band {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--t0) 0%, #fff 50%, var(--t0) 100%);
  border: 1px solid rgba(42, 157, 143, 0.2);
  border-radius: var(--r3);
}

.platform-cta-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--n9);
  margin: 0 0 0.65rem;
}

.platform-cta-band p {
  margin: 0 0 1rem;
  color: var(--tx2);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.platform-tech-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--tx2);
  line-height: 1.7;
}

.platform-tech-list li {
  margin-bottom: 0.45rem;
}

.platform-tech-list--tight li {
  margin-bottom: 0.35rem;
}

.platform-two-col--top {
  align-items: start;
  margin-top: 1.25rem;
}

.platform-subhead {
  font-size: 1rem;
  font-weight: 700;
  color: var(--n9);
  margin: 0 0 0.65rem;
  letter-spacing: -0.01em;
}

.platform-table-intro {
  font-size: 0.875rem;
  color: var(--tx2);
  margin: 0 0 0.75rem;
  line-height: 1.55;
}

.platform-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--bdr);
  border-radius: var(--r2);
  background: #fff;
}

.platform-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.platform-table th,
.platform-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--bdr);
}

.platform-table th {
  font-weight: 700;
  color: var(--n9);
  background: var(--n0);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.platform-table tbody tr:last-child td {
  border-bottom: none;
}

.platform-table td:first-child {
  font-weight: 600;
  color: var(--t7);
  white-space: nowrap;
}

.platform-small-print {
  font-size: 0.8125rem;
  color: var(--tx3);
  line-height: 1.55;
  margin: 1rem 0 0;
  font-style: italic;
}

.platform-callout--spaced {
  margin-top: 1.5rem;
}

.platform-mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .platform-mode-grid {
    grid-template-columns: 1fr;
  }
}

.platform-mode-card {
  padding: 1.35rem 1.4rem;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--r3);
  box-shadow: var(--sh1);
  border-top: 3px solid var(--t6);
}

.platform-mode-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--n9);
  margin: 0 0 0.75rem;
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.platform-mode-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--t6);
  border-radius: var(--r1);
}

.platform-mode-lead {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--tx2);
  margin: 0 0 0.85rem;
}

/* Healthcare, financial & education solution pages */
.healthcare-page .platform-section h2,
.financial-page .platform-section h2,
.education-page .platform-section h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.7rem);
}

.healthcare-his-banner {
  margin: 0 0 2.5rem;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(135deg, #fff8f5 0%, #fff 55%, #f0fdf9 100%);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--r3);
  box-shadow: var(--sh1);
}

.healthcare-his-banner h2 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: #991b1b;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.healthcare-his-banner p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--tx2);
  max-width: 52rem;
}

.healthcare-his-banner p + p {
  margin-top: 0.65rem;
}

.healthcare-diagram-shell,
.solution-diagram-shell {
  padding: 1.5rem 1.25rem 1.35rem;
}

.platform-diagram-shell .healthcare-diagram-svg,
.platform-diagram-shell .solution-diagram-svg {
  display: block;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  height: auto;
}

.platform-diagram-shell .healthcare-diagram-svg--tall,
.platform-diagram-shell .solution-diagram-svg--tall {
  max-width: 720px;
}

.platform-diagram-shell .solution-diagram-svg--journey {
  max-width: 760px;
}

/* Lighter treatment for solution journey / integration diagrams (e.g. financial page) */
.platform-diagram-shell.solution-diagram-shell--light {
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 55%, #eef1f4 100%);
  border: 1px solid rgba(13, 148, 136, 0.2);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.financial-core-banner {
  margin: 0 0 2.5rem;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #fff 55%, #f0fdf9 100%);
  border: 1px solid rgba(12, 74, 110, 0.22);
  border-radius: var(--r3);
  box-shadow: var(--sh1);
}

.financial-core-banner h2 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0c4a6e;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.financial-core-banner p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--tx2);
  max-width: 52rem;
}

.financial-core-banner p + p {
  margin-top: 0.65rem;
}

.education-minors-banner {
  margin: 0 0 2.5rem;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(135deg, #f5f3ff 0%, #fff 50%, #f0fdf9 100%);
  border: 1px solid rgba(91, 33, 182, 0.2);
  border-radius: var(--r3);
  box-shadow: var(--sh1);
}

.education-minors-banner h2 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: #5b21b6;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.education-minors-banner p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--tx2);
  max-width: 52rem;
}

.education-minors-banner p + p {
  margin-top: 0.65rem;
}

.healthcare-dept-table-wrap,
.financial-dept-table-wrap,
.education-dept-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 0;
  border: 1px solid var(--bdr);
  border-radius: var(--r2);
  background: #fff;
}

.healthcare-dept-table,
.financial-dept-table,
.education-dept-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.healthcare-dept-table th,
.healthcare-dept-table td,
.financial-dept-table th,
.financial-dept-table td,
.education-dept-table th,
.education-dept-table td {
  padding: 0.7rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--bdr);
}

.healthcare-dept-table th,
.financial-dept-table th,
.education-dept-table th {
  background: var(--n0);
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--n9);
}

.healthcare-dept-table tbody tr:last-child td,
.financial-dept-table tbody tr:last-child td,
.education-dept-table tbody tr:last-child td {
  border-bottom: none;
}

.healthcare-dept-table td:first-child,
.financial-dept-table td:first-child,
.education-dept-table td:first-child {
  font-weight: 600;
  color: var(--t7);
  white-space: nowrap;
}

.healthcare-emergency-panel,
.financial-regulatory-panel,
.education-minors-panel {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  background: var(--n0);
  border-radius: var(--r3);
  border: 1px solid var(--bdr);
  border-left: 4px solid var(--am);
}

.healthcare-emergency-panel h3,
.financial-regulatory-panel h3,
.education-minors-panel h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--n9);
  margin: 0 0 0.65rem;
}

.healthcare-emergency-panel ul,
.financial-regulatory-panel ul,
.education-minors-panel ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--tx2);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.healthcare-emergency-panel li,
.financial-regulatory-panel li,
.education-minors-panel li {
  margin-bottom: 0.4rem;
}

.healthcare-legal-note,
.financial-legal-note,
.education-legal-note {
  font-size: 0.8125rem;
  color: var(--tx3);
  font-style: italic;
  line-height: 1.55;
  margin: 1.25rem 0 0;
  max-width: 48rem;
}

.healthcare-figure,
.financial-figure,
.education-figure {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.healthcare-dek-spaced,
.financial-dek-spaced,
.education-dek-spaced {
  margin-top: 1.5rem;
}

.healthcare-figure--spaced,
.financial-figure--spaced,
.education-figure--spaced {
  margin-top: 1.5rem;
}

/* Next steps — single-row compact buttons (solution pages) */
.platform-section--next-steps .platform-section-header--next-steps {
  margin-bottom: 1rem;
}

.healthcare-legal-note--before-next-card,
.financial-legal-note--before-next-card,
.education-legal-note--before-next-card {
  margin: 0 0 1rem;
  max-width: 48rem;
}

.next-steps-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0.5rem 0.65rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--n05);
  border-left: 3px solid var(--t5);
  border-radius: var(--r2);
}

.platform-page .next-steps-card {
  background: var(--bg);
}

.next-steps-card__label {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tx3);
  margin: 0 0 0.5rem;
}

.next-steps-card__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.45rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 0.1rem;
}

@media (max-width: 520px) {
  .next-steps-card__actions {
    flex-wrap: wrap;
  }
}

.next-steps-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  min-height: 0;
  padding: 0.4rem 0.85rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #fff !important;
  text-decoration: none !important;
  background: var(--n9);
  border-radius: 999px;
  border: 1px solid transparent;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition:
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.next-steps-card__cta:hover {
  background: var(--n6);
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

.next-steps-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0.38rem 0.8rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  color: var(--tx) !important;
  text-decoration: none !important;
  background: var(--bg);
  border: 1px solid var(--n05);
  border-radius: 999px;
  transition:
    border-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    background var(--dur) var(--ease);
}

.next-steps-card__link:hover {
  border-color: rgba(13, 148, 136, 0.45);
  color: var(--acc) !important;
  background: rgba(240, 253, 250, 0.65);
  text-decoration: none !important;
}

.next-steps-card__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 0.4rem;
  width: auto;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.4);
  background: rgb(240 253 244 / 0.85);
  color: inherit !important;
  text-decoration: none !important;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.next-steps-card__wa:hover {
  background: rgb(220 252 231 / 0.95);
  border-color: rgba(37, 211, 102, 0.55);
  color: inherit !important;
  text-decoration: none !important;
}

.next-steps-card__wa .whatsapp-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.next-steps-card__wa:hover .whatsapp-icon {
  color: #1da851;
}

.next-steps-card__wa-text {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--tx);
  white-space: nowrap;
}

/* DPDP guide — readable explainer */
.dpdp-guide-page {
  padding: 0 0 3.5rem;
  background: linear-gradient(180deg, var(--t0) 0%, var(--bg) 18rem, var(--bg) 100%);
}

.dpdp-guide-hero {
  padding: 3.25rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--bdr);
  background: rgba(255, 255, 255, 0.65);
}

.dpdp-guide-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 600;
  color: var(--n9);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.dpdp-guide-lead {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--tx2);
}

.dpdp-guide-inner {
  max-width: 44rem;
  padding-top: 1.75rem;
}

.dpdp-guide-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
  justify-content: center;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.dpdp-guide-toc li {
  list-style: none;
  margin: 0;
}

.dpdp-guide-toc a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t7);
  background: #fff;
  border: 1px solid rgba(42, 157, 143, 0.25);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.dpdp-guide-toc a:hover {
  background: var(--t0);
  border-color: var(--t6);
}

.dpdp-guide-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--r3);
  padding: 1.35rem 1.4rem 1.4rem;
  margin-bottom: 1.15rem;
  box-shadow: var(--sh1);
}

.dpdp-guide-card h2 {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--n9);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.dpdp-guide-card p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--tx2);
}

.dpdp-guide-card p:last-child {
  margin-bottom: 0;
}

.dpdp-guide-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--tx2);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.dpdp-guide-card li {
  margin-bottom: 0.4rem;
}

.dpdp-guide-card li:last-child {
  margin-bottom: 0;
}

.dpdp-guide-figure {
  margin: 1rem 0 0;
  padding: 1rem;
  background: var(--n0);
  border-radius: var(--r2);
  border: 1px solid var(--bdr);
}

.dpdp-guide-figure svg {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
}

.dpdp-guide-figure-caption {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  color: var(--tx3);
  text-align: center;
  line-height: 1.45;
}

.dpdp-guide-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 0.75rem 0 0;
  list-style: none;
  padding: 0;
}

@media (max-width: 520px) {
  .dpdp-guide-pillars {
    grid-template-columns: 1fr;
  }
}

.dpdp-guide-pillars li {
  margin: 0;
  padding: 0.75rem 0.85rem;
  background: var(--t0);
  border-radius: var(--r2);
  border: 1px solid rgba(42, 157, 143, 0.2);
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--tx);
}

.dpdp-guide-pillars strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--t7);
  margin-bottom: 0.25rem;
}

.dpdp-guide-mermaid {
  margin: 0.85rem 0 0;
  padding: 0.85rem 0.65rem;
  background: var(--n8);
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
}

.dpdp-guide-mermaid .mermaid {
  display: flex;
  justify-content: center;
}

.dpdp-guide-mermaid .mermaid svg {
  max-width: 100%;
  height: auto;
}

.dpdp-guide-disclaimer {
  font-size: 0.8125rem;
  color: var(--tx3);
  line-height: 1.55;
  font-style: italic;
  margin: 1.5rem 0 0;
  padding: 1rem 1.1rem;
  background: var(--n0);
  border-radius: var(--r2);
  border-left: 3px solid var(--t6);
}

.dpdp-guide-cta {
  margin-top: 1.75rem;
  text-align: center;
}

.dpdp-guide-cta .btn {
  margin: 0 0.35rem 0.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .header {
    top: 0;
  }

  .hero {
    padding: 3rem 0 2rem;
    min-height: 0;
  }

  .hero.hero--home {
    padding: 4rem 0 3rem;
    min-height: 48vh;
  }

  .hero-content {
    text-align: center;
  }

  .hero-main {
    align-items: center;
  }

  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-form-wrapper {
    max-width: 100%;
    padding: 0 1rem;
  }

  .contact-form {
    padding: 1.35rem 1.15rem 1.5rem;
  }

  .form-language-selector {
    justify-content: space-between;
  }

  .contact-form .language-select {
    max-width: none;
    flex: 1 1 auto;
    min-width: 0;
  }

  .form-purpose-notice {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .form-rights-notice {
    padding: 0.875rem 1rem;
    font-size: 0.8125rem;
  }

  .footer-brand-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .footer-contact-list {
    justify-content: flex-start;
    width: 100%;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header {
    top: 0;
  }

  .hero {
    padding: 2.75rem 0 2rem;
    min-height: auto;
  }

  .hero.hero--home {
    padding: 3.5rem 0 2.5rem;
    min-height: auto;
  }

  .nav {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 2;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(42, 157, 143, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
    font-size: 1.1rem;
  }

  .nav-item {
    position: static;
  }

  .nav-dropdown {
    position: static;
    display: block;
    min-width: auto;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0.5rem 0;
    background: transparent;
  }

  .nav-dropdown a {
    padding: 0.65rem 2.25rem;
    font-size: 0.95rem;
    color: var(--tx2);
  }

  .header-demo-btn {
    display: none;
  }

  .header-login-link {
    display: none;
  }

  .requirements-grid:not(.requirements-matrix),
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .requirement-card:not(.requirement-card--matrix) {
    min-height: 240px;
    padding: 1.5rem;
  }

  .requirement-card:not(.requirement-card--matrix):hover {
    transform: translateY(-2px);
  }

  .requirement-card .card-content h3 {
    font-size: 1.5rem;
  }

  .requirement-card .card-content p {
    font-size: 0.95rem;
  }

  .requirement-icon,
  .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .card-front h3,
  .card-back h3 {
    font-size: 1.25rem;
  }

  .capability-section-title {
    font-size: 1.75rem;
  }

  .teaser-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .capability-teaser-reverse .teaser-content {
    direction: ltr;
  }

  .teaser-text h3 {
    font-size: 1.75rem;
  }

  .teaser-image-placeholder {
    height: 250px;
  }

  .placeholder-icon {
    font-size: 3rem;
  }

  .stat-number {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .value-prop-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

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

  .footer-brand-row {
    align-items: center;
    text-align: center;
  }

  .footer-brand-link {
    justify-content: center;
  }

  .footer-contact-list {
    justify-content: center;
  }

  .footer-content > .footer-brand {
    align-self: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    text-align: left;
    width: 100%;
  }

  .platform-hero {
    padding: 4.5rem 0 2.5rem;
  }

  .about-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 100%;
  }

  .container {
    padding: 0 1rem;
  }

  .nav {
    padding: 0.75rem 1rem;
  }

  .nav-brand .logo {
    height: 38px;
  }

  .btn-large {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .requirements {
    padding: 2.5rem 0;
  }

  .requirements-carousel {
    height: 380px;
  }

  .requirement-slide {
    padding: 1.5rem 1.25rem;
  }

  .requirement-icon-large {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .requirement-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .requirement-description {
    font-size: 0.9rem;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .how-it-works,
  .benefits,
  .faq,
  .about,
  .contact {
    padding: 3rem 0;
  }

  .faq .section-header {
    margin-bottom: 1.75rem;
  }

  .faq-list {
    gap: 0.5rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1rem 1rem 1rem 1.1rem;
  }

  .faq-answer {
    padding: 0 1.1rem;
  }

  .faq-answer.active {
    padding: 0 1.1rem 1.15rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
    padding-top: 0.85rem;
  }

  .adoption-process {
    padding: 0 1rem;
  }

  .process-flow {
    margin-top: 3rem;
  }

  .process-step {
    flex-direction: column !important;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
  }

  .process-step:nth-child(even) {
    flex-direction: column !important;
  }

  .process-step:nth-child(even) .step-content {
    text-align: left;
  }

  .step-visual {
    width: 100%;
    align-items: center;
  }

  .step-circle {
    width: 80px;
    height: 80px;
  }

  .step-number {
    font-size: 1.5rem;
  }

  .step-icon {
    font-size: 1.5rem;
  }

  .step-connector {
    height: 3rem;
    margin-top: 0.5rem;
  }

  .step-content {
    padding: 1.5rem;
    text-align: left !important;
  }

  .step-content h3 {
    font-size: 1.5rem;
    text-align: left;
  }

  .step-features {
    justify-content: flex-start;
  }

  .step-features li {
    font-size: 0.875rem;
    padding: 0.4rem 0.875rem;
  }

  .benefit-card,
  .contact-form {
    padding: 1.15rem 1rem 1.25rem;
  }

  .value-prop-title {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}
