
:root {
  --navy: #0f2a5f;
  --navy-2: #0b1f48;
  --blue: #1f76c2;
  --cyan: #8fd1e6;
  --light: #f5f8fc;
  --white: #ffffff;
  --text: #1d2a3a;
  --muted: #607086;
  --border: #dce5ef;
  --shadow: 0 18px 45px rgba(15, 42, 95, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 229, 239, 0.9);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 44px;
  object-fit: cover;
  object-position: 50% 15%;
  border-radius: 10px;
}

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

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

.brand-text span {
  color: var(--blue);
  font-size: 0.78rem;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-weight: 600;
  color: #314056;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  color: var(--navy);
  font-size: 1.35rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 88% 12%, rgba(143, 209, 230, 0.34), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f6f9fd 58%, #eef5fb 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(31, 118, 194, 0.14);
}

.hero::before {
  width: 520px;
  height: 520px;
  right: -210px;
  top: -160px;
}

.hero::after {
  width: 360px;
  height: 360px;
  right: -100px;
  top: -70px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 64px;
}

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

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

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.5rem, 5.7vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--blue);
}

.hero-copy {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.1rem;
  margin: 24px 0 30px;
}

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

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

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

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 26px rgba(15, 42, 95, 0.22);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border);
}

.hero-card {
  background: linear-gradient(145deg, var(--navy), #153f85);
  color: #fff;
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(143, 209, 230, 0.18);
}

.logo-panel {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  position: relative;
  z-index: 2;
}

.logo-panel img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.metric {
  text-align: center;
  padding: 15px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.metric strong {
  display: block;
  font-size: 1.35rem;
}

.metric span {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  margin-top: 4px;
}

.section {
  padding: 88px 0;
}

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

.section-head {
  max-width: 730px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 14px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 28px rgba(15, 42, 95, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eaf5fb, #d9edf8);
  color: var(--navy);
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.card h3 {
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.card p {
  color: var(--muted);
  margin: 0 0 18px;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.visual-box {
  min-height: 390px;
  background: linear-gradient(150deg, var(--navy), #16498e);
  border-radius: 30px;
  padding: 34px;
  color: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.visual-box::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(143, 209, 230, 0.15);
}

.visual-box h3 {
  position: relative;
  margin: 0;
  font-size: 2rem;
  max-width: 390px;
}

.data-bars {
  position: relative;
  display: flex;
  align-items: end;
  gap: 12px;
  min-height: 160px;
}

.data-bars span {
  flex: 1;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(#9bd8e8, #2f88cb);
}

.data-bars span:nth-child(1) { height: 36%; }
.data-bars span:nth-child(2) { height: 58%; }
.data-bars span:nth-child(3) { height: 47%; }
.data-bars span:nth-child(4) { height: 79%; }
.data-bars span:nth-child(5) { height: 66%; }
.data-bars span:nth-child(6) { height: 100%; }

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: #4f6076;
}

.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e6f3fb;
  color: var(--blue);
  font-weight: 900;
}

.cta {
  padding: 66px 0;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: #fff;
}

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

.cta h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta p {
  margin: 0;
  color: rgba(255,255,255,0.74);
}

.cta .btn-secondary {
  flex: 0 0 auto;
}

.site-footer {
  background: #07162f;
  color: rgba(255,255,255,0.8);
  padding: 52px 0 24px;
}

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

.footer-grid h4 {
  color: #fff;
  margin: 0 0 14px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255,255,255,0.66);
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 34px;
  padding-top: 20px;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.page-hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 90% 15%, rgba(143, 209, 230, 0.32), transparent 25%),
    linear-gradient(135deg, #fff, #f3f8fc);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
  margin: 22px 0 0;
}

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

.info-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.info-panel h3 {
  color: var(--navy);
  margin-top: 0;
}

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

.process-card {
  counter-increment: steps;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.process-card::before {
  content: "0" counter(steps);
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 14px;
}

.process-card h3 {
  color: var(--navy);
  margin: 0 0 10px;
}

.coming-soon {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at 80% 20%, rgba(143, 209, 230, 0.30), transparent 26%),
    linear-gradient(145deg, #ffffff, #eef5fb);
}

.coming-card {
  width: min(760px, 100%);
  text-align: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 54px 34px;
  box-shadow: var(--shadow);
}

.coming-card h1 {
  color: var(--navy);
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  margin: 0;
}

.coming-card p {
  color: var(--muted);
  max-width: 580px;
  margin: 18px auto 28px;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-links {
    position: absolute;
    top: 78px;
    left: 4%;
    right: 4%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    display: none;
  }

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

  .nav-links a {
    padding: 10px 8px;
  }

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

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

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

@media (max-width: 640px) {
  .brand-text strong {
    font-size: 0.88rem;
  }

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

  .hero {
    padding-top: 64px;
  }

  .cards,
  .info-grid,
  .process,
  .metric-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 68px 0;
  }

  .hero-card {
    padding: 20px;
  }
}
