:root {
  --bg: #081c3a;
  --bg-2: #0e2e59;
  --accent: #1475d1;
  --accent-2: #44b36b;
  --text: #142033;
  --muted: #6a7688;
  --white: #ffffff;
  --light: #f4f8fc;
  --border: #dbe5f0;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
}
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 28, 58, 0.95);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}
.logo {
  text-decoration: none;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
}
.logo span { color: #7bd889; }
.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.nav a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: .98rem;
}
.nav a:hover { color: #fff; }
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(8,28,58,.96), rgba(20,117,209,.78)), url('hero-placeholder.jpg') center/cover no-repeat;
  color: var(--white);
  min-height: 82vh;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(123,216,137,.18), transparent 30%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr .9fr;
  gap: 28px;
  padding: 72px 0;
}
.eyebrow, .section-label {
  display: inline-block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero .eyebrow { color: #9fd0ff; }
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1.05;
  margin: 0 0 18px;
  max-width: 10.5ch;
}
.hero p {
  max-width: 60ch;
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 28px 0 34px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn:hover { filter: brightness(1.05); }
.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,.35);
}
.btn-light {
  background: #fff;
  color: var(--bg);
}
.btn-small {
  min-height: 42px;
  padding: 0 16px;
}
.hero-card, .info-card, .contact-box, .card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(12, 31, 61, .08);
}
.hero-card {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 28px;
  align-self: end;
}
.hero-card h3 { margin-top: 0; }
.hero-card ul { margin: 0; padding-left: 18px; line-height: 1.9; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  max-width: 700px;
}
.hero-stats div {
  background: rgba(255,255,255,.09);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
}
.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}
.hero-stats span { color: rgba(255,255,255,.78); font-size: .92rem; }
.section { padding: 84px 0; }
.section-alt { background: var(--light); }
.two-col {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 30px;
  align-items: start;
}
.section h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}
.section p { color: var(--muted); line-height: 1.8; }
.info-card, .contact-box { padding: 28px; }
.check {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.check:last-child { border-bottom: 0; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  margin-top: 28px;
}
.cards-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card {
  padding: 24px;
}
.card h3 { margin-top: 0; }
.cta {
  background: linear-gradient(135deg, var(--bg), var(--bg-2));
  color: #fff;
}
.cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.light { color: #9fd0ff; }
.site-footer {
  background: #08101c;
  color: rgba(255,255,255,.75);
  padding: 22px 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
@media (max-width: 920px) {
  .hero-grid, .two-col, .cards, .cards-3, .hero-stats { grid-template-columns: 1fr; }
  .nav { display: none; }
  .cta-wrap { flex-direction: column; align-items: start; }
}
