/* ═══ RESET & BASE ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #D42020;
  --red-dark:   #A01515;
  --red-light:  #E84444;
  --red-glow:   rgba(212, 32, 32, 0.28);
  --black:      #0A0A0A;
  --dark:       #111111;
  --dark2:      #181818;
  --dark3:      #222222;
  --white:      #FFFFFF;
  --off-white:  #F6F6F6;
  --gray:       #888888;
  --gray-light: #E0E0E0;
  --yellow:     #F5C518;
  --wa-green:   #25D366;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --radius:     14px;
  --radius-sm:  9px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }

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

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

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

.section { padding: 96px 0; }
.section-dark { background: var(--dark); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-label.light { color: var(--yellow); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.section-sub.light { color: rgba(255,255,255,0.55); }

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

/* ═══ BUTTONS ════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--red-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ═══ FLOATING WHATSAPP ══════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.40);
  transition: var(--transition);
  animation: waFloat 3s ease-in-out infinite;
}
.float-wa:hover {
  background: #1DA851;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.float-wa-label { font-weight: 700; font-size: 14px; letter-spacing: 0.3px; }

@keyframes waFloat {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,0.65); }
}

/* ═══ NAVBAR ═════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Left & right nav groups */
.nav-group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-right { justify-content: flex-end; }

.nav-group a {
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-group a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-group a:hover { color: var(--white); }
.nav-group a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

/* Centered logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition);
  display: block;
  border-radius: 6px;
}
.navbar.scrolled .logo-img { height: 46px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.mobile-nav.open {
  max-height: 500px;
  padding: 16px 0;
}
.mobile-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  font-weight: 500;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.mobile-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  margin: 12px 24px 4px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 700 !important;
  border-bottom: none !important;
}

/* ═══ HERO ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212,32,32,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(212,32,32,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 100% 0%, rgba(212,32,32,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  animation: particleDrift linear infinite;
}

@keyframes particleDrift {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.4; transform: translateY(-20px) scale(1); }
  90%  { opacity: 0.15; }
  100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  gap: 32px;
  align-items: center;
  width: 100%;
  padding: 110px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero left */
.hero-left { display: flex; flex-direction: column; }

.hero-location-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 100px;
}
.loc-badge-sep { color: rgba(255,255,255,0.25); font-size: 14px; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(54px, 7.5vw, 92px);
  line-height: 0.96;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.75;
}

.hero-counter {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  padding: 18px 22px;
  background: rgba(212,32,32,0.1);
  border: 1px solid rgba(212,32,32,0.25);
  border-radius: var(--radius-sm);
  width: fit-content;
}
.counter-inner {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}
.counter-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
}
.counter-plus {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--red);
  margin-top: 6px;
}
.counter-label {
  display: flex;
  flex-direction: column;
}
.counter-label strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.counter-label span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
}

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

/* Hero center */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.logo-glow-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(212,32,32,0.4);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.r1 { width: 115%; height: 115%; animation: ringPulse 2.4s ease-in-out infinite; }
.r2 { width: 138%; height: 138%; animation: ringPulse 2.4s ease-in-out 0.6s infinite; border-color: rgba(212,32,32,0.22); }
.r3 { width: 165%; height: 165%; animation: ringPulse 2.4s ease-in-out 1.2s infinite; border-color: rgba(212,32,32,0.1); }

@keyframes ringPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.2; transform: translate(-50%, -50%) scale(1.05); }
}

.logo-frame {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(212,32,32,0.5);
  box-shadow:
    0 0 0 6px rgba(212,32,32,0.08),
    0 0 60px rgba(212,32,32,0.25);
  animation: logoFloat 5s ease-in-out infinite;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 6px rgba(212,32,32,0.08), 0 0 60px rgba(212,32,32,0.25); }
  50%       { transform: translateY(-14px); box-shadow: 0 0 0 6px rgba(212,32,32,0.12), 0 0 80px rgba(212,32,32,0.35); }
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-center-tag {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* Hero right: store panels */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.store-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.store-panel:hover { border-color: rgba(212,32,32,0.3); }

.store-panel-head {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 16px;
}
.store-detail {
  margin-left: auto;
  background: rgba(255,255,255,0.15);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 0.5px;
}

.store-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}
.store-row:last-child { border-bottom: none; }
.store-row:hover { background: rgba(255,255,255,0.04); }

