:root {
  --primary: #0f172a;
  --secondary: #1e293b;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --light: #f8fafc;
  --muted: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --success: #16a34a;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --max: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; color: #0f172a; line-height: 1.6; background: #ffffff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }

.topbar {
  background: var(--primary);
  color: #cbd5e1;
  font-size: 14px;
  padding: 10px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  color: var(--secondary);
  font-weight: 600;
  font-size: 15px;
}
.nav-links a:hover { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.22);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline {
  border-color: var(--border);
  background: white;
  color: var(--primary);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.85)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: white;
  padding: 100px 0 88px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #dbeafe;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  max-width: 12ch;
}
.hero p { max-width: 62ch; font-size: 18px; color: #dbeafe; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.metric {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 16px;
}
.metric strong { display: block; font-size: 24px; margin-bottom: 4px; }

.hero-card {
  background: rgba(255,255,255,0.96);
  color: var(--primary);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-card h3 { font-size: 24px; margin-bottom: 12px; }
.hero-card p { color: var(--muted); margin-bottom: 18px; }

.checklist {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}
.checklist li::before {
  content: "✓";
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.12);
  color: var(--success);
  margin-right: 10px;
  font-weight: 900;
}

section { padding: 78px 0; }
.section-title { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--primary);
}
.section-title p { color: var(--muted); font-size: 17px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: center; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
  transition: 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { font-size: 22px; margin-bottom: 10px; color: var(--primary); }
.card p { color: var(--muted); }

.icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(37,99,235,0.08));
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 18px;
}

.info-list { display: grid; gap: 14px; margin-top: 20px; }
.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}
.info-item strong { display: block; margin-bottom: 4px; color: var(--primary); }
.info-item span { color: var(--muted); font-size: 15px; }

.stats {
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.stat {
  text-align: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 18px;
}
.stat strong { display: block; font-size: 34px; color: var(--accent); margin-bottom: 6px; }
.stat span { color: var(--muted); font-size: 15px; }

.process { counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: white;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.2);
}

.contact-section { background: #f8fafc; }

.contact-center {
  display: flex;
  justify-content: center;
}

.contact-form-wrap {
  width: min(100%, 760px);
}

.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { font-size: 14px; font-weight: 700; color: var(--primary); }

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  background: #fff;
  transition: 0.2s ease;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
textarea { min-height: 140px; resize: vertical; }

.cta {
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: white;
}
.cta .section-title h2,
.cta .section-title p { color: white; }

.cta-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 28px;
}
.cta-box p { color: #dbeafe; margin-top: 8px; }

.footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 34px 0;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .cta-box,
  .grid-3,
  .stat-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding: 76px 0 64px; }
  .nav-links { display: none; }
  .hero h1 { max-width: 100%; }
  .hero-metrics { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
}