* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Arial', sans-serif; background: #0d0d0d; color: #fff; }
a { color: inherit; text-decoration: none; }

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, #1a1a1a 39px, #1a1a1a 40px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, #1a1a1a 79px, #1a1a1a 80px);
  background-color: #0d0d0d;
  pointer-events: none;
  z-index: 0;
}

nav {
  position: sticky; top: 0; z-index: 100;
  background: #000; border-bottom: 2px solid #CC2200;
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.logo-svg { width: 160px; height: 55px; }
.nav-links {
  display: flex; list-style: none; gap: 1.5rem; align-items: center;
}
.nav-links a {
  font-family: 'Impact', sans-serif; font-size: 0.85rem;
  letter-spacing: 2px; text-transform: uppercase; color: #aaa;
  transition: color 0.2s;
}
.nav-links a:hover { color: #CC2200; }
.call-btn {
  background: #CC2200; color: #fff;
  padding: 0.7rem 1.5rem; border-radius: 6px;
  font-size: 1rem; font-weight: 900;
  font-family: 'Impact', sans-serif; letter-spacing: 1px;
  border: 2px solid #CC2200; transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.call-btn:hover { background: transparent; color: #CC2200; }

.hero {
  position: relative; z-index: 1;
  min-height: 90vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 4rem 2rem;
}
.hero-badge {
  display: inline-block; background: #CC2200; color: #fff;
  font-family: 'Impact', sans-serif; font-size: 0.85rem; letter-spacing: 3px;
  padding: 0.4rem 1.2rem; border-radius: 4px;
  margin-bottom: 2rem; text-transform: uppercase;
}
.hero h1 {
  font-family: 'Impact', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900; letter-spacing: 2px;
  color: #CC2200; text-transform: uppercase;
  margin-bottom: 1rem; line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.hero h1 span { color: #ffffff !important; text-shadow: 2px 2px 6px rgba(0,0,0,0.9); }
.hero p { font-size: 1.1rem; color: #aaa; max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #CC2200; color: #fff;
  padding: 1.1rem 2.5rem; border-radius: 6px;
  font-family: 'Impact', sans-serif; font-size: 1.4rem; letter-spacing: 2px;
  border: 3px solid #CC2200; transition: all 0.2s;
}
.hero-cta:hover { background: transparent; color: #CC2200; }
.hero-sub { margin-top: 1rem; font-size: 0.85rem; color: #666; letter-spacing: 1px; }

.page-hero {
  position: relative; z-index: 1;
  padding: 5rem 2rem 4rem;
  text-align: center;
  border-bottom: 2px solid #CC2200;
}
.page-hero .section-label {
  font-family: 'Impact', sans-serif; font-size: 0.8rem;
  letter-spacing: 4px; color: #CC2200; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-family: 'Impact', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: 3px; text-transform: uppercase;
  color: #fff; margin-bottom: 1rem;
}
.page-hero h1 span { color: #CC2200; }
.page-hero p { color: #aaa; font-size: 1.05rem; max-width: 640px; margin: 0 auto 2rem; line-height: 1.7; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #CC2200; color: #fff;
  padding: 1rem 2rem; border-radius: 6px;
  font-family: 'Impact', sans-serif; font-size: 1.2rem; letter-spacing: 2px;
  border: 2px solid #CC2200; transition: all 0.2s;
}
.btn-primary:hover { background: transparent; color: #CC2200; }

.stats-bar {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #CC2200;
}
.stat { padding: 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); }
.stat:last-child { border-right: none; }
.stat-num { display: block; font-family: 'Impact', sans-serif; font-size: 2rem; font-weight: 900; color: #fff; }
.stat-label { display: block; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-top: 0.25rem; }

.section { position: relative; z-index: 1; padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label { font-family: 'Impact', sans-serif; font-size: 0.8rem; letter-spacing: 4px; color: #CC2200; text-transform: uppercase; margin-bottom: 0.5rem; }
.section h2 { font-family: 'Impact', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; letter-spacing: 3px; color: #fff; text-transform: uppercase; }
.section h2 span { color: #CC2200; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.service-card { background: #111; border: 1px solid #222; border-top: 3px solid #CC2200; border-radius: 8px; padding: 2rem 1.5rem; transition: all 0.2s; }
.service-card:hover { background: #161616; }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-family: 'Impact', sans-serif; font-size: 1.1rem; letter-spacing: 2px; color: #fff; text-transform: uppercase; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.875rem; color: #888; line-height: 1.65; }
.service-link { display: inline-block; margin-top: 1rem; font-size: 0.85rem; color: #CC2200; font-weight: 700; letter-spacing: 1px; }

.features-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.features-list li { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.5rem; background: #111; border-left: 3px solid #CC2200; border-radius: 0 6px 6px 0; }
.features-list li::before { content: '\2713'; color: #CC2200; font-weight: 900; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.features-list span { color: #aaa; font-size: 0.95rem; line-height: 1.6; }

.areas-section { position: relative; z-index: 1; background: #111; border-top: 2px solid #CC2200; border-bottom: 2px solid #CC2200; padding: 4rem 2rem; }
.areas-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.area-item { background: #0a0a0a; border: 1px solid #222; border-radius: 6px; padding: 0.75rem 1rem; text-align: center; font-size: 0.875rem; color: #aaa; letter-spacing: 1px; font-weight: 700; text-transform: uppercase; transition: all 0.2s; }
.area-item:hover { border-color: #CC2200; color: #CC2200; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.review-card { background: #111; border: 1px solid #222; border-radius: 8px; padding: 1.5rem; }
.stars { color: #CC2200; font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: #aaa; line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.review-author { font-size: 0.8rem; color: #666; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.why-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 0; }
.why-bullet { width: 24px; height: 24px; background: #CC2200; border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; color: #fff; margin-top: 2px; }
.why-item p { font-size: 0.9rem; color: #aaa; font-weight: 600; line-height: 1.5; }

.cta-section { position: relative; z-index: 1; background: #CC2200; padding: 5rem 2rem; text-align: center; }
.cta-section h2 { font-family: 'Impact', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; letter-spacing: 4px; color: #fff; text-transform: uppercase; margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-call-btn { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: #CC2200; padding: 1.1rem 2.5rem; border-radius: 6px; font-family: 'Impact', sans-serif; font-size: 1.5rem; letter-spacing: 2px; border: 3px solid #fff; transition: all 0.2s; }
.cta-call-btn:hover { background: transparent; color: #fff; }

.policy-content { max-width: 800px; margin: 0 auto; padding: 3rem 2rem 5rem; position: relative; z-index: 1; }
.policy-content h2 { font-family: 'Impact', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #CC2200; margin: 2.5rem 0 0.75rem; }
.policy-content p, .policy-content li { color: #aaa; line-height: 1.8; font-size: 0.95rem; }
.policy-content ul { margin-left: 1.5rem; margin-top: 0.5rem; }
.policy-content li { margin-bottom: 0.4rem; }
.policy-date { color: #555; font-size: 0.85rem; margin-bottom: 2rem; }

footer { position: relative; z-index: 1; background: #000; border-top: 2px solid #CC2200; padding: 3rem 2rem 1.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand p { font-size: 0.875rem; color: #555; line-height: 1.7; margin-top: 1rem; }
.footer-col h4 { font-family: 'Impact', sans-serif; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; color: #CC2200; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.875rem; color: #555; transition: color 0.2s; }
.footer-col ul li a:hover { color: #CC2200; }
.footer-bottom { border-top: 1px solid #1a1a1a; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.8rem; color: #333; }
.footer-bottom a { color: #CC2200; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 600px) {
  nav { padding: 0.75rem 1rem; }
  .hero { min-height: 70vh; }
  .page-hero { padding: 3rem 1.5rem 2.5rem; }
  .section { padding: 3rem 1.5rem; }
}
