:root {
  --navy: #0A1628;
  --navy-mid: #132744;
  --white: #F7F8FA;
  --gray-50: #f0f1f4;
  --gray-100: #e2e4e9;
  --gray-200: #c5c9d2;
  --gray-400: #8b90a0;
  --gray-600: #5a5f72;
  --gray-800: #2d3142;
  --orange: #E85C1E;
  --orange-hover: #ff6e30;
  --green: #22c55e;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 48px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 18px;
  text-decoration: none;
}
.nav-cta:hover { background: var(--orange-hover); }

.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,22,40,0.88), rgba(10,22,40,0.62)),
    url("/assets/images/hero-background.jpg") center/cover no-repeat;
  opacity: 1;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 32px 88px;
}
.eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.16;
  hyphens: auto;
  overflow-wrap: break-word;
}
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
  max-width: 860px;
  margin-bottom: 24px;
}
.hero p {
  color: rgba(255,255,255,0.72);
  font-size: 20px;
  line-height: 1.7;
  max-width: 760px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  font-family: var(--font-head);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-hover); }
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
}

.section {
  padding: 78px 32px;
}
.section.alt { background: #fff; }
.container {
  max-width: 1120px;
  margin: 0 auto;
}
.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}
.section h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  margin-bottom: 16px;
}
.section p,
.section li {
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.75;
}
.lead {
  font-size: 19px !important;
  color: var(--gray-800) !important;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.panel {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 26px;
}
.panel h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}
.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.step {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 22px;
}
.step-num {
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 10px;
}
.proof {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}
.proof img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.faq {
  display: grid;
  gap: 12px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 18px 22px;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
}
.faq p { margin-top: 12px; }
.cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.cta h2 { color: #fff; }
.cta p {
  color: rgba(255,255,255,0.68);
  max-width: 680px;
  margin: 0 auto 28px;
}
.footer {
  background: #08111f;
  color: rgba(255,255,255,0.66);
  padding: 34px 32px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer a { text-decoration: none; color: rgba(255,255,255,0.76); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .nav { padding: 0 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-inner { padding: 78px 20px 72px; }
  .hero h1 { font-size: clamp(28px, 7.2vw, 36px); }
  .section { padding: 58px 20px; }
  .grid, .grid.two, .workflow, .proof { grid-template-columns: 1fr; }
  .hero p { font-size: 18px; }
  .btn { max-width: 100%; white-space: normal; }
}