.srow-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.srow-phone { background: rgba(212,32,32,0.12); color: var(--red); }
.srow-wa    { background: rgba(37,211,102,0.12); color: var(--wa-green); }
.srow-mobile{ background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); }

.srow-label {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}
.srow-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-top: 2px;
}

.store-row-wa .srow-val { color: var(--wa-green); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.25);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50%       { transform: translateY(10px); opacity: 0.2; }
}

/* ═══ TICKER ═════════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  animation: ticker 38s linear infinite;
}
.ticker-track span {
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.ticker-track .dot {
  color: rgba(255,255,255,0.35);
  font-size: 6px;
  letter-spacing: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══ CATEGORIES ═════════════════════════════════════════════ */
.categories { background: var(--off-white); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon { font-size: 32px; margin-bottom: 12px; }
.cat-name { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: var(--black); }
.cat-sub  { font-size: 12px; color: var(--gray); }

/* ═══ ABOUT ══════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 72px;
}
.about-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.chip {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  transition: var(--transition);
}
.chip:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* Image mosaic */
.img-mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 420px;
}
.mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.mosaic-main { grid-row: 1 / 3; }
.mosaic-img:hover { transform: scale(1.02); }

/* Stats row */
.about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
}
.stat-box {
  flex: 1;
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-box:last-child { border-right: none; }
.stat-big {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}
.stat-big.accent { color: var(--red); }
.stat-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stat-divider { display: none; }

/* ═══ VIDEO SECTION ══════════════════════════════════════════ */
.video-section { background: var(--dark2); }

.video-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
  margin-top: 0;
}

.video-player-outer {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  background: var(--black);
}
.video-player-inner { position: relative; }

.testimonial-video {
  width: 100%;
  display: block;
  max-height: 480px;
  object-fit: cover;
  filter: brightness(1.06) contrast(1.08) saturate(1.12);
}

