:root {
  --bg: #07111f;
  --bg-soft: #0c1a30;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #54627a;
  --line: #dbe4f0;
  --brand: #0d6efd;
  --brand-2: #14b8a6;
  --shadow: 0 18px 50px rgba(7, 17, 31, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #f5f8fc;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
  font-weight: 700;
}

.logo img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  padding: 0.2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.site-nav {
  display: flex;
  gap: 1.25rem;
}

.site-nav a {
  color: #d9e3f1;
  font-size: 0.95rem;
}

.logo span {
  font-size: 1.05rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.5rem;
}

.hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.3), transparent 30%),
    linear-gradient(135deg, #07111f, #102443 55%, #0b1932);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 800;
  color: #7dd3fc;
}

.hero-copy h1,
.section-head h2,
.two-column h2,
.cta-box h2 {
  margin: 0.25rem 0 0.75rem;
  line-height: 1.1;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.lead {
  max-width: 650px;
  font-size: 1.08rem;
  color: #d3def2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn:hover {
  transform: translateY(-1px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #dce8fa;
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-badge {
  display: inline-flex;
  background: #dff4ff;
  color: #075985;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.stat-grid strong {
  display: block;
  font-size: 1.2rem;
}

.stat-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: #fff;
}

.section-head {
  margin-bottom: 1.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.info-card h3 {
  margin-top: 0;
}

.highlight-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.highlight-list li + li {
  margin-top: 0.5rem;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
}

.timeline-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f2ff;
  color: #0b5ed7;
  font-weight: 800;
}

.cta-section {
  padding-top: 0;
}

.cta-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 1.5rem;
  background: linear-gradient(135deg, #0a1f3a, #123663);
  color: #fff;
  border-radius: 24px;
  padding: 2rem;
}

.cta-copy p:last-child {
  color: #dce8fa;
  margin-bottom: 0;
}

.consultation-form {
  display: grid;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 18px;
}

.consultation-form label {
  display: grid;
  gap: 0.35rem;
}

.consultation-form span {
  font-size: 0.9rem;
  font-weight: 700;
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.consultation-form textarea {
  resize: vertical;
}

.site-footer {
  background: #07111f;
  color: #dce8fa;
  padding: 1rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-grid,
  .two-column,
  .card-grid,
  .cta-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-box {
    align-items: stretch;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 1rem;
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: #0b1830;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4rem;
  }

  .logo span {
    font-size: 0.95rem;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }
}
