:root {
  --navy: #071521;
  --navy-2: #0b2233;
  --blue: #087ea4;
  --cyan: #2ec4d6;
  --ice: #e8f4f7;
  --muted: #6b7b86;
  --line: rgba(8, 40, 56, 0.12);
  --white: #ffffff;
  --bg: #f7fafb;
  --shadow: 0 20px 55px rgba(2, 28, 43, 0.11);
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; }

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

h1, h2, h3, strong, .brand, .btn, .eyebrow {
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: .98;
  letter-spacing: -0.055em;
  max-width: 930px;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p { color: #40515c; }

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 78px;
  z-index: 50;
  background: rgba(247, 250, 251, .87);
  border-bottom: 1px solid rgba(7, 21, 33, .08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img { width: 210px; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  font-size: .98rem;
}

.main-nav a {
  transition: color .2s ease;
}

.main-nav a:hover { color: var(--blue); }

.nav-cta {
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: 11px 18px;
}

.nav-cta:hover {
  background: var(--navy);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 9px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: .25s ease;
}

.hero {
  min-height: 100vh;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 82% 20%, rgba(46,196,214,.18), transparent 25%),
    radial-gradient(circle at 60% 80%, rgba(8,126,164,.1), transparent 28%),
    linear-gradient(180deg, #f8fbfc 0%, #eef6f8 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 24px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--cyan);
}

.hero-lead {
  max-width: 760px;
  font-size: 1.22rem;
  line-height: 1.75;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(7,21,33,.18);
}

.btn-primary:hover { background: var(--blue); }

.btn-secondary {
  background: rgba(255,255,255,.65);
  border-color: var(--line);
}

.full { width: 100%; }

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 660px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.hero-points div { padding-right: 18px; }

.hero-points strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 5px;
}

.hero-points span {
  color: var(--muted);
  font-size: .92rem;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.radar-card {
  width: min(100%, 475px);
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(155deg, #0c2637, #06121c);
  box-shadow: 0 36px 80px rgba(5,27,42,.3);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.radar-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -160px;
  top: -160px;
  background: rgba(46,196,214,.08);
}

.radar-head, .radar-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: .83rem;
}

.status-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #87e5ef;
}

.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #62d7e5;
  box-shadow: 0 0 16px #62d7e5;
}

.radar {
  width: min(100%, 370px);
  aspect-ratio: 1;
  margin: 30px auto;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(60,202,221,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60,202,221,.15) 1px, transparent 1px),
    radial-gradient(circle, rgba(46,196,214,.05), rgba(7,21,33,.2));
  background-size: 36px 36px;
  border: 1px solid rgba(126,224,236,.24);
}

.ring {
  position: absolute;
  border: 1px solid rgba(126,224,236,.25);
  border-radius: 50%;
  inset: 12%;
}
.ring-2 { inset: 27%; }
.ring-3 { inset: 42%; }

.sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 74%, rgba(84,213,228,.22) 86%, rgba(84,213,228,.75) 99%, transparent 100%);
  animation: spin 5s linear infinite;
}

.radar::before, .radar::after {
  content: "";
  position: absolute;
  background: rgba(126,224,236,.18);
}
.radar::before { width: 1px; height: 100%; left: 50%; }
.radar::after { height: 1px; width: 100%; top: 50%; }

.radar-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cyan);
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  box-shadow: 0 0 28px rgba(46,196,214,.5);
}

.point {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #9cf2f8;
  box-shadow: 0 0 16px #60d8e5;
  z-index: 3;
}

.point::after {
  content: attr(data-label);
  position: absolute;
  left: 16px;
  top: -7px;
  font-size: .72rem;
  color: #c5f4f7;
  white-space: nowrap;
}

.p1 { top: 27%; left: 25%; }
.p2 { top: 20%; right: 24%; }
.p3 { bottom: 31%; left: 32%; }
.p4 { bottom: 20%; right: 20%; }

.radar-footer {
  gap: 12px;
  color: #9bb1bd;
  font-weight: 600;
  flex-wrap: wrap;
}

