:root {
  --navy: #0d1b3e;
  --navy-light: #1a2d5a;
  --orange: #e85d04;
  --orange-hover: #c44b00;
  --white: #ffffff;
  --off-white: #f4f6fb;
  --gray: #6b7280;
  --dark: #111827;
  --border: #e5e7eb;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--dark); background: var(--white); }
a { color: inherit; text-decoration: none; }

/* NAV */
nav { background: var(--navy); padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 60px; position: sticky; top: 0; z-index: 100; }
.nav-logo { color: var(--white); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.5px; }
.nav-logo span { color: var(--orange); }
.nav-phone { color: var(--white); font-size: 1.1rem; font-weight: 700; }
.nav-phone a { color: var(--orange); }
.nav-links { display: flex; gap: 20px; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
@media(max-width:700px){ .nav-links { display:none; } }

/* HERO */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 64px 24px 72px; text-align: center; }
.hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero h1 span { color: var(--orange); }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin-bottom: 32px; max-width: 580px; margin-left: auto; margin-right: auto; }
.hero-phone { display: inline-block; background: var(--orange); color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; padding: 18px 40px; border-radius: 8px; margin-bottom: 12px; letter-spacing: 1px; transition: background 0.2s; }
.hero-phone:hover { background: var(--orange-hover); }
.hero-sub { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 36px; }

/* ZIP FORM */
.zip-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.zip-form input { padding: 14px 18px; border-radius: 6px; border: none; font-size: 1rem; width: 200px; }
.zip-form button { background: var(--orange); color: var(--white); border: none; padding: 14px 28px; border-radius: 6px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.zip-form button:hover { background: var(--orange-hover); }
.trust-badges { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.badge { color: rgba(255,255,255,0.75); font-size: 0.88rem; display: flex; align-items: center; gap: 6px; }
.badge::before { content: '✓'; color: #4ade80; font-weight: 700; }

/* SECTIONS */
.section { padding: 56px 24px; max-width: 1100px; margin: 0 auto; }
.section-alt { background: var(--off-white); }
.section-alt .section { max-width: 100%; padding-left: max(24px, calc(50% - 530px)); padding-right: max(24px, calc(50% - 530px)); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.lead { font-size: 1.05rem; color: var(--gray); margin-bottom: 36px; }

/* SERVICE CARDS */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 28px 24px; transition: box-shadow 0.2s; }
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.card p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }
.card-link { display: inline-block; margin-top: 14px; color: var(--orange); font-weight: 600; font-size: 0.9rem; }

/* HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; text-align: center; }
.step-num { width: 52px; height: 52px; background: var(--orange); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; margin: 0 auto 16px; }
.step p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* CTA BANNER */
.cta-banner { background: var(--navy); text-align: center; padding: 56px 24px; }
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 1.05rem; }
.btn-orange { display: inline-block; background: var(--orange); color: var(--white); padding: 16px 36px; border-radius: 6px; font-size: 1.1rem; font-weight: 700; transition: background 0.2s; }
.btn-orange:hover { background: var(--orange-hover); }

/* FOOTER */
footer { background: #080f1f; color: rgba(255,255,255,0.55); padding: 40px 24px; text-align: center; font-size: 0.88rem; }
footer a { color: rgba(255,255,255,0.7); margin: 0 10px; }
footer a:hover { color: var(--white); }
.footer-links { margin-bottom: 16px; }

/* INNER PAGE */
.page-hero { background: var(--navy); padding: 48px 24px; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.page-hero p { color: rgba(255,255,255,0.75); margin-top: 10px; font-size: 1.05rem; }
.content-wrap { max-width: 860px; margin: 0 auto; padding: 48px 24px; }
.content-wrap h2 { font-size: 1.6rem; margin: 32px 0 10px; }
.content-wrap p { color: #374151; line-height: 1.75; margin-bottom: 16px; }
.content-wrap ul { margin: 0 0 16px 20px; }
.content-wrap ul li { color: #374151; line-height: 1.75; margin-bottom: 8px; }
.inline-cta { background: var(--off-white); border-left: 4px solid var(--orange); padding: 20px 24px; border-radius: 0 8px 8px 0; margin: 32px 0; }
.inline-cta p { margin: 0; font-weight: 600; }
.inline-cta a { color: var(--orange); }

/* CITIES GRID */
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 12px; }
.city-link { background: var(--off-white); border: 1px solid var(--border); border-radius: 6px; padding: 12px 16px; font-size: 0.95rem; font-weight: 600; color: var(--navy); transition: all 0.2s; }
.city-link:hover { background: var(--navy); color: var(--white); }

/* PRICING TABLE */
.pricing-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.pricing-table th { background: var(--navy); color: var(--white); padding: 14px 16px; text-align: left; font-size: 0.95rem; }
.pricing-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.pricing-table tr:nth-child(even) td { background: var(--off-white); }
