:root {
  --bg: #091c2f;
  --bg-2: #0d2a46;
  --bg-3: #123a62;
  --surface: #ffffff;
  --surface-soft: #eef6ff;
  --navy-900: #071827;
  --navy-800: #0e2440;
  --navy-700: #153d63;
  --navy-600: #1f548e;
  --navy-500: #3f7ac5;
  --sky-200: #badcff;
  --sky-100: #dfeeff;
  --ink: #0f2340;
  --ink-soft: #4f647d;
  --white: #ffffff;
  --line: rgba(19, 47, 74, 0.08);
  --shadow: 0 24px 52px rgba(2, 10, 19, 0.2);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 38%, var(--surface-soft) 38%, var(--surface-soft) 100%);
  color: var(--ink);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(126, 178, 255, 0.18), transparent 26%);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--surface-soft);
}

.services-section {
  background: linear-gradient(180deg, var(--surface-soft) 0%, #f7faff 100%);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--sky-200);
}

.eyebrow-dark {
  color: var(--navy-700);
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  color: var(--ink);
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.9rem, 5vw, 5rem);
  letter-spacing: -0.07em;
  color: var(--white);
}

h2 {
  font-size: clamp(2.1rem, 3vw, 3.3rem);
  letter-spacing: -0.05em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 1rem 1.7rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #87c9ff, #3d7ec4);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(61, 126, 195, 0.35);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 28, 47, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  border-radius: 16px;
  background: transparent;
  color: var(--white);
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -0.08em;
  box-shadow: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-text strong {
  font-size: 1.08rem;
  color: var(--white);
}

.brand-text small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav .button {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 9px 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  margin: 6px 0;
}

.hero {
  position: relative;
  padding: 82px 0 56px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 34%, var(--bg-3) 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  background: rgba(116, 180, 255, 0.12);
  top: -170px;
  right: -90px;
}

.hero::after {
  width: 440px;
  height: 440px;
  background: rgba(153, 210, 255, 0.08);
  bottom: -170px;
  left: -90px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 36px;
}

.hero-copy .lead {
  max-width: 640px;
  font-size: 1.07rem;
  color: rgba(255, 255, 255, 0.76);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.mini-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-pills span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(119, 224, 155, 0.12);
  border: 1px solid rgba(119, 224, 155, 0.25);
  color: #aff5c3;
  font-size: 0.74rem;
  font-weight: 700;
}

.signal {
  color: #7ef0aa;
  font-size: 1.1rem;
}

.panel-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.brand-box {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #dfeeff, #7eb8ff);
  color: var(--navy-900);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.08em;
}

.panel-brand strong {
  display: block;
  color: var(--white);
  font-size: 1.28rem;
}

.panel-brand small {
  color: rgba(255, 255, 255, 0.7);
}

.score-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.score-card div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px 14px;
}

.score-card span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.score-card strong {
  display: block;
  color: var(--white);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.panel-list {
  display: grid;
  gap: 12px;
}

.panel-list div {
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-list span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.panel-list strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.stats-bar {
  background: linear-gradient(135deg, #0a233d, #1a4a7c);
  padding: 18px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 16px;
}

.stat-item strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  margin-bottom: 6px;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  color: var(--ink);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.value-card {
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 16px 24px rgba(12, 28, 42, 0.04);
}

.value-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(61, 122, 197, 0.18), rgba(100, 166, 235, 0.22));
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px 22px;
  box-shadow: 0 14px 28px rgba(13, 36, 63, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.value-card:hover,
.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px rgba(12, 28, 42, 0.08);
}

.card-index {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #dfeeff, #c6ddff);
  color: var(--navy-900);
  font-weight: 800;
  margin-bottom: 18px;
}

.segment-section {
  background: linear-gradient(135deg, #081d30 0%, #12365f 100%);
}

.segment-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.segment-copy h2,
.segment-copy p,
.segment-copy li {
  color: var(--white);
}

.segment-copy ul {
  margin: 20px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.segment-panels {
  display: grid;
  gap: 16px;
}

.mini-panel {
  border-radius: 24px;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dark-panel {
  background: rgba(255, 255, 255, 0.04);
}

.light-panel {
  background: linear-gradient(135deg, #edf5ff, #dfeeff);
  border-color: rgba(20, 47, 73, 0.08);
}

.light-panel strong,
.light-panel span {
  color: var(--navy-900);
}

.mini-panel strong {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.mini-panel span {
  color: rgba(255, 255, 255, 0.7);
}

.process-section {
  background: var(--surface-soft);
}

.timeline {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 53, 93, 0.08);
  border-radius: 26px;
  padding: 24px 22px;
  box-shadow: 0 12px 20px rgba(9, 26, 45, 0.04);
}

.timeline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
}

.timeline-item h3 {
  margin-bottom: 8px;
}

.cta-section {
  background: var(--surface-soft);
  padding-top: 0;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #0d2441 0%, #163f66 100%);
  border-radius: 28px;
  padding: 34px 34px;
  box-shadow: var(--shadow);
}

.cta-box h2,
.cta-box .eyebrow {
  color: var(--white);
}

.contact-section {
  background: var(--surface-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 28px;
  align-items: stretch;
}

.contact-panel,
.map-panel {
  border-radius: 28px;
  background: var(--white);
  border: 1px solid rgba(21, 47, 75, 0.08);
  box-shadow: 0 18px 28px rgba(9, 26, 45, 0.05);
}

.contact-panel {
  padding: 30px 28px;
}

.contact-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.contact-list li {
  padding: 16px 14px;
  border-radius: 18px;
  background: #f5f9ff;
  border: 1px solid rgba(21, 47, 75, 0.06);
}

.contact-list span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list a,
.contact-list p {
  color: var(--ink);
  font-weight: 600;
  margin: 0;
}

.map-panel {
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  display: inline-block;
  padding: 20px 22px;
  color: var(--navy-800);
  font-weight: 700;
}

.site-footer {
  background: #071a2d;
  color: rgba(255, 255, 255, 0.8);
  padding: 28px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-wrap strong {
  color: var(--white);
}

.footer-wrap p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 980px) {
  .hero-grid,
  .segment-wrap,
  .contact-grid,
  .cta-box {
    display: grid;
    grid-template-columns: 1fr;
  }

  .value-grid,
  .service-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px;
    background: rgba(10, 26, 42, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .button {
    margin-left: 0;
    width: 100%;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .value-grid,
  .service-grid,
  .stats-grid,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    gap: 14px;
  }

  .footer-wrap {
    display: grid;
    text-align: center;
  }
}

.contact-list a,
.contact-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.map-card {
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.map-link {
  display: block;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--green-800);
  text-align: center;
  background: rgba(13, 58, 42, 0.03);
}

.site-footer {
  padding: 30px 0 42px;
  background: #0a221b;
  color: rgba(255, 255, 255, 0.8);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-wrap strong {
  color: white;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .process-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 18px 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .button {
    width: 100%;
    margin-left: 0;
  }

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

  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 76px 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .card-grid,
  .process-grid,
  .metric-grid,
  .info-grid,
  .feature-grid,
  .trust-stats {
    grid-template-columns: 1fr;
  }

  .cta-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-text small {
    font-size: 0.7rem;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }
}
