@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  --heading: #0a165e;
  --body: #585b6f;
  --accent: #2b4dff;
  --accent-soft: #eef1ff;
  --dark: #040d43;
  --dark-2: #1e2656;
  --line: #e2e3ec;
  --light: #f5f6f7;
  --white: #ffffff;
  --success: #1aa876;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  font-family: "Sora", Arial, sans-serif;
  background: var(--white);
  line-height: 1.7;
}

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

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

.topbar {
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
}

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

.topbar .container,
.navbar .container,
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(4, 13, 67, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  font-weight: 700;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--accent);
  border-radius: 6px;
  font-weight: 800;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
}

.navlinks a:hover,
.navlinks .active {
  color: #d2daff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--white);
  background: var(--accent);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(43, 77, 255, 0.22);
}

.btn.secondary {
  color: var(--heading);
  background: var(--white);
  border-color: var(--line);
}

.btn.dark {
  background: var(--dark);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 13, 67, 0.95) 0%, rgba(4, 13, 67, 0.82) 46%, rgba(4, 13, 67, 0.28) 100%),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero .container {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 680px) 1fr;
  align-items: center;
  gap: 48px;
  padding: 86px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #d2daff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--heading);
  line-height: 1.14;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(42px, 7vw, 78px);
  max-width: 760px;
}

.hero p {
  max-width: 640px;
  margin: 22px 0 34px;
  color: #e3e3ec;
  font-size: 18px;
}

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

.hero-panel {
  align-self: end;
  margin-bottom: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.hero-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
}

.hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #e3e3ec;
  font-size: 14px;
}

.hero-panel li {
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.partner-strip {
  position: relative;
  z-index: 4;
  margin-top: -42px;
}

.partner-strip .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(10, 22, 94, 0.1);
}

.partner-copy {
  display: grid;
  gap: 4px;
}

.partner-copy span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-copy strong {
  color: var(--heading);
  font-size: 20px;
  line-height: 1.25;
}

.partner-copy p {
  margin: 0;
  font-size: 14px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 78px;
  padding: 18px 24px;
  background: var(--accent-soft);
  border-radius: 6px;
}

.partner-logo img {
  width: 189px;
  height: auto;
}

.section {
  padding: 108px 0;
}

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

.section.dark {
  color: #ced0df;
  background: var(--dark);
}

.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.section-title {
  max-width: 760px;
  margin-bottom: 46px;
}

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

.section-title h2 {
  font-size: clamp(32px, 4.8vw, 54px);
}

.section-title p {
  margin: 16px 0 0;
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  min-height: 100%;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(10, 22, 94, 0.07);
}

.card.dark-card {
  color: #ced0df;
  background: var(--dark-2);
  border-color: rgba(255, 255, 255, 0.1);
}

.card.dark-card h3,
.card.dark-card h4 {
  color: var(--white);
}

.icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--accent);
  border-radius: 6px;
  font-size: 24px;
  font-weight: 800;
}

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

.card p {
  margin: 0;
}

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

.photo-stack {
  display: grid;
  gap: 18px;
}

.photo-stack img,
.wide-photo {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 20px 46px rgba(4, 13, 67, 0.18);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.stat {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--heading);
  font-size: 34px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}

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

.list li {
  position: relative;
  padding-left: 30px;
}

.list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.phase {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.phase:last-child {
  border-bottom: 0;
}

.phase-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  color: var(--white);
  background: var(--accent);
  font-weight: 800;
}

.phase h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.band {
  padding: 56px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(43, 77, 255, 0.96), rgba(10, 22, 94, 0.96)),
    url("https://images.unsplash.com/photo-1590247813693-5541d1c609fd?auto=format&fit=crop&w=1600&q=82") center / cover;
  border-radius: 6px;
}

.band h2 {
  color: var(--white);
}

.band p {
  max-width: 760px;
  color: #e3e3ec;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.footer {
  color: #ced0df;
  background: var(--dark);
}

.footer-top {
  padding: 70px 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer h3,
.footer h4 {
  color: var(--white);
}

.footer p {
  max-width: 560px;
  margin: 12px 0 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  font-size: 14px;
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 13, 67, 0.94), rgba(4, 13, 67, 0.62)),
    url("https://images.unsplash.com/photo-1565891741441-64926e441838?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.page-hero .container {
  min-height: 390px;
  padding: 80px 0;
  display: grid;
  align-items: center;
}

.page-hero h1 {
  max-width: 800px;
  color: var(--white);
  font-size: clamp(38px, 6vw, 68px);
}

.page-hero p {
  max-width: 700px;
  margin: 18px 0 0;
  color: #e3e3ec;
  font-size: 18px;
}

.contact-box {
  display: grid;
  gap: 16px;
}

.contact-line {
  padding: 20px;
  background: var(--accent-soft);
  border-radius: 6px;
  color: var(--heading);
  font-weight: 700;
}

form {
  display: grid;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  color: var(--heading);
  background: var(--white);
}

textarea {
  min-height: 138px;
  resize: vertical;
}

@media (max-width: 960px) {
  .navbar .container,
  .split,
  .grid.three,
  .grid.two,
  .hero .container,
  .stats {
    grid-template-columns: 1fr;
  }

  .navbar .container,
  .topbar .container,
  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .navlinks {
    width: 100%;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 22px;
  }

  .hero .container {
    min-height: auto;
  }

  .hero-panel {
    align-self: auto;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .partner-strip .container {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .topbar-list {
    gap: 8px;
  }

  .brand {
    min-height: 72px;
  }

  .brand img {
    width: 112px;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .band {
    padding: 34px 24px;
  }

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