@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@700;800&display=swap');

:root {
  --red: #CC2200;
  --red-dark: #991A00;
  --black: #0a0a0a;
  --dark: #111;
  --gray: #888;
  --light-gray: #f5f5f5;
  --white: #fff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  border-bottom: 2px solid var(--red);
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--white);
}

.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem !important;
  letter-spacing: 1px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--red-dark) !important; }

/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0500 50%, #0a0a0a 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(204,34,0,0.05) 39px, rgba(204,34,0,0.05) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(204,34,0,0.05) 79px, rgba(204,34,0,0.05) 80px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0.4rem 1.5rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 4px;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero h1 span { color: var(--red); }

.hero p {
  font-size: 1.1rem;
  color: #bbb;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 1rem 2.25rem;
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--red);
  transition: all 0.2s;
}

.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 1rem 2.25rem;
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}

.btn-outline:hover { border-color: var(--white); }

/* STATS BAR */
.stats-bar {
  background: var(--red);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--white);
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* SECTIONS */
.section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1;
}

.section h2 span { color: var(--red); }

.section > p {
  font-size: 1rem;
  color: #aaa;
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: #222;
}

.service-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.3s;
}

.service-card:hover::before { height: 100%; }
.service-card:hover { background: #161616; }

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(204,34,0,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-condensed);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: #888;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-link:hover { gap: 10px; }

/* AREAS */
.areas-section {
  background: var(--dark);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 4rem 2rem;
}

.areas-inner { max-width: 1100px; margin: 0 auto; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: #222;
  margin-top: 2.5rem;
}

.area-item {
  background: var(--black);
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  transition: all 0.2s;
}

.area-item:hover { background: var(--dark); color: var(--red); }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: #222;
}

.review-card {
  background: var(--dark);
  padding: 2rem;
}

.stars {
  color: var(--red);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.review-author {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
}

/* CTA BANNER */
.cta-banner {
  background: var(--red);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--red);
  padding: 1rem 2.25rem;
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--white);
  transition: all 0.2s;
}

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

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--dark);
  border-bottom: 2px solid var(--red);
  padding: 4rem 2rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 4px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}

.page-hero h1 span { color: var(--red); }

.page-hero p {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FEATURES LIST */
.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--dark);
  border-left: 3px solid var(--red);
}

.features-list li span {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
}

/* FOOTER */
footer {
  background: #000;
  border-top: 2px solid var(--red);
  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: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  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: #666;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #444;
}

.footer-bottom a { color: var(--red); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .stats-bar { gap: 2rem; }
  footer { justify-content: center; text-align: center; }
}
