:root {
  --navy: #071426;
  --blue: #102b4e;
  --orange: #ff8a1c;
  --cream: #f7f4ef;
  --text: #172033;
  --muted: #657185;
  --white: #ffffff;
  --green: #25d366;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; }

.hero {
  min-height: 760px;
  color: var(--white);
  padding: 24px 6% 80px;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,138,28,.25), transparent 32%),
    linear-gradient(135deg, rgba(7,20,38,.94), rgba(16,43,78,.86)),
    url('https://images.unsplash.com/photo-1600518464441-9154a4dea21b?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}

.brand-icon {
  background: var(--orange);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,.85);
  font-weight: 700;
}

.nav-links a, .nav-call, .btn { text-decoration: none; }

.nav-call {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.hero-grid {
  max-width: 1200px;
  margin: 110px auto 0;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 44px;
  align-items: center;
}

.badge, .section-kicker {
  display: inline-block;
  background: rgba(255,138,28,.16);
  color: var(--orange);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: .98;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.subtitle {
  font-size: 22px;
  max-width: 700px;
  color: rgba(255,255,255,.86);
  margin-bottom: 30px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-block;
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 900;
  transition: transform .2s, box-shadow .2s;
}

.btn:hover { transform: translateY(-2px); }

.primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 18px 35px rgba(255,138,28,.25);
}

.secondary {
  background: var(--white);
  color: var(--navy);
}

.full { width: 100%; text-align: center; }

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
  margin-top: 34px;
}

.trust div {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 18px;
}

.trust strong {
  display: block;
  font-size: 22px;
}

.trust span { color: rgba(255,255,255,.7); }

.quote-card {
  background: rgba(255,255,255,.97);
  color: var(--text);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.quote-card h2 { font-size: 34px; margin-bottom: 10px; }
.quote-card p { color: var(--muted); margin-bottom: 16px; }
.quote-card ul { list-style: none; margin: 20px 0; }
.quote-card li { padding: 12px 0; border-bottom: 1px solid #edf0f5; font-weight: 700; }
.quote-card li:before { content: "✓ "; color: var(--orange); }

.section {
  padding: 86px 6%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section h2, .split h2, .contact h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.service-grid, .reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.service, blockquote {
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(23,32,51,.08);
}

.service span { font-size: 36px; }
.service h3 { font-size: 22px; margin: 14px 0 8px; }
.service p, .split p, .contact p { color: var(--muted); font-size: 18px; }

.split {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 58px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.checklist {
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(23,32,51,.08);
}

.checklist p {
  padding: 14px 0;
  border-bottom: 1px solid #edf0f5;
  font-weight: 800;
  color: var(--text);
}

.dark {
  background: var(--navy);
  color: var(--white);
  max-width: none;
}

.dark .section-kicker { background: rgba(255,255,255,.1); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 36px auto;
}

.steps div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 30px;
  border-radius: 24px;
}

.steps span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 18px;
}

.reviews blockquote {
  font-size: 20px;
  font-weight: 700;
}

.reviews strong {
  display: block;
  color: var(--orange);
  margin-top: 18px;
}

.contact {
  max-width: 1200px;
  margin: 40px auto 70px;
  padding: 60px 6%;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 28px;
  align-items: center;
}

.contact-box {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(23,32,51,.08);
}

.contact-box a {
  display: block;
  background: var(--navy);
  color: var(--white);
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  margin-bottom: 12px;
}

.contact-box a:nth-child(2) { background: var(--green); }

footer {
  background: #050b14;
  color: rgba(255,255,255,.75);
  text-align: center;
  padding: 34px;
  margin-bottom: 0;
}

.sticky-bar {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  background: rgba(7,20,38,.92);
  padding: 10px;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  z-index: 10;
}

.sticky-bar a {
  color: white;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
}

.sticky-bar a:first-child { background: var(--orange); }
.sticky-bar a:last-child { background: var(--green); }

@media (max-width: 900px) {
  .nav { align-items: flex-start; }
  .nav-links { display: none; }
  .hero-grid, .split, .contact { grid-template-columns: 1fr; }
  .service-grid, .reviews, .steps { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .hero { padding-bottom: 120px; }
  .hero-grid { margin-top: 70px; }
}

@media (max-width: 560px) {
  .brand { font-size: 16px; }
  .nav-call { font-size: 14px; padding: 10px 14px; }
  .quote-card { padding: 24px; }
  .section, .split, .contact { padding-left: 5%; padding-right: 5%; }
  .sticky-bar { width: calc(100% - 24px); justify-content: center; }
  .sticky-bar a { flex: 1; text-align: center; padding: 12px 8px; }
}
