:root {
  --bg: #edf2f7;
  --surface: #ffffff;
  --ink: #00233f;
  --ink-muted: #63708a;
  --line: #e4e8ef;
  --dark: #031830;
  --dark-soft: #0f2f53;
  --placeholder: #344a69;
  --yellow: #ffe800;
  --yellow-soft: #fff17a;
  --orange: #f9a50b;
  --graphite: #2a2a2a;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-line: rgba(255, 255, 255, 0.22);
  --glass-shadow: 0 18px 34px rgba(2, 20, 43, 0.36);
  --neo-top: #ffffff;
  --neo-bottom: #d1d9e6;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 5% 4%, #ffffff 0%, rgba(255, 255, 255, 0) 30%),
    var(--bg);
  color: var(--ink);
  line-height: 1.45;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  z-index: 60;
  background: rgba(0, 0, 0, 0.08);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #ffe800, #f9a50b 55%, #00233f);
  box-shadow: 0 0 14px rgba(255, 232, 0, 0.45);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 30px rgba(0, 35, 63, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.utility-bar {
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.utility-wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-wrap p {
  margin: 0;
}

.utility-wrap p span {
  color: #c79f00;
  margin-left: 0.35rem;
  font-weight: 700;
  text-transform: uppercase;
}

.utility-links {
  display: flex;
  gap: 1.2rem;
}

.nav-wrap {
  min-height: 88px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 1.1rem;
  align-items: center;
}

.logo {
  display: block;
  width: 100%;
  max-width: 210px;
  justify-self: start;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0, 35, 63, 0.2);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1.3rem;
  justify-self: center;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #2f3f5f;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav a:hover {
  background: #f3f7fd;
  color: var(--ink);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-self: end;
}

.header-cta small {
  color: #d6b112;
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 0;
  padding: 0.35rem;
  cursor: pointer;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.btn {
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0.76rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-yellow {
  background: var(--yellow);
  color: #202020;
  box-shadow:
    6px 6px 14px rgba(185, 156, 0, 0.2),
    -4px -4px 10px rgba(255, 255, 255, 0.18),
    0 0 0 1px rgba(255, 230, 0, 0.45);
}

.btn-yellow:hover {
  background: var(--yellow-soft);
  transform: translateY(-1px);
  box-shadow:
    8px 10px 18px rgba(185, 156, 0, 0.24),
    -4px -4px 10px rgba(255, 255, 255, 0.2),
    0 0 18px rgba(255, 232, 0, 0.28);
}

.btn-dark-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn-dark-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-navy {
  background: #08163a;
  color: #fff;
}

.btn-light {
  background: #f3f6fb;
  color: #2f3f5f;
}

.btn-outline-dark {
  background: transparent;
  border-color: #2b3e60;
  color: #2b3e60;
}

.btn-outline-dark:hover {
  background: #eaf0f9;
}

.dark-section {
  background:
    radial-gradient(circle at 12% 6%, rgba(73, 123, 199, 0.16), rgba(73, 123, 199, 0) 33%),
    radial-gradient(circle at 88% 80%, rgba(255, 232, 0, 0.09), rgba(255, 232, 0, 0) 40%),
    var(--dark);
  color: #dce7ff;
}

.hero {
  padding: 58px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.kicker {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  color: var(--yellow);
  font-size: clamp(1.55rem, 3.3vw, 2.3rem);
  letter-spacing: -0.015em;
}

h2 {
  margin: 2rem 0 0.8rem;
  color: var(--yellow);
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  letter-spacing: -0.012em;
}

.line {
  margin: 0 0 0.7rem;
  height: 18px;
  border-radius: 2px;
  background: var(--placeholder);
}

.intro-scroll-video {
  position: relative;
  height: 210vh;
  background: #020b1b;
}

.intro-video-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.intro-video-sticky::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28vh;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 11, 27, 0) 0%, rgba(2, 11, 27, 0.9) 85%),
    linear-gradient(180deg, rgba(255, 232, 0, 0.06), rgba(255, 232, 0, 0));
}

.intro-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
  transform: scale(1.055);
  filter: saturate(1.1) contrast(1.04) brightness(0.96);
  will-change: transform, filter;
}

.intro-video-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem 4%;
  text-align: center;
  background: linear-gradient(180deg, rgba(2, 11, 27, 0), rgba(2, 11, 27, 0.88));
  opacity: var(--intro-overlay-opacity, 1);
  transform: translateY(var(--intro-overlay-shift, 0px));
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.intro-video-overlay p {
  margin: 0;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.intro-video-overlay small {
  color: #ffe800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 0 14px rgba(255, 232, 0, 0.22);
}

.parallax-layer {
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.16s linear;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.line-xl {
  width: 92%;
}

.line-lg {
  width: 78%;
}

.line-md {
  width: 64%;
}

.line-sm {
  width: 55%;
}

.line-title {
  height: 8px;
  width: 160px;
}

.line-sub {
  height: 8px;
  width: 110px;
}

.line-xs {
  width: 120px;
  height: 8px;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions small {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
}

.hero-media {
  border: 1px solid var(--glass-line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  min-height: 290px;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  text-align: center;
  color: #b3c2e5;
  border-radius: 18px;
  backdrop-filter: blur(11px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), var(--glass-shadow);
}

.hero-brand-glass {
  width: min(300px, 90%);
  margin: 0 auto 1rem;
  opacity: 0.78;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35));
}

.impact {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.impact-grid {
  min-height: 160px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.4rem;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  align-items: center;
}

.impact-stats article {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  padding: 0.9rem 0.55rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1f3357;
  margin: 0 auto 0.65rem;
}

.impact-stats strong,
.pillars strong {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
}

.metric-value {
  display: block;
  margin-bottom: 0.2rem;
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  letter-spacing: 0.01em;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.impact-cta {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 1.6rem;
  display: grid;
  align-content: center;
  background: var(--glass-bg);
  border-radius: 14px;
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(10px);
  box-shadow: var(--glass-shadow);
}

.impact-cta p {
  margin: 0.6rem 0 0;
  font-size: 0.8rem;
  text-align: center;
  color: #9db0d6;
}

.banner {
  padding: 70px 0;
}

.banner-content {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(8px);
  padding: 2rem 1rem;
  box-shadow: var(--glass-shadow);
}

.banner-content .line {
  margin-left: auto;
  margin-right: auto;
}

blockquote {
  margin: 1.1rem 0 0;
  color: var(--yellow);
  font-size: 1rem;
}

.proof {
  padding: 30px 0;
  background: #f5f6f8;
}

.flow-gallery {
  margin-top: 0.4rem;
}

.flow-stage {
  position: relative;
  min-height: 160px;
  border-radius: 16px;
  overflow: hidden;
}

.flow-actions {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.flow-actions button {
  border: 1px solid #d4dcea;
  border-radius: 999px;
  background: #ffffff;
  color: #203353;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 5px 5px 12px #d4dcea, -4px -4px 10px #ffffff;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.pillars article {
  border: 1px solid #dbe3ef;
  background: #fff;
  text-align: center;
  padding: 2rem 1rem 1.3rem;
  border-radius: 14px;
  box-shadow: 8px 8px 18px var(--neo-bottom), -8px -8px 18px var(--neo-top);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillars article:hover {
  transform: translateY(-2px);
  box-shadow: 12px 12px 22px #cdd6e3, -10px -10px 20px #ffffff;
}

.pillars .icon {
  background: #e3e8f2;
}

.segments {
  padding: 54px 0 60px;
  background: #fff;
}

.segments-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.kicker-light {
  color: #c8a500;
}

.segments-nav {
  display: flex;
  gap: 0.55rem;
}

.segments-nav button {
  width: 34px;
  height: 34px;
  border: 1px solid #e0e5ed;
  border-radius: 999px;
  background: #fff;
  color: #72809b;
  cursor: pointer;
}

.segment-tabs {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  border-bottom: 1px solid #eef1f5;
  padding-bottom: 1rem;
}

.segment-tabs button {
  border: 1px solid #e4e8ef;
  border-radius: 999px;
  background: #fff;
  color: #5c6a86;
  font-weight: 500;
  padding: 0.52rem 1rem;
  cursor: pointer;
}

.segment-tabs button.active {
  background: #08163a;
  color: #fff;
  border-color: #08163a;
}

.segment-card {
  margin-top: 1.25rem;
  border: 1px solid #e2e7ef;
  border-radius: 14px;
  padding: 1.8rem;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1.6rem;
  background: #eef3f9;
  box-shadow: 10px 10px 24px #d7dfeb, -10px -10px 24px #ffffff;
  position: relative;
}

.segment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
}

.segment-icon {
  border: 1px dashed #d9dfeb;
  display: grid;
  place-items: center;
  color: #7f8aa0;
  font-size: 0.85rem;
  text-align: center;
  min-height: 230px;
}

.segment-active {
  margin: 0 0 0.7rem;
  color: #c1a200;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.segment-body h3 {
  margin-bottom: 0.5rem;
  color: #f3c900;
}

.segment-body p {
  margin-bottom: 0.85rem;
  color: #6a7489;
  max-width: 70ch;
}

.segment-body h4 {
  margin-bottom: 0.4rem;
  color: #2c3954;
}

.dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.dots span {
  width: 7px;
  height: 7px;
  background: #d6dce6;
  border-radius: 999px;
}

.dots span.active {
  width: 22px;
  border-radius: 999px;
  background: #08163a;
}

.banner-8 {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.coverage {
  background: #fff;
  padding: 52px 0;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
}

.map-box {
  border: 1px solid #e2e7ef;
  border-radius: 16px;
  padding: 1.2rem;
  background: #edf2f8;
  box-shadow: 12px 12px 24px #d5deeb, -12px -12px 24px #ffffff;
  position: relative;
}

.map-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.map-visual {
  border: 1px dashed #dbe1eb;
  min-height: 350px;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  color: #6d7790;
}

.map-visual p {
  margin-bottom: 0.2rem;
}

.map-visual strong {
  color: #27364f;
  text-transform: uppercase;
}

.node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: pulse 2.2s infinite;
}

.node-a {
  background: #8bd443;
  top: 25%;
  left: 42%;
}

.node-b {
  background: #0e1936;
  top: 58%;
  left: 47%;
}

.node-c {
  background: #8bd443;
  top: 68%;
  left: 70%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 212, 67, 0.4);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(139, 212, 67, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(139, 212, 67, 0);
  }
}

.coverage-copy h3 {
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #c5a300;
}

.coverage-quote {
  margin: 1rem 0 1.1rem;
  color: #c8a42a;
}

.coverage-numbers {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}

.coverage-numbers strong {
  font-size: 0.83rem;
  color: #233550;
}

.certs {
  background: #f7f8fa;
  padding: 34px 0;
}

.certs-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.certs-head p {
  color: #8a94a9;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.flow-gallery.is-loop-ready .flow-stage {
  min-height: 190px;
  background: linear-gradient(150deg, rgba(242, 246, 252, 0.95), rgba(229, 237, 248, 0.86));
  border: 1px solid #dde5f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.flow-gallery.is-loop-ready .flow-cards {
  position: absolute;
  width: 14rem;
  height: 9rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.flow-gallery.is-loop-ready .flow-cards > article {
  position: absolute;
  top: 0;
  left: 0;
  width: 14rem;
  height: 9rem;
  margin: 0;
}

.flow-gallery.is-loop-ready .cert-grid {
  margin-top: 0;
}

.cert-grid article {
  border: 1px solid #e2e7ef;
  background: #eef3f9;
  min-height: 118px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 14px;
  box-shadow: 8px 8px 18px #d6ddea, -8px -8px 18px #ffffff;
  transition: transform 0.2s ease;
}

.cert-grid article:hover {
  transform: translateY(-2px);
}

.cert-grid article span {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: #e6ebf4;
}

.cert-grid article strong {
  color: #d3ad0e;
  font-size: 0.72rem;
}

.cases {
  background: #fff;
  padding: 52px 0;
}

.cases-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.cases-subtitle {
  color: #c8a22b;
  margin-top: 0.3rem;
}

.case-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.case-card {
  border: 1px solid #dbe2ec;
  background: #eef3f9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 10px 10px 20px #d4dce9, -8px -8px 18px #ffffff;
  position: relative;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.case-card header {
  background: #08163a;
  color: #fff;
  padding: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-card header h4 {
  margin: 0;
}

.case-card header span {
  font-size: 0.64rem;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  background: rgba(255, 209, 6, 0.17);
  color: #ffde55;
  text-transform: uppercase;
}

.case-card .tag {
  margin: 0.8rem 1rem 0.45rem;
  font-size: 0.76rem;
  color: #c6a40f;
  font-weight: 700;
  text-transform: uppercase;
}

.case-card .line {
  margin-left: 1rem;
  margin-right: 1rem;
  height: 8px;
}

.line-dark {
  background: #223657;
}

.case-card strong {
  display: block;
  margin: 0.9rem 1rem 1rem;
  color: #c7a11f;
  font-size: 0.85rem;
}

.testimonial {
  margin-top: 1.5rem;
  border: 1px dashed #dbe2ec;
  background: #fbfcfe;
  padding: 1.4rem;
  border-radius: 16px;
  box-shadow: 8px 8px 18px #dde4ef, -8px -8px 18px #ffffff;
}

.quote-mark {
  color: #d0d8e8;
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.testimonial .line {
  height: 10px;
  background: #d7ddea;
}

.testimonial-foot {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.person {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #91a4c5;
}

.company {
  color: #9ea9be;
  border: 1px solid #dbe2ec;
  padding: 0.5rem 0.8rem;
}

.banner-12 .banner-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(8px);
  padding: 1.6rem;
  box-shadow: var(--glass-shadow);
}

.banner-cta-box {
  text-align: center;
}

.banner-cta-box p {
  color: #ffdd4d;
  margin: 0.7rem 0 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.72rem;
}

.process {
  background: #fff;
  padding: 54px 0;
}

.process-title {
  text-align: center;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
  align-items: start;
  border: 1px solid #dce3ef;
  border-radius: 16px;
  padding: 1rem;
  background: #eff4fa;
  box-shadow: 10px 10px 20px #d6deeb, -8px -8px 18px #ffffff;
}

.connector {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 24px;
  border-top: 1px dashed #d7dde8;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  grid-template-rows: auto auto auto;
  gap: 0.35rem;
}

.step-dot {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 2px solid #d5dce8;
  color: #77849e;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 7px 7px 16px #d5dce7, -6px -6px 14px #ffffff;
}

.step-dot.active {
  border-color: #ffce15;
  color: #1b2c48;
}

.step h4 {
  margin: 0.55rem 0 0.1rem;
  color: #c7a20f;
  text-transform: uppercase;
  font-size: 0.78rem;
  min-height: 1.8rem;
}

.step p {
  color: #8a94a9;
  margin: 0;
  min-height: 1.4rem;
}

.timeline-cta {
  margin-top: 1.7rem;
  text-align: center;
}

.faq {
  background: #fff;
  padding: 10px 0 58px;
}

.faq .container {
  border: 2px solid #1689db;
  padding: 1.2rem;
  border-radius: 2px;
  background: linear-gradient(150deg, rgba(245, 249, 255, 0.84), rgba(233, 240, 251, 0.76));
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 30px rgba(37, 84, 142, 0.12);
}

.faq-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-head small {
  color: #9ca8bc;
}

.faq-item {
  border: 1px dashed #dbe2ec;
  margin-top: 0.7rem;
  border-radius: 12px;
  background: #f2f6fc;
  box-shadow: 7px 7px 16px #d8e0eb, -7px -7px 16px #ffffff;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-1px);
}

.faq-question {
  border: 0;
  width: 100%;
  background: #fff;
  text-align: left;
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6f7d96;
  font-weight: 500;
  cursor: pointer;
}

.faq-item.open .faq-question {
  color: #d0ac19;
  font-weight: 700;
}

.faq-answer {
  display: none;
  padding: 0 0.8rem 0.9rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: linear-gradient(160deg, #ecf1f8, #e8edf4);
  border-top: 1px solid var(--line);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
}

.footer-main {
  padding: 2rem 0 1.4rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.footer-col h4,
.footer-col h5 {
  margin-bottom: 0.7rem;
  color: var(--orange);
  text-transform: uppercase;
}

.footer-logo {
  width: min(260px, 100%);
  height: auto;
  margin-bottom: 0.6rem;
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0, 35, 63, 0.15);
}

.footer-col h5 {
  margin-top: 0.85rem;
  font-size: 0.88rem;
}

.footer-col p,
.footer-col li {
  color: #6f7d96;
  margin: 0;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.socials {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.42rem;
}

.socials span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #d5ddeb;
  display: inline-grid;
  place-items: center;
  font-size: 0.7rem;
  color: #6f7d96;
}

.seals {
  display: flex;
  gap: 0.45rem;
}

.seals span {
  width: 52px;
  height: 18px;
  border: 1px solid #d5ddeb;
  border-radius: 5px;
}

.lgpd {
  border: 1px dashed #d9e0ec;
  padding: 0.8rem;
  margin: 0.7rem 0 0.9rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(245, 249, 255, 0.78));
  border-radius: 12px;
  box-shadow: 8px 8px 16px #d6deea, -8px -8px 16px #ffffff;
}

.lgpd h6 {
  margin: 0 0 0.5rem;
  color: #c7a20f;
  text-transform: uppercase;
}

.lgpd-actions {
  display: flex;
  gap: 0.5rem;
  margin: 0.65rem 0;
}

.footer-cta {
  width: 100%;
}

.footer-bottom {
  min-height: 58px;
  border-top: 1px solid #e2e8f1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom a {
  color: #7d89a0;
  font-size: 0.83rem;
}

.footer-bottom div {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .nav {
    display: none;
    position: absolute;
    top: 122px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1rem 3%;
    flex-direction: column;
    align-items: flex-start;
    z-index: 12;
  }

  .nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .impact-grid,
  .segment-card,
  .coverage-grid,
  .banner-12 .banner-cta {
    grid-template-columns: 1fr;
  }

  .impact-cta {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 0;
    padding-top: 1rem;
  }

  .pillars,
  .impact-stats,
  .case-grid,
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .connector {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .intro-scroll-video {
    height: 150vh;
  }

  .utility-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 0.45rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pillars,
  .impact-stats,
  .case-grid,
  .cert-grid,
  .timeline,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .segment-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-layer {
    transform: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
