* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background: #f7f4ef;
  color: #111827;
  line-height: 1.6;
}

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

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

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

.section {
  padding: 70px 0;
}

/* HEADER */
.site-header {
  background: #06111f;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.logo img {
  width: 155px;
  height: auto;
}

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

.nav-links a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.nav-links a:hover,
.active-link {
  color: #2f80ff !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 22px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #06111f 0%, #0f2542 55%, #f7f4ef 55%);
  color: white;
}

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

.hero-logo {
  width: 210px;
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 700;
  color: #2f80ff;
  margin: 0 0 12px;
}

.eyebrow.light {
  color: #9cc3ff;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  margin: 0 0 20px;
  letter-spacing: -2px;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -1px;
}

h3 {
  margin: 0 0 10px;
}

p {
  margin-top: 0;
}

.lead {
  font-size: 18px;
  max-width: 680px;
  color: rgba(255,255,255,0.88);
}

.lead.small {
  color: #4b5563;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s ease;
}

.btn.primary {
  background: #2f80ff;
  color: white;
}

.btn.dark {
  background: #06111f;
  color: white;
}

.btn.light-btn {
  background: white;
  color: #06111f;
}

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

.note {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 20px;
}

.hero-card {
  background: white;
  color: #111827;
  padding: 36px;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.dark-card-logo {
  width: 260px;
  margin-bottom: 28px;
}

.hero-card p {
  color: #4b5563;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-list span {
  background: #eef4ff;
  color: #0f2542;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

/* TRUST STRIP */
.trust-strip {
  background: white;
  padding: 28px 0;
}

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

.trust-grid div {
  padding: 20px;
  background: #f7f4ef;
  border-radius: 18px;
}

.trust-grid strong {
  display: block;
  margin-bottom: 6px;
  color: #06111f;
}

.trust-grid span {
  color: #4b5563;
  font-size: 14px;
}

/* SECTIONS */
.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-title p {
  color: #4b5563;
}

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

.preview-card {
  background: white;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  min-height: 250px;
}

.preview-card span {
  color: #2f80ff;
  font-weight: 800;
}

.preview-card h3 {
  margin-top: 34px;
  color: #06111f;
}

.preview-card p {
  color: #4b5563;
  font-size: 14px;
}

.center-button {
  text-align: center;
  margin-top: 32px;
}

/* SOFT SECTION */
.soft {
  background: white;
}

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

.highlight-card {
  background: #06111f;
  color: white;
  padding: 34px;
  border-radius: 26px;
}

.highlight-card ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

.highlight-card li {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.85);
}

/* PROCESS */
.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  background: white;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
}

.step span {
  width: 36px;
  height: 36px;
  background: #2f80ff;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.step p {
  color: #4b5563;
}

/* CTA */
.cta-band {
  background: #06111f;
}

.cta-card {
  background: linear-gradient(135deg, #0f2542, #2f80ff);
  color: white;
  padding: 42px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-card p {
  color: rgba(255,255,255,0.85);
}

/* CONTACT */
.contact {
  background: #0b1220;
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact-logo {
  width: 260px;
  margin-bottom: 24px;
}

.contact-card {
  background: white;
  color: #111827;
  padding: 32px;
  border-radius: 26px;
}

.contact-card a,
.contact-card span {
  display: block;
  margin-bottom: 12px;
  color: #374151;
}

.buttons.column {
  flex-direction: column;
  margin-top: 24px;
}

/* FOOTER */
footer {
  background: #06111f;
  color: white;
  padding: 28px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-content img {
  width: 160px;
}

.footer-content p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0 24px;
  }

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

  .nav {
    flex-wrap: wrap;
  }

  .hero {
    background: #06111f;
  }

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

  .preview-grid {
    gap: 16px;
  }

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

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

  .hero-logo,
  .dark-card-logo,
  .contact-logo {
    width: 190px;
  }
}
