:root {
  --navy: #07152f;
  --blue: #0d5bd7;
  --sky: #38bdf8;
  --orange: #ff8a00;
  --light: #f5f8ff;
  --text: #1d2939;
  --muted: #667085;
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }

.site-header { background: var(--white); position: sticky; top: 0; z-index: 10; box-shadow: 0 5px 25px rgba(0,0,0,.06); }
.navbar { max-width: 1180px; margin: auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { font-size: 28px; font-weight: 900; color: var(--blue); letter-spacing: -1px; }
.nav-links { display: flex; gap: 26px; color: var(--muted); font-weight: 600; }
.nav-call { background: var(--orange); color: var(--white); padding: 12px 18px; border-radius: 999px; font-weight: 700; }

.hero { min-height: 720px; padding: 90px 24px; background: radial-gradient(circle at 80% 20%, rgba(56,189,248,.35), transparent 30%), linear-gradient(135deg, var(--navy), #092a66); display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 50px; }
.hero-content, .hero-card { max-width: 1180px; }
.hero-content { color: var(--white); max-width: 720px; margin-left: auto; }
.eyebrow { display: inline-block; color: var(--sky); font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; font-size: 13px; margin-bottom: 12px; }
h1 { font-size: clamp(42px, 6vw, 76px); line-height: 1; margin-bottom: 22px; letter-spacing: -3px; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.1; margin-bottom: 16px; letter-spacing: -1.5px; }
.hero p { font-size: 20px; color: #d8e6ff; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { padding: 16px 24px; border-radius: 12px; font-weight: 800; }
.primary { background: var(--orange); color: var(--white); }
.secondary { border: 1px solid rgba(255,255,255,.35); color: var(--white); }
.hero-card { background: rgba(255,255,255,.1); color: var(--white); padding: 34px; border-radius: 28px; backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,.18); max-width: 390px; }
.hero-card h3 { font-size: 28px; margin-bottom: 12px; }
.hero-card p { font-size: 16px; margin-bottom: 20px; }
.hero-card li { list-style: none; margin: 10px 0; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--orange); color: var(--white); font-weight: 800; text-align: center; }
.trust-strip div { padding: 18px; border-right: 1px solid rgba(255,255,255,.25); }

.section, .split-section, .quote-section, .contact-section { max-width: 1180px; margin: auto; padding: 90px 24px; }
.section-heading { max-width: 680px; margin-bottom: 38px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { background: var(--light); padding: 28px; border-radius: 24px; border: 1px solid #e7edf8; transition: .25s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(13,91,215,.12); }
.card h3 { color: var(--navy); margin-bottom: 12px; font-size: 22px; }
.card p, .split-section p, .quote-content p, .contact-section p { color: var(--muted); }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.features { display: grid; gap: 16px; }
.features div { background: var(--navy); color: var(--white); padding: 22px; border-radius: 18px; }
.features strong { display: block; font-size: 18px; margin-bottom: 4px; }
.features span { color: #c7d7f2; }

.process { background: var(--light); max-width: none; }
.process .section-heading, .steps { max-width: 1180px; margin-left: auto; margin-right: auto; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps div { background: var(--white); padding: 30px; border-radius: 24px; }
.steps span { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; background: var(--blue); color: white; border-radius: 50%; font-weight: 900; margin-bottom: 20px; }
.steps h3 { margin-bottom: 10px; }

.quote-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start; }
.quote-form { background: var(--navy); padding: 30px; border-radius: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form input, .quote-form textarea { width: 100%; padding: 16px; border: 0; border-radius: 12px; font-size: 15px; }
.quote-form textarea { grid-column: 1 / -1; min-height: 130px; resize: vertical; }
.quote-form button { grid-column: 1 / -1; background: var(--orange); color: var(--white); border: 0; padding: 16px; border-radius: 12px; font-size: 16px; font-weight: 900; cursor: pointer; }

.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: var(--light); border-radius: 34px; margin-bottom: 70px; }
.contact-box { background: var(--white); padding: 28px; border-radius: 22px; box-shadow: 0 14px 35px rgba(0,0,0,.07); }
.contact-box p { margin: 12px 0; color: var(--text); }
.contact-box a { color: var(--blue); font-weight: 700; }

footer { background: var(--navy); color: #c7d7f2; text-align: center; padding: 26px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero, .split-section, .quote-section, .contact-section { grid-template-columns: 1fr; }
  .hero-content { margin-left: 0; }
  .cards, .steps { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .cards, .steps, .trust-strip, .quote-form { grid-template-columns: 1fr; }
  .hero { padding: 70px 20px; min-height: auto; }
  .section, .split-section, .quote-section, .contact-section { padding: 60px 20px; }
}
