:root {
  --navy: #262262;
  --blue: #0f5d9e;
  --cyan: #1d9cd3;
  --sky: #65b7e0;
  --ink: #172033;
  --muted: #5e6b7e;
  --line: #dfeaf3;
  --bg: #ffffff;
  --soft: #f4f9fd;
  --soft-2: #eef6fb;
  --shadow: 0 22px 60px rgba(15, 93, 158, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(101, 183, 224, 0.18), transparent 34rem),
    radial-gradient(circle at top right, rgba(38, 34, 98, 0.08), transparent 30rem),
    #fff;
  line-height: 1.6;
}

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

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

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

.section-pad {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 234, 243, 0.9);
}

.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 190px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #35425a;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.nav-cta {
  color: #fff !important;
  background: linear-gradient(135deg, var(--cyan), var(--navy));
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(29, 156, 211, 0.22);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--soft);
  border-radius: 14px;
  padding: 11px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 2px;
}

.hero {
  padding-top: 92px;
  overflow: hidden;
}

.hero-grid,
.feature-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
}

.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

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

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

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h3 {
  color: var(--navy);
  line-height: 1.15;
}

.hero-text,
.section-heading p,
.feature-copy > p,
.cta-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--navy));
  box-shadow: 0 18px 34px rgba(29, 156, 211, 0.26);
}

.btn-secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(38, 34, 98, 0.08);
}

.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: #41516a;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.image-card,
.feature-image,
.mini-image {
  position: relative;
}

.image-card img,
.feature-image img,
.mini-image img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--soft);
}

.image-card {
  isolation: isolate;
}

.image-card::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(29, 156, 211, 0.24), rgba(38, 34, 98, 0.12));
  border-radius: 42px;
  filter: blur(4px);
}

.image-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.stats-strip {
  padding: 24px 0;
}

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

.stats-grid div {
  min-height: 122px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(15, 93, 158, 0.08);
}

.stats-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 1.5rem;
}

.stats-grid span {
  color: #46556e;
  font-weight: 800;
  line-height: 1.35;
}

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

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

.capability-card,
.process-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px rgba(38, 34, 98, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--navy));
  border-radius: 16px;
  font-weight: 900;
}

.capability-card p,
.process-card p,
.bullet-grid p,
.software-list p,
.tick-list {
  color: var(--muted);
}

.feature-section {
  padding: 96px 0;
}

.alt-bg {
  background:
    linear-gradient(180deg, rgba(244, 249, 253, 0.82), rgba(255, 255, 255, 0.9));
  border-top: 1px solid rgba(223, 234, 243, 0.6);
  border-bottom: 1px solid rgba(223, 234, 243, 0.6);
}

.bullet-grid,
.software-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.bullet-grid div,
.software-list div,
.highlight-box {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.bullet-grid h3,
.software-list h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.tick-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #fff;
  background: var(--cyan);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.highlight-box {
  margin-top: 26px;
  background:
    linear-gradient(135deg, rgba(29, 156, 211, 0.1), rgba(38, 34, 98, 0.06)),
    #fff;
}

.highlight-box h3 {
  margin-bottom: 8px;
}

.highlight-box p {
  margin-bottom: 0;
}

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

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.mini-image {
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 30px rgba(15, 93, 158, 0.06);
}

.mini-image img {
  box-shadow: none;
  border-radius: 22px;
}

.mini-image span {
  display: block;
  padding: 14px 4px 4px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.cta-section {
  padding: 96px 0;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(101, 183, 224, 0.5), transparent 18rem),
    linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 38px;
  box-shadow: 0 28px 70px rgba(38, 34, 98, 0.25);
}

.cta-card h2,
.cta-card .eyebrow,
.cta-card p {
  color: #fff;
}

.cta-card p {
  opacity: 0.86;
}

.contact-panel {
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  backdrop-filter: blur(16px);
}

.contact-link {
  display: block;
  margin-bottom: 12px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  font-weight: 800;
  word-break: break-word;
}

.site-footer {
  padding: 58px 0 28px;
  background: #f6f9fc;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}

.footer-grid img {
  width: 220px;
  margin-bottom: 18px;
}

.footer-grid p {
  max-width: 460px;
  color: var(--muted);
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: #526176;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  color: #66758a;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

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

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

@media (max-width: 1080px) {
  .site-nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .capability-grid,
  .process-grid,
  .image-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-image {
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand img {
    height: 44px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: var(--soft);
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    letter-spacing: -0.055em;
  }

  .section-pad,
  .feature-section,
  .cta-section {
    padding: 64px 0;
  }

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

  .bullet-grid,
  .software-list,
  .cta-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    border-radius: 26px;
  }

  .contact-panel {
    padding: 16px;
  }
}

@media (max-width: 560px) {
  .capability-grid,
  .process-grid,
  .image-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .process-card {
    padding: 22px;
  }

  .trust-row span {
    width: 100%;
    justify-content: center;
  }

  .hero-copy {
    text-align: left;
  }

  .section-heading {
    text-align: left;
  }

  .footer-grid img {
    width: 190px;
  }
}
