:root {
  --navy: #071827;
  --navy-2: #0d2236;
  --steel: #1f3a4f;
  --orange: #f2a23a;
  --orange-dark: #c97916;
  --white: #ffffff;
  --muted: #6b7785;
  --light: #f4f7fa;
  --border: rgba(255,255,255,0.16);
  --shadow: 0 20px 55px rgba(7,24,39,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 24, 39, 0.94);
  backdrop-filter: blur(12px);
  color: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), #ffcf75);
  color: var(--navy);
  font-weight: 800;
}
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand small { color: #c7d0d9; }
.nav { display: flex; gap: 26px; align-items: center; font-weight: 600; }
.nav a { color: #d8e1ea; }
.nav a:hover { color: var(--orange); }
.nav-cta { padding: 10px 16px; background: var(--orange); color: var(--navy) !important; border-radius: 999px; }
.menu-btn { display: none; background: none; color: white; border: 0; font-size: 28px; }

.hero {
  position: relative;
  min-height: 720px;
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(7,24,39,0.94), rgba(7,24,39,0.62)),
    radial-gradient(circle at 75% 30%, rgba(242,162,58,0.28), transparent 30%),
    linear-gradient(135deg, #10283d, #06131f);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 470px;
  height: 470px;
  border: 85px solid rgba(242,162,58,0.12);
  transform: rotate(18deg);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; align-items: center; }
.eyebrow, .section-label {
  display: inline-flex;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); line-height: 0.98; margin: 0 0 22px; letter-spacing: -0.05em; }
.hero p { font-size: 1.15rem; color: #dbe4ec; max-width: 720px; margin-bottom: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--orange); color: var(--navy); }
.btn-primary:hover { background: #ffc064; }
.btn-outline { border-color: rgba(255,255,255,0.35); color: white; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.hero-card h3 { margin: 0 0 18px; font-size: 1.5rem; }
dl { margin: 0; }
dl div { padding: 14px 0; border-bottom: 1px solid var(--border); }
dl div:last-child { border-bottom: 0; }
dt { color: #c5d0da; font-size: 0.88rem; }
dd { margin: 4px 0 0; font-weight: 800; font-size: 1.08rem; }

.stats-section { margin-top: -48px; position: relative; z-index: 2; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.stats-grid div { padding: 28px; text-align: center; border-right: 1px solid #e6edf3; }
.stats-grid div:last-child { border-right: 0; }
.stats-grid strong { display: block; font-size: 2.1rem; color: var(--orange-dark); }
.stats-grid span { color: var(--muted); font-weight: 700; }

.section { padding: 96px 0; }
.two-col { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; }
.align-center { align-items: center; }
.section h2 { margin: 0 0 18px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -0.04em; }
.section p { color: var(--muted); font-size: 1.03rem; }
.centered { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.dark { background: var(--navy); color: white; }
.dark .section p, .dark .service-card p { color: #bdd0df; }
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  min-height: 260px;
}
.service-card:hover { transform: translateY(-4px); transition: 0.2s ease; }
.icon { width: 46px; height: 46px; border-radius: 14px; background: rgba(242,162,58,0.14); color: var(--orange); display: grid; place-items: center; margin-bottom: 18px; font-size: 1.4rem; }
.service-card h3 { margin: 0 0 12px; font-size: 1.3rem; }

.accent { background: var(--light); }
.split-card { background: white; padding: 34px; border-radius: 26px; box-shadow: var(--shadow); }
.split-card h3 { margin-top: 0; }
.check-list { list-style: none; padding: 0; margin: 0; columns: 2; }
.check-list li { margin-bottom: 10px; font-weight: 700; }
.check-list li::before { content: "✓"; color: var(--orange-dark); margin-right: 8px; font-weight: 900; }
.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.industry-grid span { padding: 22px; border-radius: 18px; background: var(--light); font-weight: 800; text-align: center; }
.why { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.why-grid div { padding: 22px; border: 1px solid #e6edf3; border-radius: 18px; background: #fbfdff; }
.why-grid strong { font-size: 1.05rem; }
.why-grid p { margin-bottom: 0; }
.cta-section { background: var(--navy); padding: 70px 0; color: white; }
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-box h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; margin: 0; }
.cta-box p { color: #bdd0df; }
.contact { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact-details { margin-top: 28px; }
.contact-details p { margin: 10px 0; color: var(--navy); }
.contact-form { background: white; padding: 32px; border-radius: 26px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.contact-form label { font-weight: 800; }
input, textarea { width: 100%; margin-top: 8px; border: 1px solid #d9e2ea; border-radius: 14px; padding: 14px 16px; font: inherit; }
textarea { resize: vertical; }
.site-footer { background: #06131f; color: white; padding: 34px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.site-footer p { color: #aebfce; margin: 6px 0; }

@media (max-width: 900px) {
  .menu-btn { display: block; }
  .nav { position: absolute; top: 76px; left: 0; right: 0; background: var(--navy); display: none; flex-direction: column; align-items: flex-start; padding: 20px; }
  .nav.open { display: flex; }
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 96px 0 120px; }
  .stats-grid, .cards-grid, .industry-grid, .why-grid { grid-template-columns: repeat(2,1fr); }
  .cta-box { display: block; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .stats-grid, .cards-grid, .industry-grid, .why-grid { grid-template-columns: 1fr; }
  .stats-grid div { border-right: 0; border-bottom: 1px solid #e6edf3; }
  .check-list { columns: 1; }
  .hero-card { padding: 22px; }
  .section { padding: 70px 0; }
}