.video-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.video-stars { font-size: 22px; color: var(--yellow); letter-spacing: 3px; }
.video-meta p {
  font-size: 20px;
  color: var(--white);
  font-weight: 300;
  line-height: 1.65;
  font-style: italic;
}
.video-customer {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

/* ═══ SOCIAL SECTION ═════════════════════════════════════════ */
.social-section { background: var(--off-white); }

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

.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tiktok-card::before { background: linear-gradient(135deg, rgba(0,0,0,0.03), rgba(105,201,208,0.04)); }
.insta-card::before  { background: linear-gradient(135deg, rgba(193,53,132,0.04), rgba(253,29,29,0.04)); }

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.social-card:hover::before { opacity: 1; }

.social-card-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tiktok-card .social-card-icon { background: rgba(0,0,0,0.06); color: var(--black); }
.insta-card  .social-card-icon { background: rgba(193,53,132,0.08); color: #C13584; }

.social-card-body { flex: 1; }
.social-card-platform {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.social-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.social-card-hint { font-size: 13px; color: var(--gray); }

.social-card-play {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
  transition: var(--transition);
  padding-left: 3px;
}
.social-card:hover .social-card-play {
  background: var(--red-dark);
  transform: scale(1.1);
}

/* ═══ REVIEWS ════════════════════════════════════════════════ */
.reviews { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 72px;
  color: rgba(212,32,32,0.06);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(212,32,32,0.18);
}
.review-stars { color: var(--yellow); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text  { font-size: 14px; color: #555; line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.review-author{ display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 14px; }
.review-role { font-size: 12px; color: var(--gray); }

/* ═══ BRANDS ═════════════════════════════════════════════════ */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.brand-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.brand-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.brand-card:hover {
  border-color: rgba(212,32,32,0.3);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(212,32,32,0.12);
}
.brand-card:hover::after { transform: scaleX(1); }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.brand-cat {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.brands-more {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 14px;
  margin-top: 32px;
  font-style: italic;
}

/* ═══ LOCATIONS ══════════════════════════════════════════════ */
.locations { background: var(--white); }

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.loc-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,32,32,0.2);
}

.loc-card-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(212,32,32,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.loc-card-head {
  padding: 28px 28px 0;
  margin-bottom: 20px;
}
.loc-card-title {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--black);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.loc-card-addr {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.3px;
}

.loc-contacts {
  padding: 0 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.loc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.loc-row:hover { border-color: var(--red); background: rgba(212,32,32,0.02); }
.loc-wa:hover { border-color: var(--wa-green); background: rgba(37,211,102,0.02); }

.loc-row-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.loc-phone  { background: rgba(212,32,32,0.1); color: var(--red); }
.loc-waicon { background: rgba(37,211,102,0.12); color: var(--wa-green); }
.loc-mobile { background: rgba(0,0,0,0.06); color: var(--gray); }

.loc-row-lbl { font-size: 10px; color: var(--gray); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.loc-row-val { font-size: 14px; font-weight: 700; color: var(--black); margin-top: 1px; }

.loc-map-wrap {
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
}
.loc-map-wrap iframe { display: block; }

.btn-dir {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  background: rgba(212,32,32,0.04);
  border-top: 1px solid rgba(212,32,32,0.1);
  transition: background var(--transition);
  letter-spacing: 0.3px;
}
.btn-dir:hover { background: rgba(212,32,32,0.09); }

/* ═══ HOURS ══════════════════════════════════════════════════ */
.hours { background: var(--dark); }
.hours-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}

.hours-note-top {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hours-list { margin: 0 0 16px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hours-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.day  { color: rgba(255,255,255,0.8); font-weight: 500; font-size: 15px; }
.time { color: rgba(255,255,255,0.45); font-size: 15px; }
.hours-row.fri .time,
.hours-row.sat .time { color: var(--yellow); font-weight: 600; }
.hours-row.today-row {
  border-left: 3px solid var(--red);
  padding-left: 12px;
  background: rgba(212,32,32,0.07);
  border-radius: 0 4px 4px 0;
  margin-left: -3px;
}
.hours-row.today-row .day  { color: var(--white); font-weight: 700; }
.hours-row.today-row .time { color: var(--yellow); font-weight: 600; }

.hours-disclaimer {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}

/* Hours CTA card */
.hours-cta-col { display: flex; align-items: flex-start; padding-top: 80px; }
.hours-cta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  width: 100%;
}
.hours-cta-icon { font-size: 36px; margin-bottom: 16px; }
.hours-cta-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.hours-cta-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.hours-cta-numbers { display: flex; flex-direction: column; gap: 10px; }
.hours-num-btn {
  display: block;
  padding: 11px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}
.hours-num-btn:hover { background: rgba(212,32,32,0.12); border-color: rgba(212,32,32,0.3); }

/* ═══ FOOTER ═════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: contain;
}
.footer-tagline { color: rgba(255,255,255,0.4); font-size: 14px; max-width: 300px; line-height: 1.75; margin-bottom: 22px; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contacts a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contacts a:hover { color: var(--red); }

.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-col  { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--yellow); margin-bottom: 4px; }
.footer-col a    { font-size: 14px; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-col span { font-size: 14px; color: rgba(255,255,255,0.35); }

.footer-bottom { padding: 20px 0; }
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ═══ ANIMATIONS ═════════════════════════════════════════════ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-fade-up.delay-1 { animation-delay: 0.15s; }
.animate-fade-up.delay-2 { animation-delay: 0.30s; }
.animate-fade-up.delay-3 { animation-delay: 0.45s; }
.animate-fade-up.delay-4 { animation-delay: 0.60s; }

.animate-scale-up {
  opacity: 0;
  transform: scale(0.85);
  animation: scaleUp 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

@keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes scaleUp { to { opacity: 1; transform: scale(1); } }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.30s; }

/* ═══ RESPONSIVE ═════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 280px 1fr; gap: 20px; }
  .logo-glow-wrap { width: 200px; height: 200px; }
  .logo-frame { width: 164px; height: 164px; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 110px 24px 80px;
  }
  .hero-right { display: none; }
  .hero-center { order: -1; align-items: center; margin: 0 auto; }
  .hero-location-badges { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-counter { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .video-wrap { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .hours-inner { grid-template-columns: 1fr; gap: 48px; }
  .hours-cta-col { padding-top: 0; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .nav-logo { margin: 0 auto; }
  .nav-inner { position: relative; }

  .hero-scroll { display: none; }

  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { flex-wrap: wrap; }
  .stat-box { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .float-wa-label { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; }
}

@media (max-width: 540px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-cols { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .hours-inner { gap: 32px; }
}
