:root {
  --red: #f10d12;
  --red-dark: #c90005;
  --red-soft: #fff0f0;
  --black: #090909;
  --black-2: #111111;
  --white: #ffffff;
  --muted: #666666;
  --border: #e8e8e8;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  width: 170px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:not(.nav-whatsapp):hover { color: var(--red); }

.nav-whatsapp {
  background: var(--black);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 999px;
}

.nav-whatsapp:hover { background: var(--red); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 30%, rgba(241,13,18,.12), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fffafa 100%);
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 50px;
  padding: 75px 0;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 900;
  margin-bottom: 14px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: .99;
  letter-spacing: -.055em;
  margin-bottom: 25px;
}

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

.hero-copy > p {
  max-width: 600px;
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 30px rgba(241,13,18,.22);
}

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

.btn-outline {
  border: 1.5px solid #d5d5d5;
  background: var(--white);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 55px;
}

.trust-row div {
  display: grid;
  gap: 2px;
}

.trust-row strong { font-size: 14px; }
.trust-row span { color: #777; font-size: 12px; }

.hero-logo-card {
  min-height: 440px;
  position: relative;
  display: grid;
  place-items: center;
  background: var(--black);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #252525;
}

.hero-logo-card::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.hero-logo-card::after {
  content: "";
  position: absolute;
  inset: auto -10% 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(241,13,18,.12));
}

.logo-wrap {
  position: relative;
  z-index: 3;
  width: 82%;
  padding: 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 26px;
}

.logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.speed-line {
  position: absolute;
  right: -70px;
  height: 3px;
  background: var(--red);
  opacity: .7;
  transform: rotate(-18deg);
  border-radius: 99px;
}

.line-1 { width: 260px; top: 100px; }
.line-2 { width: 190px; top: 135px; right: -35px; opacity: .35; }

.road-mark {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  width: 75%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    white 0 45px,
    transparent 45px 80px
  );
  opacity: .25;
}

.section { padding: 110px 0; }

.section-heading {
  max-width: 680px;
  margin-bottom: 45px;
}

.section-heading h2,
.location-copy h2,
.contact-card h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.045em;
  margin-bottom: 15px;
}

.section-heading p,
.location-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 15px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.feature-card h3 { font-size: 19px; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 14px; margin-bottom: 0; }

.location-section {
  background: #f7f7f7;
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.location-copy {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: 0 12px 45px rgba(0,0,0,.06);
}

.location-text {
  min-height: 52px;
  margin-bottom: 28px;
}

.map-placeholder {
  min-height: 340px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255,255,255,.78), rgba(255,255,255,.78)),
    repeating-linear-gradient(45deg, #dedede 0 2px, transparent 2px 28px);
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-placeholder .map-pin {
  font-size: 54px;
  margin-bottom: 8px;
}

.map-placeholder strong { font-size: 18px; }
.map-placeholder span { color: #777; font-size: 13px; }

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

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-card .eyebrow { color: #ffd5d5; }
.contact-card p { color: rgba(255,255,255,.82); max-width: 650px; }
.btn-light { background: var(--white); color: var(--black); }
.btn-light:hover { color: var(--red); }

.footer {
  background: var(--black);
  color: #aaa;
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand img {
  width: 150px;
  display: block;
}

.footer p { margin: 0; font-size: 12px; }

@media (max-width: 850px) {
  .nav { height: 72px; }
  .nav-links a:not(.nav-whatsapp) { display: none; }
  .nav-whatsapp { padding: 9px 14px; }

  .hero-grid,
  .location-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 65px 0;
  }

  .hero-logo-card { min-height: 350px; }

  .feature-grid { grid-template-columns: 1fr; }

  .section { padding: 80px 0; }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand img { width: 140px; }
  .nav-whatsapp { font-size: 12px; }

  h1 { font-size: 48px; }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    gap: 18px;
    margin-top: 38px;
  }

  .hero-logo-card { min-height: 270px; }
  .logo-wrap { width: 90%; padding: 18px; }

  .location-copy { padding: 32px 24px; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Downloads menu */
.downloads-menu { position: relative; }
.downloads-toggle {
  border: 0; background: transparent; font: inherit; font-weight: 700;
  color: var(--black); cursor: pointer; padding: 10px 0;
}
.downloads-toggle:hover { color: var(--red); }
.chevron { margin-left: 4px; font-size: 16px; }
.downloads-dropdown {
  position: absolute; right: 0; top: calc(100% + 8px); width: 285px;
  padding: 8px; border: 1px solid var(--border); border-radius: 16px;
  background: var(--white); box-shadow: 0 18px 45px rgba(0,0,0,.14);
  display: none; z-index: 30;
}
.downloads-menu:hover .downloads-dropdown,
.downloads-menu:focus-within .downloads-dropdown,
.downloads-menu.open .downloads-dropdown { display: block; }
.downloads-dropdown a {
  display: flex; align-items: center; gap: 12px; padding: 13px; border-radius: 11px;
}
.downloads-dropdown a:hover { background: var(--red-soft); }
.downloads-dropdown a > span:first-child {
  width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center;
  border-radius: 10px; background: var(--red-soft); color: var(--red);
}
.downloads-dropdown strong, .downloads-dropdown small,
.download-item strong, .download-item small { display: block; }
.downloads-dropdown strong { font-size: 13px; }
.downloads-dropdown small { color: #777; font-size: 11px; margin-top: 2px; }

.downloads-section { background: #fff; }
.downloads-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 35px; align-items: center;
  padding: 42px; border: 1px solid var(--border); border-radius: var(--radius);
  background: #fafafa;
}
.download-actions { display: grid; gap: 12px; }
.download-item {
  display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 14px;
  padding: 15px 17px; border: 1px solid var(--border); border-radius: 15px;
  background: var(--white); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.download-item:hover {
  transform: translateY(-2px); border-color: rgba(241,13,18,.35);
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
}
.download-icon {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px;
  background: var(--red-soft); color: var(--red); font-size: 20px;
}
.download-item strong { font-size: 14px; }
.download-item small { color: #777; font-size: 11px; margin-top: 2px; }
.download-item b { color: var(--red); font-size: 20px; }

@media (max-width: 850px) {
  .downloads-card { grid-template-columns: 1fr; padding: 30px; }
}
@media (max-width: 520px) {
  .downloads-menu { display: none; }
}
