:root {
  --blue: #dc2626;
  --blue-dark: #7f1d1d;
  --blue-deep: #3f0b0b;
  --sky: #fff1f1;
  --text: #0f172a;
  --muted: #64748b;
  --line: #fecaca;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(15, 23, 42, .13);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.top-bar { background: var(--blue-deep); color: #fff; font-size: 14px; }
.top-bar-inner { min-height: 42px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.top-bar a { font-weight: 800; color: #fff; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid #eef2ff; box-shadow: 0 10px 30px rgba(15, 23, 42, .06); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 48px; height: 48px; border-radius: 16px; background: linear-gradient(145deg, var(--blue), #fb7185); color: #fff; font-weight: 950; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(220,38,38,.25); }
.brand strong { display: block; font-size: 20px; letter-spacing: -.03em; }
.brand small { display: block; color: var(--blue); text-transform: uppercase; font-weight: 900; font-size: 11px; letter-spacing: .18em; }
.main-nav { display: flex; align-items: center; gap: 28px; font-weight: 800; color: #334155; }
.main-nav a:hover { color: var(--blue); }
.nav-phone { background: var(--blue); color: #fff; padding: 13px 18px; border-radius: 14px; font-weight: 900; box-shadow: 0 14px 30px rgba(220,38,38,.22); }
.mobile-toggle { display: none; border: 0; background: var(--sky); color: var(--blue); width: 46px; height: 46px; border-radius: 12px; font-size: 24px; }
.hero { position: relative; min-height: 760px; overflow: hidden; display: flex; align-items: center; background: var(--blue-deep); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1); transition: opacity 1.1s ease; }
.hero-bg.active { opacity: 1; animation: heroZoom 7.8s ease-in-out forwards; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(63,11,11,.95), rgba(127,29,29,.78), rgba(127,29,29,.15)); }
.hero:after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 140px; background: linear-gradient(to top, #fff, transparent); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 430px; gap: 70px; align-items: center; padding: 90px 0 120px; }
.eyebrow, .section-kicker { display: inline-flex; color: var(--blue); background: var(--sky); border: 1px solid var(--line); padding: 10px 15px; border-radius: 999px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.hero .eyebrow { color: #fff; background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.24); }
.hero h1 { color: #fff; font-size: clamp(44px, 6vw, 82px); line-height: .98; letter-spacing: -.06em; margin: 26px 0; max-width: 820px; }
.hero p { color: rgba(255,255,255,.88); font-size: 21px; line-height: 1.65; max-width: 700px; margin: 0 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; padding: 15px 24px; font-weight: 950; border: 0; cursor: pointer; transition: .25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue), #f97373); box-shadow: 0 16px 35px rgba(220,38,38,.28); }
.btn-light { color: var(--blue-dark); background: #fff; box-shadow: 0 16px 35px rgba(15,23,42,.12); }
.btn-outline { color: var(--blue); background: #fff; border: 1px solid var(--line); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 620px; }
.hero-stats div { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.12); backdrop-filter: blur(10px); padding: 20px; border-radius: 20px; color: #fff; }
.hero-stats strong { display: block; font-size: 30px; }
.hero-stats span { display: block; font-size: 13px; color: #fee2e2; }
.hero-card { position: relative; }
.service-form-card { background: #fff; border-radius: 32px; padding: 34px; box-shadow: var(--shadow); border: 1px solid #fff1f1; }
.form-label { display: inline-flex; color: var(--blue); font-weight: 950; margin-bottom: 10px; }
.service-form-card h3 { font-size: 32px; margin: 0 0 10px; letter-spacing: -.04em; }
.service-form-card p { color: var(--muted); font-size: 16px; margin-bottom: 22px; }
form { display: grid; gap: 14px; }
input, select, textarea { width: 100%; border: 1px solid #fee2e2; border-radius: 14px; padding: 15px 16px; font: inherit; background: #fff; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(220,38,38,.10); }
.slider-dots { position: absolute; z-index: 5; bottom: 64px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.slider-dots button { width: 12px; height: 12px; border-radius: 99px; border: 0; background: rgba(255,255,255,.55); cursor: pointer; transition: .25s; }
.slider-dots button.active { width: 42px; background: #fff; }
.quick-cta { background: var(--blue); color: #fff; padding: 34px 0; }
.quick-cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.quick-cta span { color: #fee2e2; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }
.quick-cta h2 { margin: 6px 0 0; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.04em; }
.section { padding: 110px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 74px; align-items: center; }
.image-stack { position: relative; }
.image-stack img { height: 560px; width: 100%; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); }
.floating-badge { position: absolute; right: -28px; bottom: 32px; width: 280px; background: #fff; color: var(--blue-dark); padding: 24px; border-radius: 24px; box-shadow: var(--shadow); font-weight: 950; line-height: 1.4; }
.content-block h2, .section-heading h2 { font-size: clamp(38px, 5vw, 60px); line-height: 1.02; letter-spacing: -.055em; margin: 22px 0; }
.content-block p, .section-heading p { color: var(--muted); font-size: 19px; line-height: 1.7; }
.check-list { padding: 0; margin: 28px 0 0; display: grid; gap: 14px; list-style: none; }
.check-list li { background: #fff; border: 1px solid #fff1f1; box-shadow: 0 14px 30px rgba(15,23,42,.05); padding: 16px 18px; border-radius: 16px; font-weight: 850; }
.check-list li:before { content: "✓"; color: var(--blue); font-weight: 950; margin-right: 10px; }
.services-section, .reviews-section { background: #fff7f7; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card { background: #fff; border: 1px solid #fee2e2; border-radius: 28px; overflow: hidden; box-shadow: 0 18px 38px rgba(15,23,42,.08); transition: .3s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.service-card img { width: 100%; height: 230px; object-fit: cover; background: linear-gradient(135deg, #fff1f1, #fecaca); }
.service-card div { padding: 24px; }
.service-card h3 { margin: 0 0 10px; font-size: 24px; letter-spacing: -.035em; }
.service-card p { color: var(--muted); line-height: 1.65; margin: 0; }
.emergency-band { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; padding: 70px 0; position: relative; overflow: hidden; }
.emergency-band:before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; right: -130px; top: -170px; background: rgba(255,255,255,.11); }
.emergency-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; position: relative; }
.emergency-inner span { color: #fee2e2; font-weight: 950; text-transform: uppercase; letter-spacing: .12em; }
.emergency-inner h2 { margin: 12px 0; font-size: clamp(34px, 5vw, 56px); letter-spacing: -.055em; }
.emergency-inner p { color: #fee2e2; font-size: 19px; }
.plans-grid, .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.plan-card { padding: 32px; border-radius: 30px; border: 1px solid #fee2e2; box-shadow: 0 18px 42px rgba(15,23,42,.08); background: #fff; transition: .3s ease; }
.plan-card:hover, .review-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.plan-card.featured { background: var(--blue); color: #fff; transform: scale(1.04); }
.plan-card span { color: #fee2e2; font-weight: 950; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.plan-card h3 { margin: 0 0 16px; font-size: 27px; }
.plan-card strong { display: block; font-size: 44px; margin-bottom: 22px; }
.plan-card ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 13px; }
.plan-card li:before { content: "✓"; margin-right: 10px; font-weight: 950; }
.review-card { background: #fff; border: 1px solid #fee2e2; border-radius: 28px; padding: 30px; box-shadow: 0 18px 42px rgba(15,23,42,.07); transition: .3s ease; }
.review-card div { color: #f59e0b; font-size: 20px; letter-spacing: 3px; margin-bottom: 18px; }
.review-card p { color: #334155; line-height: 1.75; font-size: 18px; }
.faq-grid { align-items: start; }
.faq-list { display: grid; gap: 14px; }
details { background: #fff; border: 1px solid #fee2e2; border-radius: 20px; padding: 22px; box-shadow: 0 14px 32px rgba(15,23,42,.06); }
summary { cursor: pointer; font-weight: 950; font-size: 19px; }
details p { color: var(--muted); line-height: 1.7; }
.contact-section { background: #fff7f7; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(38px, 5vw, 58px); line-height: 1.04; letter-spacing: -.055em; }
.contact-info p { color: var(--muted); font-size: 19px; line-height: 1.7; }
.contact-items { display: grid; gap: 14px; margin-top: 28px; }
.contact-items div { background: #fff; border: 1px solid #fee2e2; border-radius: 18px; padding: 18px; box-shadow: 0 12px 28px rgba(15,23,42,.05); }
.contact-items span { display: block; color: var(--blue); font-weight: 950; margin-bottom: 5px; }
.contact-items a { font-size: 21px; font-weight: 950; }
.contact-items p { margin: 0; font-size: 16px; }
.contact-form { background: #fff; padding: 32px; border-radius: 30px; border: 1px solid #fee2e2; box-shadow: var(--shadow); }
.site-footer { background: var(--blue-deep); color: #fff; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 38px; }
.footer-grid h3, .footer-grid h4 { margin-top: 0; }
.footer-grid p, .footer-grid a { color: #cbd5e1; display: block; margin-bottom: 9px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); width: min(1180px, calc(100% - 40px)); margin: 34px auto 0; padding-top: 22px; color: #94a3b8; font-size: 14px; }
.sticky-call { position: fixed; right: 20px; bottom: 20px; z-index: 60; background: var(--blue); color: #fff; padding: 14px 20px; border-radius: 999px; font-weight: 950; box-shadow: 0 16px 34px rgba(220,38,38,.35); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
@media (max-width: 980px) {
  .main-nav, .nav-phone { display: none; }
  .mobile-toggle { display: block; }
  .main-nav.open { position: absolute; left: 20px; right: 20px; top: 92px; display: grid; gap: 0; background: #fff; border: 1px solid #fee2e2; border-radius: 20px; box-shadow: var(--shadow); padding: 14px; }
  .main-nav.open a { padding: 14px; }
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { padding-top: 70px; }
  .hero-card { display: none; }
  .services-grid, .plans-grid, .review-grid, .footer-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .floating-badge { position: static; width: auto; margin-top: -30px; margin-left: 20px; margin-right: 20px; }
  .image-stack img { height: 420px; }
  .quick-cta-grid, .emergency-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .top-bar-inner { flex-direction: column; align-items: flex-start; padding: 10px 0; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 18px; }
  .hero-stats { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .sticky-call { left: 18px; right: 18px; text-align: center; justify-content: center; display: flex; }
}

.image-fallback { min-height: 230px; background: linear-gradient(135deg, #fff1f1, #fecaca); }
