:root {
  --navy: #102a43;
  --blue: #1769aa;
  --light-blue: #eaf5ff;
  --orange: #ff9f1c;
  --orange-dark: #e28400;
  --white: #ffffff;
  --text: #263238;
  --muted: #64748b;
  --border: #dbe7f3;
  --shadow: 0 18px 45px rgba(16, 42, 67, 0.15);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.1rem;
}

.logo-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--orange);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.2;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-nav a:hover { color: var(--blue); }

.nav-call {
  background: var(--orange);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 1.4rem;
  border-radius: 10px;
  padding: 8px 12px;
}

.hero {
  background:
    linear-gradient(135deg, rgba(16,42,67,0.96), rgba(23,105,170,0.88)),
    radial-gradient(circle at top right, rgba(255,159,28,0.35), transparent 35%);
  color: var(--white);
  padding: 86px 0;
}

.hero-grid,
.page-hero-grid,
.quote-section-grid,
.content-grid,
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

h1, h2, h3 { line-height: 1.15; margin-top: 0; color: inherit; }

h1 { font-size: clamp(2.3rem, 5vw, 4.6rem); margin-bottom: 20px; }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }

.hero-text { font-size: 1.2rem; max-width: 620px; color: #dcefff; }

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--orange); color: var(--navy); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: var(--white); color: var(--navy); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-full { width: 100%; }

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.trust-row span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.quote-card,
.hero-panel,
.sidebar-card,
.feature-box,
.service-card,
.step {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.quote-card h2 { color: var(--navy); }

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.92rem;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: var(--white);
  color: var(--text);
}

input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(255,159,28,0.25);
  border-color: var(--orange);
}

.form-message {
  margin: 0;
  font-weight: 800;
  color: var(--blue);
}

.section { padding: 78px 0; }
.section-light { background: var(--light-blue); }
.section-heading { text-align: center; max-width: 740px; margin: 0 auto 34px; }
.section-heading h2, .intro-grid h2, .areas h2, .content-grid h2, .quote-section-grid h2 { color: var(--navy); }

.cards-grid,
.steps-grid,
.split-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.split-services { grid-template-columns: repeat(2, 1fr); }

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--light-blue);
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.service-card a,
.text-link {
  color: var(--blue);
  font-weight: 800;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-strip {
  background: var(--orange);
  color: var(--navy);
  padding: 46px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner h2 { margin-bottom: 6px; }
.cta-inner p { margin: 0; font-weight: 700; }

.areas { max-width: 880px; }

.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 76px 0;
}

.hero-panel ul,
.tick-list { padding: 0; margin: 0; list-style: none; }
.tick-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 900;
}
.dark-list li::before { color: var(--blue); }

.sidebar-card { align-self: start; }
.quote-card-light { box-shadow: none; border: 1px solid var(--border); }

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.site-footer a { color: #dcefff; }
.site-footer h3, .site-footer h4 { margin-bottom: 8px; }

.mobile-call {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1001;
  background: var(--orange);
  color: var(--navy);
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 10px; }

  .hero-grid,
  .page-hero-grid,
  .quote-section-grid,
  .content-grid,
  .intro-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .steps-grid,
  .split-services {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero, .page-hero { padding: 58px 0; }
  .section { padding: 58px 0; }
  .mobile-call { display: block; }
  body { padding-bottom: 72px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1140px); }
  .logo span:last-child { font-size: 0.95rem; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .btn { width: 100%; }
  .quote-card, .hero-panel, .sidebar-card, .feature-box, .service-card, .step { padding: 24px; }
}

.sidebar-link { display: inline-block; margin-top: 16px; }
@media (max-width: 1040px) { .site-nav { gap: 10px; font-size: 0.86rem; } .nav-call { padding: 9px 11px; } }
