:root {
  --black: #0d0d0d;
  --black-2: #171717;
  --red: #d81e2c;
  --red-dark: #a4141f;
  --white: #ffffff;
  --gray: #b8b8b8;
}

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-weight: 800; letter-spacing: 0.5px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--red);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 1px;
}

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

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a { font-weight: 600; }
.site-nav a:hover { color: var(--red); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  text-align: center;
}

.btn-header {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
}

.btn-header:hover { background: var(--red-dark); }

.btn-primary {
  background: var(--red);
  color: var(--white);
}

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

.btn-large {
  font-size: 1.1rem;
  padding: 18px 36px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--black-2) 0%, var(--black) 100%);
  padding: 100px 0 80px;
  text-align: center;
  border-bottom: 1px solid #2a2a2a;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-sub {
  color: var(--gray);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* Trust strip */
.trust-strip {
  background: var(--red);
  padding: 14px 0;
  text-align: center;
}

.trust-strip p {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Services */
.services {
  padding: 80px 0;
}

.services h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 48px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--black-2);
  border: 1px solid #2a2a2a;
  border-top: 4px solid var(--red);
  border-radius: 6px;
  padding: 28px 22px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--gray);
}

/* Why Us */
.why-us {
  background: var(--black-2);
  padding: 80px 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}

.why-us-inner {
  max-width: 700px;
}

.why-us h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.why-us p {
  color: var(--gray);
  margin-bottom: 24px;
}

.checklist {
  list-style: none;
}

.checklist li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-weight: 600;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

/* CTA */
.cta {
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta p {
  color: var(--gray);
  margin-bottom: 28px;
}

/* Footer */
.site-footer {
  background: var(--black-2);
  border-top: 3px solid var(--red);
  padding: 40px 0 100px;
  text-align: center;
}

.footer-logo {
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--red); }

.site-footer p { color: var(--gray); margin-bottom: 8px; }
.site-footer a:hover { color: var(--red); }
.footer-note { font-size: 0.85rem; }

/* Mobile call bar */
.mobile-call-bar {
  display: none;
}

@media (max-width: 700px) {
  .site-nav { display: none; }
  .hero h1 { font-size: 2.1rem; }
  .hero { padding: 60px 0 70px; }

  .mobile-call-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--red);
    color: var(--white);
    text-align: center;
    font-weight: 700;
    padding: 16px 12px;
    z-index: 200;
  }

  .site-footer { padding-bottom: 90px; }
}
