:root {
  color-scheme: dark;
  --blue-950: #06102f;
  --blue-900: #0a1b4d;
  --blue-800: #0e2566;
  --blue-700: #153287;
  --blue-500: #2b6bff;
  --blue-300: #8ab4ff;
  --white: #ffffff;
  --soft-white: rgba(255, 255, 255, 0.75);
  --glass: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top, rgba(43, 107, 255, 0.18), transparent 55%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3,
.eyebrow {
  font-family: "Sora", "Inter", sans-serif;
  letter-spacing: 0.02em;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(6, 16, 47, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

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

.nav {
  display: flex;
  gap: 20px;
  font-weight: 500;
  color: var(--soft-white);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--blue-500);
  color: var(--white);
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 12px 30px rgba(43, 107, 255, 0.35);
}

.button:hover {
  transform: translateY(-2px);
  background: #3d78ff;
}

.button--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.hero {
  padding: 110px 0 80px;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--blue-300);
  font-weight: 600;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--soft-white);
  margin-bottom: 26px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--soft-white);
}

.hero__card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(4, 10, 30, 0.35);
}

.hero__card h3 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.hero__card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--soft-white);
}

.hero__card-footer {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.95rem;
}

.hero__card-footer strong {
  font-size: 2rem;
  color: var(--white);
}

.section {
  padding: 90px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 50px;
}

.section__header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.section__header p {
  color: var(--soft-white);
  max-width: 720px;
  margin: 0 auto;
}

.services__header {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: end;
  margin-bottom: 40px;
}

.services__header .eyebrow {
  margin-bottom: 12px;
}

.services__lead {
  color: var(--soft-white);
  font-size: 1.05rem;
}

.services__list {
  display: grid;
  gap: 22px;
}

.service-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: start;
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.service-row:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 50px rgba(5, 12, 35, 0.35);
}

.service-row__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--blue-300);
}

.service-row__icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-row__content {
  display: grid;
  gap: 12px;
}

.service-row__content p {
  color: var(--soft-white);
}

.service-row__list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--soft-white);
}

.service-row__list li::before {
  content: "•";
  margin-right: 8px;
  color: var(--blue-300);
}

.service-row__actions {
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 64px 1fr;
  }

  .service-row__actions {
    grid-column: 1 / -1;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.card {
  padding: 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, border 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.card p {
  color: var(--soft-white);
}

.showcase-grid {
  display: grid;
  gap: 28px;
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(10, 27, 77, 0.9), rgba(21, 50, 135, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(5, 12, 35, 0.45);
}

.showcase-content {
  display: grid;
  gap: 14px;
  align-content: center;
}

.tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue-300);
  font-weight: 600;
}

.showcase-content p {
  color: var(--soft-white);
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


.section--highlight {
  background: linear-gradient(135deg, rgba(21, 50, 135, 0.55), rgba(10, 27, 77, 0.4));
}

.split {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 24px;
  color: var(--soft-white);
}

.checklist li::before {
  content: "✔";
  margin-right: 10px;
  color: var(--blue-300);
}

.stats {
  display: grid;
  gap: 18px;
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}

.stat span {
  color: var(--soft-white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 14px;
  font-weight: 600;
}

.cta {
  padding: 70px 0;
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(43, 107, 255, 0.25), rgba(6, 16, 47, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--soft-white);
}

.footer__inner img {
  height: 40px;
}

@media (max-width: 768px) {
  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    padding: 90px 0 60px;
  }

  .hero__grid {
    gap: 36px;
  }

  .hero__actions,
  .hero__badges {
    gap: 12px;
  }

  .section {
    padding: 70px 0;
  }

  .section__header {
    margin-bottom: 36px;
  }

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

  .service-row {
    padding: 26px;
  }

  .cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .topbar__inner {
    padding: 14px 0;
  }

  .brand img {
    height: 42px;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .hero__actions,
  .cta__actions {
    width: 100%;
  }

  .hero__actions .button,
  .cta__actions .button,
  .service-row__actions .button {
    width: 100%;
  }

  .hero__card {
    padding: 26px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-row__icon {
    width: 56px;
    height: 56px;
  }

  .cta__inner {
    padding: 28px;
  }
}

.footer__links {
  display: flex;
  gap: 16px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 80px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
