:root {
  --bg: #071121;
  --surface: #ffffff;
  --surface-alt: #f3f6ff;
  --text: #14213a;
  --text-light: #f3f8ff;
  --primary: #2d6cdf;
  --primary-dark: #1f4ea8;
  --border: #dce3f1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, #08172e 0%, #163a73 100%);
  color: var(--text-light);
  padding: 88px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.hero-logo {
  width: 220px;
  max-width: 62%;
  display: block;
  margin-bottom: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
}

.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #b7cdf7;
}

h1 {
  margin: 0 0 16px;
  max-width: 780px;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.25;
}

.hero-text {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.cta {
  display: inline-block;
  text-decoration: none;
  background: var(--primary);
  color: #ffffff;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.2s ease;
}

.cta:hover {
  background: var(--primary-dark);
}

.hero-visual img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 36px rgba(6, 16, 34, 0.32);
}

.section {
  padding: 68px 0;
}

.section-alt {
  background: var(--surface-alt);
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  color: #0f2750;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #153469;
}

.info-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.info-list li {
  padding: 14px 16px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.info-list a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
}

footer {
  background: #061022;
  color: #9eb1d9;
  padding: 22px 0;
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .hero {
    padding: 66px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    max-width: 58%;
  }

  .section {
    padding: 54px 0;
  }
}
