:root {
  --gold: #d8b24c;
  --gold-2: #f3df84;
  --red: #d21111;
  --black: #070707;
  --black-soft: #121212;
  --white: #ffffff;
  --text: #f4f4f4;
  --muted: #b7b7b7;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(0,0,0,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f4f4f4;
  color: #151515;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: #07162c;
  color: #fff;
  font-size: 13px;
}
.topbar-wrap {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a { color: var(--gold-2); font-weight: 700; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.header-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img { height: 56px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  color: #242424;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.btn-rastreador {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  padding: 12px 22px;
  border-radius: 999px;
}
.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #1b1b1b;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #000;
}
.slider,
.hero-overlay,
.slide {
  position: absolute;
  inset: 0;
}
.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.78) 32%, rgba(54,0,0,.48) 72%, rgba(110,0,0,.62) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.52) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 650px;
  color: #fff;
  padding: 80px 0 130px;
}
.eyebrow,
.section-label {
  display: inline-block;
  color: #f1d968;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 15px;
  margin-bottom: 16px;
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 88px);
  line-height: .95;
  font-weight: 900;
}
.hero p {
  margin: 0;
  max-width: 560px;
  color: #f0f0f0;
  font-size: 25px;
  line-height: 1.45;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 800;
  transition: .25s ease;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #ff2a2a, #d20f0f);
  box-shadow: 0 14px 30px rgba(210,17,17,.35);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.highlights {
  margin-top: -72px;
  position: relative;
  z-index: 4;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.mini-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, #370303, #1e0101);
  color: #f1d968;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 18px;
}
.mini-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.mini-card p {
  margin: 0;
  color: #5d5d5d;
  line-height: 1.6;
}

.section {
  padding: 105px 0;
}
.about-grid,
.quote-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
}
.about h2,
.section-head h2,
.quote h2,
.cta-strip h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}
.about p,
.section-head p,
.quote p {
  color: #5a5a5a;
  line-height: 1.8;
  font-size: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.stat-box {
  background: #101010;
  color: #fff;
  border-radius: 14px;
  padding: 28px;
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stat-box strong {
  color: #f1d968;
  font-size: 32px;
  font-weight: 900;
}
.stat-box span {
  color: #dbdbdb;
  line-height: 1.5;
}

.center { text-align: center; max-width: 820px; margin: 0 auto 46px; }
.services {
  background: linear-gradient(180deg, #f7f7f7, #ededed);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border-top: 4px solid var(--gold);
}
.service-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}
.service-card p {
  margin: 0;
  color: #5e5e5e;
  line-height: 1.7;
}

.cta-strip {
  background: linear-gradient(90deg, #0e0e0e 0%, #1a1a1a 50%, #340000 100%);
  color: #fff;
  padding: 70px 0;
}
.cta-strip-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-strip h2 { margin-bottom: 0; max-width: 760px; }

.quote {
  background: #fff;
}
.quote ul {
  padding-left: 20px;
  color: #444;
  line-height: 1.8;
}
.quote-form {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-row.single { grid-template-columns: 1fr; }
.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  font: inherit;
  padding: 16px 18px;
  outline: none;
}
.quote-form textarea {
  min-height: 140px;
  resize: vertical;
}
.full { width: 100%; border: 0; cursor: pointer; }

.footer {
  background: #0d0d0d;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 32px;
  padding: 70px 0 34px;
}
.footer-logo { height: 74px; margin-bottom: 18px; width: auto; }
.footer p,
.footer li,
.footer a { color: #d4d4d4; line-height: 1.8; }
.footer h4 {
  margin-top: 0;
  color: #fff;
  font-size: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0 24px;
}
.footer-bottom p { margin: 0; color: #b9b9b9; }

@media (max-width: 1024px) {
  .cards-grid,
  .services-grid,
  .about-grid,
  .quote-grid,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid .mini-card:last-child { grid-column: span 2; }
  .cta-strip-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 860px) {
  .mobile-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px 20px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .hero { min-height: 640px; }
  .hero-inner { min-height: 640px; }
  .hero-content { padding-bottom: 120px; }
  .hero p { font-size: 20px; }
  .cards-grid,
  .services-grid,
  .about-grid,
  .quote-grid,
  .footer-grid,
  .about-stats,
  .form-row { grid-template-columns: 1fr; }
  .cards-grid .mini-card:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar-wrap { flex-direction: column; justify-content: center; padding: 10px 0; }
  .header-wrap { min-height: 78px; }
  .brand img { height: 48px; }
  .hero { min-height: 580px; }
  .hero-inner { min-height: 580px; }
  .hero-content { padding-top: 40px; padding-bottom: 105px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .mini-card,
  .service-card,
  .quote-form,
  .stat-box { padding: 24px 20px; }
  .section { padding: 82px 0; }
}
