:root {
  --navy: #243b78;
  --navy2: #182a57;
  --mint: #8fd1c2;
  --coral: #d95c63;
  --ink: #172033;
  --muted: #667085;
  --bg: #f7fbfc;
  --card: #fff;
  --line: #e6edf2;
  --shadow: 0 20px 50px rgba(24, 42, 87, .12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

img {
  max-width: 100%;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(143, 209, 194, .9);
  outline-offset: 3px;
}

.topbar {
  background: var(--navy2);
  color: #fff;
  font-size: .9rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.brand img {
  display: block;
  height: 58px;
  max-width: 240px;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: .95rem;
}

.menu a:hover,
.menu a.active {
  color: var(--coral);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  background: var(--coral);
  color: #fff !important;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  box-shadow: 0 14px 25px rgba(217, 92, 99, .25);
  border: 0;
  cursor: pointer;
}

.btn.secondary {
  background: var(--navy);
  box-shadow: 0 14px 25px rgba(36, 59, 120, .22);
}

.btn.light {
  background: #fff;
  color: var(--navy) !important;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy2);
  font-size: 25px;
  line-height: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 18%, rgba(143, 209, 194, .38), transparent 30%), linear-gradient(135deg, #fff 0%, #eef7fa 46%, #eaf2ff 100%);
  padding: 82px 0 70px;
}

.hero:after {
  content: "";
  position: absolute;
  right: -160px;
  top: 80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(36, 59, 120, .14), rgba(143, 209, 194, .22));
  filter: blur(2px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .85rem;
  box-shadow: 0 8px 20px rgba(24, 42, 87, .06);
}

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

h1 {
  font-size: clamp(2.45rem, 5vw, 4.45rem);
  line-height: 1.03;
  margin-bottom: 20px;
  color: var(--navy2);
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.85rem);
  line-height: 1.14;
  margin-bottom: 14px;
  color: var(--navy2);
}

h3 {
  margin-bottom: 9px;
  color: var(--navy);
}

p {
  margin-bottom: 18px;
}

.lead {
  font-size: 1.16rem;
  color: #42506a;
  max-width: 820px;
}

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

.hero-card,
.panel {
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(230, 237, 242, .95);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  max-height: 130px;
  object-fit: contain;
  margin-bottom: 24px;
}

.card-title {
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--navy);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.metric strong {
  display: block;
  color: var(--coral);
  font-size: 1.8rem;
  line-height: 1;
}

.section {
  padding: 82px 0;
}

.section.white {
  background: #fff;
}

.section.dark {
  background: linear-gradient(135deg, var(--navy2), var(--navy));
  color: #fff;
}

.section.dark h2,
.section.dark h3 {
  color: #fff;
}

.section.dark .lead {
  color: #d8e6ff;
}

.section.dark .card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  color: #edf4ff;
}

.section-head {
  max-width: 860px;
  margin-bottom: 36px;
}

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

.card,
.feature-grid > div,
.steps > div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 26px rgba(24, 42, 87, .06);
  transition: .25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(143, 209, 194, .42), rgba(36, 59, 120, .12));
  color: var(--navy2);
  font-size: .9rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.list.compact {
  gap: 8px;
  margin-bottom: 0;
}

.list span {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list span:before {
  content: "✓";
  color: var(--coral);
  font-weight: 900;
}

.pillbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  background: #eef7fa;
  color: var(--navy);
  border: 1px solid #d8eeee;
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 800;
  font-size: .9rem;
}

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

.industry {
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 14px;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(24, 42, 87, .05);
}

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

.steps strong {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
}

.cta {
  background: linear-gradient(135deg, var(--navy2), var(--navy));
  color: #fff;
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta h2 {
  color: #fff;
}

.cta p {
  max-width: 720px;
}

.footer {
  background: #0e1a36;
  color: #d9e5ff;
  padding: 48px 0 20px;
}

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

.footer img {
  max-width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
}

.footer h4 {
  color: #fff;
  margin: 0 0 12px;
}

.footer a {
  display: block;
  color: #d9e5ff;
  margin: 8px 0;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 32px;
  padding-top: 18px;
  color: #a8b7d6;
}

.page-hero {
  background: linear-gradient(135deg, #f9feff, #eef5ff);
  padding: 72px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.form label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy2);
  font-weight: 800;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: #fff;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form button {
  margin-top: 4px;
}

.symbol-img {
  width: min(220px, 70%);
  display: block;
  margin: 0 auto 22px;
}

@media (max-width: 980px) {
  .mobile-toggle {
    display: grid;
    place-items: center;
  }

  .menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 4%;
    border-bottom: 1px solid var(--line);
    display: none;
    box-shadow: 0 18px 30px rgba(24, 42, 87, .08);
  }

  .menu.open {
    display: flex;
  }

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

  .cards,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps,
  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .cta {
    display: block;
  }
}

@media (max-width: 620px) {
  .topbar .container {
    display: block;
  }

  .cards,
  .feature-grid,
  .steps,
  .metric-grid,
  .footer-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .brand img {
    height: 45px;
  }

  .section {
    padding: 56px 0;
  }

  .page-hero {
    padding: 54px 0;
  }

  .hero-card,
  .panel,
  .card,
  .feature-grid > div,
  .steps > div,
  .cta {
    padding: 24px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .btn {
    width: 100%;
  }
}
