:root {
  --navy: #0a1628;
  --navy-light: #1a2d4a;
  --accent: #f97316;
  --blue: #3b82f6;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --text: #1f2937;
  --muted: #64748b;
  --border: #e2e8f0;
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 22, 40, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  font-weight: 700;
}
.brand img { width: 46px; height: 46px; object-fit: contain; }
.topnav { display: flex; gap: 18px; flex-wrap: wrap; }
.topnav a { color: rgba(255,255,255,0.8); font-size: 14px; }
.topnav a:hover { color: white; }
.hero {
  padding: 74px 0 42px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}
.hero-copy {
  background: radial-gradient(circle at top right, rgba(249,115,22,0.18), transparent 32%), linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 22px 60px rgba(10,22,40,0.18);
}
.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(249,115,22,0.18);
  color: #fdba74;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.08;
  margin: 16px 0 14px;
}
.hero p { color: rgba(255,255,255,0.82); font-size: 1.04rem; }
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 700;
}
.btn-primary { background: var(--accent); color: white; }
.btn-secondary { background: rgba(255,255,255,0.14); color: white; border: 1px solid rgba(255,255,255,0.14); }
.hero-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
}
.hero-card img { aspect-ratio: 4/4.1; object-fit: cover; width: 100%; }
section { padding: 20px 0 48px; }
.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--navy);
}
.lead { color: var(--muted); max-width: 850px; }
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 26px;
}
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}
.card h2, .card h3 { margin-top: 0; color: var(--navy); }
.list {
  padding-left: 18px;
  margin: 0;
}
.list li { margin-bottom: 10px; }
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.badge {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  border-radius: 28px;
  padding: 30px;
  margin-top: 32px;
}
.cta p { color: rgba(255,255,255,0.8); }
.footer {
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 14px;
}
.service-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.service-link {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 600;
}
.service-link:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}
@media (max-width: 840px) {
  .hero-grid, .grid-2 { grid-template-columns: 1fr; }
  .topbar-inner { align-items: flex-start; flex-direction: column; }
}
