:root {
  --navy: #061731;
  --navy-soft: #0b2e60;
  --blue: #176bff;
  --blue-dark: #0c50c2;
  --cyan: #20d6d2;
  --ink: #132238;
  --muted: #5e6d82;
  --line: #dce6f2;
  --soft: #f4f8fd;
  --white: #fff;
  --shadow: 0 28px 80px rgba(15, 48, 91, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #071a3a;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(220, 230, 242, .78);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img { display: block; width: 150px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a {
  color: #526177;
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}
.desktop-nav a:hover { color: var(--blue); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 16px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  min-height: 680px;
  overflow: hidden;
  position: relative;
  color: #fff;
  background: linear-gradient(125deg, #05142c 0%, #082756 58%, #0c438b 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); }
.hero-glow-one { width: 460px; height: 460px; top: -190px; right: 7%; background: rgba(32, 214, 210, .19); }
.hero-glow-two { width: 560px; height: 560px; bottom: -370px; left: 18%; background: rgba(23, 107, 255, .3); }
.hero-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 680px;
  margin: auto;
  padding: 72px 0 76px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #a9c9f7;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 2px; border-radius: 2px; background: var(--cyan); }
.eyebrow-dark { color: #52708e; }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 6.5vw, 82px);
  line-height: .98;
  letter-spacing: -.06em;
}
.hero h1 em { color: #67e8e2; font-style: normal; }
.hero-lead {
  max-width: 670px;
  margin: 26px 0 0;
  color: #c8daf3;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--cyan); color: #05243c; box-shadow: 0 16px 38px rgba(32,214,210,.22); }
.button-primary:hover { background: #72eee9; }
.button-secondary { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; }
.button-secondary:hover { background: rgba(255,255,255,.14); }
.button-light { background: #fff; color: var(--navy); }
.button-outline-light { border-color: rgba(255,255,255,.25); color: #fff; }
.hero-note { max-width: 650px; margin: 20px 0 0; color: #91a8c8; font-size: 12px; }

.hero-panel {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 35px 90px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}
.panel-label { margin: 0 0 16px; color: #a9c9f7; font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.panel-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  margin-top: 12px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(3, 19, 42, .45);
}
.panel-card-featured { border-color: rgba(32,214,210,.35); background: linear-gradient(135deg, rgba(32,214,210,.13), rgba(3,19,42,.52)); }
.panel-number { color: var(--cyan); font-size: 13px; font-weight: 900; }
.panel-card strong { display: block; margin-bottom: 5px; color: #fff; font-size: 17px; }
.panel-card p { margin: 0; color: #a9bdd9; font-size: 13px; }
.panel-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.panel-stats div { padding: 12px 8px; text-align: center; }
.panel-stats strong { display: block; color: #fff; font-size: 12px; }
.panel-stats span { color: #8fa7c8; font-size: 10px; }

.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 24px;
}
.trust-inner p { margin: 0; color: #506078; font-size: 13px; font-weight: 760; text-align: center; }
.check { display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: 7px; border-radius: 50%; background: #e5fbf7; color: #07866f; }

.section { width: min(1180px, calc(100% - 40px)); margin: auto; padding: 110px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); align-items: end; gap: 70px; margin-bottom: 48px; }
.section-heading h2, .safety-copy h2, .faq h2 {
  max-width: 760px;
  margin: 0;
  color: #102038;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.05em;
}
.section-heading > p { margin: 0; color: var(--muted); font-size: 16px; }
.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.solution-card {
  min-height: 330px;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(25, 65, 121, .06);
}
.solution-card-primary { color: #fff; background: linear-gradient(145deg, #0a2b59, #0c50a7); box-shadow: 0 26px 70px rgba(13,72,148,.22); }
.solution-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.solution-tag { color: #58708e; font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.solution-card-primary .solution-tag { color: #89ebe5; }
.solution-arrow { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--soft); color: var(--blue); }
.solution-card-primary .solution-arrow { background: rgba(255,255,255,.1); color: #fff; }
.solution-card h3 { margin: 30px 0 10px; font-size: clamp(27px, 3vw, 36px); line-height: 1.1; letter-spacing: -.035em; }
.solution-card p { margin: 0 0 18px; color: var(--muted); }
.solution-card-primary p, .solution-card-primary li { color: #c8daf3; }
.solution-card ul { margin: 0 0 24px; padding-left: 20px; }
.solution-card li { margin: 5px 0; }
.solution-card a { margin-top: auto; color: var(--blue); font-weight: 850; text-decoration: none; }
.solution-card-primary a { color: #67e8e2; }

.process-wrap { overflow: hidden; color: #fff; background: var(--navy); }
.process { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; }
.process-copy h2 { margin: 0; font-size: clamp(38px, 5vw, 62px); line-height: 1.03; letter-spacing: -.05em; }
.process-copy > p:not(.eyebrow) { margin: 24px 0 30px; color: #a9bdd9; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.process-list li:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.process-list li > span { color: var(--cyan); font-size: 14px; font-weight: 900; }
.process-list strong { color: #fff; font-size: 19px; }
.process-list p { margin: 6px 0 0; color: #91a8c8; }

.safety { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 90px; }
.safety-copy > p:not(.eyebrow) { margin: 25px 0 18px; color: var(--muted); }
.safety-copy a { color: var(--blue); font-weight: 850; text-decoration: none; }
.safety-grid { display: grid; gap: 14px; }
.safety-grid article { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(135deg, #fff, #f7faff); }
.safety-grid article > span { color: var(--blue); font-size: 12px; font-weight: 900; }
.safety-grid h3 { margin: 10px 0 5px; font-size: 21px; }
.safety-grid p { margin: 0; color: var(--muted); }

.faq { padding-top: 20px; }
.faq-heading { grid-template-columns: 1fr; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.faq details { padding: 22px 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.faq summary { cursor: pointer; color: #1b2a40; font-weight: 850; }
.faq details p { margin: 15px 0 0; color: var(--muted); }

.final-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 100px;
  padding: clamp(38px, 6vw, 68px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  position: relative;
  border-radius: 30px;
  color: #fff;
  background: radial-gradient(circle at 90% 10%, rgba(32,214,210,.35), transparent 30%), linear-gradient(135deg, #071a3a, #0b4aa0);
  box-shadow: var(--shadow);
}
.final-cta h2 { max-width: 650px; margin: 0; font-size: clamp(38px, 5vw, 58px); line-height: 1.03; letter-spacing: -.05em; }
.final-cta > div > p:not(.eyebrow) { max-width: 650px; margin: 18px 0 0; color: #c1d4ef; }
.final-actions { display: flex; flex-wrap: wrap; gap: 10px; flex-shrink: 0; }

.site-footer { color: #9cafc8; background: #041226; }
.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding: 72px 0 55px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
}
.footer-brand img { width: 145px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 360px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { color: #fff; }
.footer-grid h3 { margin: 0 0 17px; color: #fff; font-size: 14px; }
.footer-grid a, .footer-grid > div > span { display: block; margin: 9px 0; color: #9cafc8; font-size: 13px; text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding: 22px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #758aa8;
  font-size: 12px;
}
.footer-bottom p { margin: 0; }

@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { max-width: 650px; }
  .section-heading, .process, .safety { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .header-inner { width: calc(100% - 28px); min-height: 70px; }
  .brand img { width: 128px; }
  .header-cta { min-height: 40px; padding: 8px 11px; font-size: 11px; }
  .hero-inner { width: calc(100% - 30px); padding: 56px 0; }
  .hero h1 { font-size: clamp(44px, 14vw, 64px); }
  .hero-actions, .hero-actions .button { width: 100%; }
  .hero-panel { padding: 17px; border-radius: 22px; }
  .panel-stats { grid-template-columns: 1fr; }
  .trust-inner { width: calc(100% - 30px); padding: 18px 0; grid-template-columns: 1fr; gap: 8px; }
  .trust-inner p { text-align: left; }
  .section { width: calc(100% - 30px); padding: 78px 0; }
  .section-heading { margin-bottom: 32px; }
  .solution-grid, .faq-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 300px; }
  .process-list li { grid-template-columns: 48px 1fr; }
  .final-cta { width: calc(100% - 24px); margin-bottom: 70px; padding: 34px 24px; border-radius: 24px; }
  .final-actions, .final-actions .button { width: 100%; }
  .footer-grid { width: calc(100% - 30px); grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { width: calc(100% - 30px); flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
