:root {
  --navy: #0b1e4d;
  --blue: #1656f5;
  --blue-light: #4c7dff;
  --orange: #f5821f;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #eef2f9;
  --text: #101828;
  --muted: #64748b;
  --accent: var(--blue);
  --accent-2: var(--blue-light);
  --border: #e4e9f2;
  --shadow: 0 12px 30px rgba(11, 30, 77, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  padding-bottom: 4rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 44px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.3rem;
  color: var(--muted);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--navy);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(22, 86, 245, 0.25);
}

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

.hero-highlights {
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
  flex-wrap: wrap;
}

.hero-highlights li {
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card,
.card,
.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.7rem;
}

.hero-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -1.6rem;
  margin-bottom: 3rem;
}

.stats > div {
  background: var(--surface);
  padding: 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 3.2rem 0;
}

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

.section-heading {
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  color: var(--navy);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.3rem;
}

.card h3,
.feature-list h3,
.timeline h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  color: var(--navy);
}

.badge-soon {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245, 130, 31, 0.12);
  border: 1px solid rgba(245, 130, 31, 0.35);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.card p,
.feature-list p,
.timeline p,
.cta-box p {
  color: var(--muted);
  margin: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-list > div {
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline > div {
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(22, 86, 245, 0.08), rgba(245, 130, 31, 0.08));
}

.cta-box {
  padding: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: min(320px, 100%);
  flex-shrink: 0;
}

.contact-form .form-field label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-feedback {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-feedback.success {
  color: #16a34a;
}

.contact-feedback.error {
  color: #dc2626;
}

.footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

@media (max-width: 860px) {
  .hero-content,
  .feature-list,
  .timeline,
  .cards-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    padding-top: 0.7rem;
  }

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

  .hero-content {
    padding-top: 2rem;
  }
}
