* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --charcoal: #0f1117;
  --panel: #151922;
  --panel-soft: rgba(255, 255, 255, 0.055);
  --blue: #2275d7;
  --blue-soft: #7cb7ff;
  --text: #ffffff;
  --muted: #aab4c4;
  --line: rgba(255, 255, 255, 0.12);
}
html { scroll-behavior: smooth; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--charcoal);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.nav {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo img { width: 220px; height: auto; display: block; }
.nav-links { display: flex; gap: 1.4rem; list-style: none; }
.nav-links a {
  color: #10131a;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--blue); }
.hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 117, 215, 0.18), transparent 34rem),
    linear-gradient(180deg, #111722 0%, var(--charcoal) 100%);
  padding: 6.5rem 1.5rem 4.5rem;
}
.hero-inner, .section-inner, .footer-inner { max-width: 1120px; margin: 0 auto; }
.breadcrumb {
  color: var(--blue-soft);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
h1 {
  max-width: 900px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 1.3rem;
}
.lead {
  max-width: 760px;
  color: #d6deeb;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid var(--blue);
}
.btn-primary { background: var(--blue); color: white; }
.btn-secondary { color: var(--blue-soft); background: transparent; }
section { padding: 4.5rem 1.5rem; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.panel {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.4rem;
}
h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 1.15; margin-bottom: 1rem; }
h3 { font-size: 1.1rem; margin-bottom: 0.55rem; }
p, li { color: var(--muted); }
ul { padding-left: 1.15rem; }
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}
.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.step {
  counter-increment: step;
  position: relative;
  padding-left: 3.2rem;
}
.step::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.service-links a {
  color: #dce9ff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.service-links a:hover { border-color: var(--blue); color: var(--blue-soft); }
.cta-band {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
footer {
  background: #f8fafc;
  color: #18202d;
  padding: 2.5rem 1.5rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
footer img { width: 210px; height: auto; display: block; margin-bottom: 0.8rem; }
footer p, footer a { color: #4b5565; }
@media (max-width: 800px) {
  .nav-inner { align-items: flex-start; flex-direction: column; }
  .nav-links { flex-wrap: wrap; gap: 1rem; }
  .grid, .two-col, .service-links { grid-template-columns: 1fr; }
  .hero { padding-top: 4rem; }
}
