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

:root {
  --black: #0a0a0a;
  --red: #e8000d;
  --grey: #141414;
  --muted: #666;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(10,10,10,0.98), transparent);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--white);
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: flex; gap: 8px; list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.07);
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
  background: var(--red);
  color: white;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 48px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 50%, #1a0002 0%, var(--black) 65%);
}

.hero-bg-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(160px, 22vw, 300px);
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
}

.hero-stripe {
  position: absolute;
  left: 38%;
  top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  opacity: 0.6;
  transform: skewX(-6deg);
}

.hero-content {
  position: relative; z-index: 2;
  animation: fadeUp 0.9s ease both;
}

.hero-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.outline {
 -webkit-text-stroke: 2px white;
color: transparent;
}

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

.hero-sub {
  margin-top: 24px;
  font-size: 1rem;
  font-weight: 300;
  color: #999;
  font-style: italic;
  max-width: 340px;
  line-height: 1.6;
}

.hero-btns {
  margin-top: 36px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 32px;
  background: var(--red);
  color: white;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s;
}
.btn-primary:hover { background: #ff1a24; }
.btn-primary:active { transform: scale(0.96); }

.btn-whatsapp {
  padding: 14px 32px;
  background: transparent;
  color: white;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.2s, background 0.2s;
}
.btn-whatsapp:hover {
  border-color: #25D366;
  background: #25D366;
  color: white;
}
.btn-whatsapp:active { transform: scale(0.96); }
.btn-whatsapp.big {
  font-size: 1rem;
  padding: 16px 40px;
  background: #25D366;
  border-color: #25D366;
  margin-bottom: 28px;
}
.btn-whatsapp.big:hover { background: #1fba58; }

/* ── ABOUT ── */
.about {
  padding: 120px 48px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  border-top: 1px solid #1e1e1e;
  position: relative;
}

.about-number, .section-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  min-width: 100px;
  user-select: none;
}

.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
}
.about-text h2 em {
  color: var(--red);
  font-style: italic;
}

.about-text p {
  color: #aaa;
  font-size: 0.98rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 16px;
  display: block;
  text-align: left;
  justify-content: unset;
}

.stats-row {
  display: flex; gap: 40px; margin-top: 40px;
}
.stat span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--red);
  display: block;
}
.stat p {
  font-size: 0.75rem !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555 !important;
  margin: 0 !important;
}

/* ── PRODUCTS ── */
.products {
  padding: 80px 48px 120px;
  border-top: 1px solid #1e1e1e;
}

.section-header {
  display: flex; align-items: center; gap: 20px; margin-bottom: 50px;
}

.section-header h2, .contact h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

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

.card {
  background: var(--grey);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #222;
  transition: transform 0.25s, border-color 0.25s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}

.card-img {
  width: 100%; height: 220px;
  overflow: hidden;
  background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.card:hover .card-img img { transform: scale(1.06); }

.card-info {
  padding: 16px 20px;
}
.card-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
.card-info p {
  font-size: 0.78rem;
  color: #555;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
  text-align: left;
}

/* ── CONTACT ── */
.contact {
  padding: 80px 48px 100px;
  border-top: 1px solid #1e1e1e;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.contact .section-num {
  font-size: 5rem;
  margin-bottom: -20px;
}

.contact-sub {
  color: #666;
  font-size: 1rem;
  font-style: italic;
  margin: 12px 0 32px;
  display: block;
  text-align: center;
}

.address {
  display: flex; align-items: center; gap: 10px;
  color: #555;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.address p { color: #555; display: block; text-align: center; }

/* ── FOOTER ── */
footer {
  padding: 24px 48px;
  border-top: 1px solid #1a1a1a;
  text-align: center;
  font-size: 0.8rem;
  color: #333;
  letter-spacing: 0.1em;
}
footer .red { color: var(--red); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav { padding: 16px 20px; }
  .nav-logo { font-size: 1.4rem; }
  .hero { padding: 0 20px; }
  .about { padding: 80px 20px; flex-direction: column; gap: 0; }
  .about-number { font-size: 4rem; }
  .products { padding: 60px 20px; }
  .contact { padding: 60px 20px; }
  footer { padding: 20px; }
  .stats-row { gap: 24px; }
}