:root {
  --navy: #0f1b2d;
  --navy-light: #16273f;
  --white: #ffffff;
  --offwhite: #f5f7fa;
  --accent: #2fa8e0;
  --accent-dark: #1c86ba;
  --text-dark: #1a2433;
  --text-muted: #5c6b7a;
  --radius: 10px;
  --shadow: 0 8px 24px rgba(15, 27, 45, 0.12);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.5;
  padding-bottom: 64px; /* space for mobile sticky call bar */
}

a { color: inherit; }

img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--white);
}

.brand svg { width: 28px; height: 28px; flex-shrink: 0; }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav.main-nav a.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.9;
}

nav.main-nav a.nav-link:hover { opacity: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover { background: var(--accent-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); }

.btn-large { padding: 15px 28px; font-size: 1.05rem; }

/* Hero */
.hero {
  background: radial-gradient(circle at 20% 20%, var(--navy-light), var(--navy) 70%);
  color: var(--white);
  padding: 72px 0 64px;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(47, 168, 224, 0.15);
  color: var(--accent);
  border: 1px solid rgba(47, 168, 224, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 800;
}

.hero h1 .accent-text { color: var(--accent); }

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Trust strip */
.trust-strip {
  background: var(--offwhite);
  border-bottom: 1px solid #e6eaf0;
  padding: 22px 0;
}

.trust-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-strip li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.trust-strip svg {
  width: 20px;
  height: 20px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

/* Section basics */
section {
  padding: 64px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head .eyebrow {
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  margin: 8px 0 12px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid #e6eaf0;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(47, 168, 224, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  margin-bottom: 4px;
}

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 { margin: 0; font-size: 1.15rem; }
.service-card p { margin: 0; color: var(--text-muted); font-size: 0.96rem; flex-grow: 1; }

.service-card .price-note {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-dark);
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step;
}

.step {
  text-align: center;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 14px;
  font-size: 1.05rem;
}

.step h3 { margin: 0 0 8px; font-size: 1.05rem; }
.step p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

/* Alt background section */
.section-alt {
  background: var(--offwhite);
}

/* Service area */
.area-layout {
  display: flex;
  justify-content: center;
}

.area-cities {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 12px 32px;
}

.area-cities li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.area-cities svg {
  width: 16px;
  height: 16px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-layout p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  text-align: center;
  padding: 56px 0;
}

.final-cta h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 12px;
}

.final-cta p {
  color: rgba(255,255,255,0.8);
  margin: 0 0 28px;
}

.final-cta .phone-big {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

/* Footer */
footer.site-footer {
  background: #0b1521;
  color: rgba(255,255,255,0.7);
  padding: 32px 0;
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.footer-inner a { text-decoration: none; color: rgba(255,255,255,0.85); }

/* Mobile sticky call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--accent);
  color: var(--white);
}

.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 10px;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  font-size: 1rem;
}

.mobile-call-bar svg { width: 20px; height: 20px; }

/* Responsive */
@media (max-width: 720px) {
  nav.main-nav .nav-link { display: none; }
  .header-inner .btn-outline { display: none; }
  .area-cities { grid-template-columns: repeat(2, auto); }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .area-cities { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 44px; }
}
