* {
  box-sizing: border-box;
}

:root {
  --bg: #0b1020;
  --bg-soft: #111931;
  --panel: rgba(17, 25, 49, 0.78);
  --panel-strong: #17223f;
  --text: #ecf2ff;
  --muted: #a9b7d0;
  --line: rgba(255,255,255,0.08);
  --accent: #7dd3fc;
  --accent-strong: #38bdf8;
  --shadow: 0 20px 60px rgba(0,0,0,0.30);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(125,211,252,0.10), transparent 24%),
    linear-gradient(180deg, #09101d 0%, #0b1020 50%, #09101b 100%);
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-strong); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(9, 16, 29, 0.72);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #03111e;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
}

.brand-text { letter-spacing: 0.01em; }

.menu {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.menu a {
  color: var(--muted);
  font-weight: 500;
}

.hero { padding: 5.5rem 0 4rem; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1, h2, h3 { margin-top: 0; line-height: 1.1; }

h1 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  max-width: 12ch;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.lead,
.section-heading p,
.split p,
.contact-box p,
.card p,
.site-footer p,
.check-item,
.trust-points {
  color: var(--muted);
}

.lead {
  max-width: 62ch;
  font-size: 1.06rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #03111e;
}

.btn-primary:hover {
  color: #03111e;
  filter: brightness(1.04);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.btn-secondary:hover {
  color: var(--text);
  border-color: rgba(125,211,252,0.4);
}

.trust-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.trust-points li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.6rem;
}

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

.hero-card { padding: 1.4rem; }

.stat + .stat {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  padding-top: 1rem;
}

.stat-label,
.contact-label {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
}

.section { padding: 4.5rem 0; }

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

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

.card { padding: 1.4rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
  align-items: start;
}

.checklist {
  display: grid;
  gap: 0.8rem;
}

.check-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1rem 1rem 2.8rem;
  position: relative;
}

.check-item::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--accent);
  font-weight: 800;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem 2rem;
  align-items: center;
}

.contact-card {
  padding: 1.4rem;
  background: var(--panel-strong);
}

.contact-mail {
  font-size: 1.15rem;
  font-weight: 700;
  word-break: break-word;
}

.contact-note { margin-bottom: 0; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2.2rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid, .cards, .split, .contact-box {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 4.2rem; }
  .menu { display: none; }
  h1 { max-width: 100%; }
}

@media (max-width: 520px) {
  .container {
    width: min(1120px, calc(100% - 1.2rem));
  }

  .hero-card, .card, .contact-card {
    border-radius: 20px;
  }

  .btn { width: 100%; }
}