@keyframes spin { to { transform: rotate(360deg); } }

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 86px;
  align-items: center;
  text-align: center;
  color: #64747e;
  font-weight: 600;
}

.trust-grid span:not(:last-child) {
  border-right: 1px solid var(--line);
}

.section { padding: 120px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-muted { background: var(--bg); }

.split-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.section-copy {
  font-size: 1.12rem;
  max-width: 710px;
}

.note-card {
  margin-top: 30px;
  padding: 28px;
  background: var(--ice);
  border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.note-card p { margin: 8px 0 0; }

.section-heading {
  max-width: 850px;
  margin-bottom: 52px;
}

.section-heading.light h2,
.section-heading.light p,
.section-dark p { color: #e6f1f4; }

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

.service-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, background .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.07);
}

.service-no {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #69d8e3;
  margin-bottom: auto;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.45rem;
  margin-top: 58px;
}

.service-card p { margin-bottom: 0; }

.accent-card {
  background: linear-gradient(145deg, rgba(46,196,214,.22), rgba(8,126,164,.12));
  border-color: rgba(85,222,236,.34);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.coverage-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 280px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(8,40,56,.06);
}

.flag-code {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--ice);
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  margin-bottom: 54px;
}

.coverage-card h3 { font-size: 1.5rem; margin-bottom: 14px; }

.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.process-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-item > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: .84rem;
  font-weight: 800;
}

.process-item h3 { margin-bottom: 8px; }
.process-item p { margin: 0; }

.why-section { border-top: 1px solid var(--line); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.feature span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ice);
  color: var(--blue);
  font-weight: 800;
}

.feature p { margin: 0; font-weight: 600; color: var(--navy); }

.contact-section {
  background:
    linear-gradient(135deg, rgba(46,196,214,.11), transparent 45%),
    #eaf4f7;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-copy h2 { max-width: 600px; }

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.contact-links a {
  padding: 20px 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(7,21,33,.09);
  border-radius: 16px;
  transition: transform .2s ease;
}

.contact-links a:hover { transform: translateX(4px); }

.contact-links span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  margin-bottom: 3px;
}

.contact-form {
  padding: 30px;
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

input, textarea {
  width: 100%;
  border: 1px solid #cfdbe0;
  border-radius: 12px;
  padding: 14px 15px;
  margin-top: 7px;
  font: inherit;
  color: var(--navy);
  background: #fbfdfe;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(8,126,164,.1);
}

textarea { resize: vertical; }

.form-note {
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 0;
}

.site-footer {
  padding: 72px 0 28px;
  background: #05101a;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 50px;
}

.footer-logo {
  width: 220px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-grid p { color: #94a7b1; max-width: 330px; }

.footer-grid strong {
  display: block;
  margin-bottom: 16px;
}

.footer-grid a {
  display: block;
  color: #9fb0b9;
  margin-bottom: 10px;
}

.footer-grid a:hover { color: var(--cyan); }

.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  color: #7f929c;
  font-size: .9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    background: #f7fafb;
    padding: 26px 24px 34px;
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle { display: block; }

  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: auto; }
  .hero-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel { justify-content: flex-start; }
  .radar-card { width: 100%; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout { gap: 30px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { height: 70px; }
  .brand img { width: 175px; }
  .main-nav { inset: 70px 0 auto 0; }

  .hero { padding: 120px 0 72px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
  h2 { font-size: clamp(2rem, 11vw, 3.3rem); }
  .hero-lead { font-size: 1.05rem; }

  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    padding: 14px 0;
  }

  .trust-grid span {
    padding: 12px 8px;
    border-right: 0 !important;
  }

  .section { padding: 82px 0; }
  .service-grid,
  .coverage-grid,
  .process-list,
  .feature-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card { min-height: 250px; }
  .coverage-card { min-height: 240px; }
  .process-item { grid-template-columns: 52px 1fr; padding: 22px; }
  .contact-form { padding: 22px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
