:root {
  --navy: #071b3a;
  --blue: #0796e8;
  --blue-dark: #084bb5;
  --slate: #66738a;
  --light: #f6f9fd;
  --line: #dce6f2;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 27, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 230, 242, 0.7);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  height: 54px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--slate);
}

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

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

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 24px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.22rem;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.hero-text,
.section > p,
.contact p,
.service-card p,
.process-step p {
  color: var(--slate);
  line-height: 1.75;
}

.hero-text {
  max-width: 650px;
  font-size: 1.12rem;
  margin-bottom: 34px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 38px rgba(7, 150, 232, 0.24);
}

.secondary {
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-panel {
  min-height: 470px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 20%, rgba(7, 150, 232, 0.22), transparent 28%),
    linear-gradient(145deg, #ffffff, #eef6ff);
  box-shadow: var(--shadow);
  border: 1px solid rgba(220, 230, 242, 0.9);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -80px;
  background: linear-gradient(135deg, rgba(7, 150, 232, 0.16), rgba(8, 75, 181, 0.18));
  border-radius: 52px;
  transform: rotate(45deg);
}

.status-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
}

.status-dot {
  width: 13px;
  height: 13px;
  display: inline-block;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(7, 150, 232, 0.12);
  margin-bottom: 20px;
}

.status-card p {
  color: var(--slate);
  margin-bottom: 8px;
}

.status-card strong {
  font-size: 4rem;
  letter-spacing: -0.06em;
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric-grid div {
  background: rgba(7, 27, 58, 0.92);
  color: var(--white);
  border-radius: 22px;
  padding: 20px;
}

.metric-grid span {
  display: block;
  color: #9fb1cc;
  margin-bottom: 8px;
}

.metric-grid strong {
  font-size: 1.25rem;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 74px 24px;
}

.intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: end;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.service-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 150, 232, 0.35);
  box-shadow: 0 20px 50px rgba(7, 27, 58, 0.08);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(7,150,232,0.12), rgba(8,75,181,0.16));
  color: var(--blue-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 24px;
}

.process {
  background: var(--light);
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
}

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

.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
}

.process-step span {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 14px;
}

.why-card {
  border-radius: 36px;
  padding: 46px;
  background: linear-gradient(135deg, var(--navy), #0a3168);
  color: var(--white);
  box-shadow: var(--shadow);
}

.why-card h2 {
  max-width: 740px;
}

.why-card ul {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  list-style: none;
}

.why-card li {
  padding-left: 30px;
  position: relative;
  color: #d7e3f5;
}

.why-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
}

.contact {
  margin: 40px auto 0;
  padding: 86px 24px;
  background:
    radial-gradient(circle at 10% 20%, rgba(7,150,232,0.18), transparent 32%),
    linear-gradient(180deg, #f7fbff, #ffffff);
  text-align: center;
}

.contact-content {
  max-width: 760px;
  margin: 0 auto;
}

.footer {
  padding: 30px 24px;
  text-align: center;
  color: var(--slate);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .hero,
  .intro {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-panel {
    min-height: 390px;
  }

  .service-grid,
  .process-grid,
  .why-card ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand img {
    height: 42px;
  }

  .nav-links {
    font-size: 0.85rem;
  }

  .hero {
    padding-bottom: 54px;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-card,
  .process-step,
  .why-card {
    padding: 24px;
    border-radius: 24px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }
}
