/* ============================================
   BANDAR AKI APP — Landing Page Styles
   ============================================ */

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  padding: var(--sp-4) 0;
  transition: var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border-subtle);
  padding: var(--sp-3) 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  position: relative;
  z-index: calc(var(--z-overlay) + 10);
}

.navbar__logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  color: #fff;
  box-shadow: var(--shadow-glow-sm);
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text-primary);
}

.navbar__logo-text span {
  color: var(--clr-primary-400);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.navbar__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-primary-500);
  transition: var(--transition-base);
  border-radius: 1px;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--clr-text-primary);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  position: relative;
  z-index: calc(var(--z-overlay) + 10);
}

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text-primary);
  border-radius: 2px;
  transition: var(--transition-base);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--sp-20);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(220, 38, 38, 0.15) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 20% 80%, rgba(127, 29, 29, 0.1) 0%, transparent 60%);
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);
}

/* Floating orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}

.hero__orb--1 {
  width: 400px; height: 400px;
  background: rgba(220, 38, 38, 0.15);
  top: 10%; right: 5%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 300px; height: 300px;
  background: rgba(248, 113, 113, 0.1);
  bottom: 15%; left: 10%;
  animation-delay: -3s;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero__text {
  max-width: 580px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.35rem 1rem;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--clr-primary-400);
  margin-bottom: var(--sp-6);
  animation: fadeInUp 0.6s var(--ease-spring) forwards;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--clr-primary-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: fadeInUp 0.7s var(--ease-spring) 0.1s forwards;
}

.hero__title .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
  max-width: 480px;
  opacity: 0;
  animation: fadeInUp 0.7s var(--ease-spring) 0.2s forwards;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  opacity: 0;
  animation: fadeInUp 0.7s var(--ease-spring) 0.3s forwards;
}

.hero__stats {
  display: flex;
  gap: var(--sp-10);
  margin-top: var(--sp-12);
  opacity: 0;
  animation: fadeInUp 0.7s var(--ease-spring) 0.4s forwards;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text-primary);
}

.hero__stat-value span {
  color: var(--clr-primary-400);
}

.hero__stat-label {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-top: var(--sp-1);
}

/* Hero visual (right side) - Slider */
.hero__slider {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16/9;
  min-height: 280px; /* Fallback height */
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: #1f2937; /* Dark gray fallback background */
  opacity: 1; /* Temporarily remove opacity 0 for debugging */
}

.slider__track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 1.2s ease-out;
  transform: scale(1.05);
  pointer-events: none;
}

.slider__slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.slider__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slider__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-6);
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s var(--ease-spring) 0.3s;
}

.slider__slide.active .slider__content {
  transform: translateY(0);
  opacity: 1;
}

.slider__badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--clr-primary-500);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-2);
}

.slider__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-1);
}

.slider__price {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.9);
}

.slider__price span {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-400);
}

.slider__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  padding: var(--sp-2) var(--sp-4);
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-lg);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.slider__wa-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.slider__nav {
  position: absolute;
  bottom: var(--sp-4);
  right: var(--sp-6);
  display: flex;
  gap: var(--sp-2);
  z-index: 10;
}

.slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.slider__dot.active {
  background: var(--clr-primary-500);
  width: 24px;
  border-radius: 4px;
}

.slider__controls {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 var(--sp-4);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__slider:hover .slider__controls {
  opacity: 1;
}

.slider__arrow {
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: var(--transition-base);
}

.slider__arrow:hover {
  background: var(--clr-primary-500);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .hero__slider {
    margin: 0 auto;
    max-width: 100%;
  }
}

/* ── Battery Finder Section ── */
.finder {
  padding: var(--sp-12) 0;
  margin-top: calc(var(--sp-20) * -1);
  position: relative;
  z-index: 10;
}

.finder__card {
  background: linear-gradient(160deg, rgba(17, 24, 39, 0.88) 0%, rgba(25, 15, 22, 0.82) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-2xl);
  padding: var(--sp-10);
  box-shadow:
    0 25px 60px -12px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.finder__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, rgba(220, 38, 38, 0.6) 30%, rgba(248, 113, 113, 0.4) 50%, rgba(220, 38, 38, 0.6) 70%, transparent 95%);
}

.finder__header {
  margin-bottom: var(--sp-8);
}

.finder__header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-2);
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.finder__title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text-primary);
}

.finder__subtitle {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.finder__reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.18);
  color: var(--clr-primary-400);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.finder__reset svg {
  transition: transform 0.4s ease;
}

.finder__reset:hover {
  background: rgba(220, 38, 38, 0.16);
  border-color: rgba(220, 38, 38, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.finder__reset:hover svg {
  transform: rotate(-360deg);
}

/* Step Number Badge */
.finder__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--clr-primary-500), #b91c1c);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
  letter-spacing: 0;
  text-transform: none;
}

/* Steps wrapper */
.finder__steps {
  margin-bottom: var(--sp-6);
}

.finder__form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.finder__group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.finder__label {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  color: var(--clr-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.finder__select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 0.8rem 1rem;
  padding-right: 2.5rem;
  color: var(--clr-text-primary);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.1rem;
}

.finder__select:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(220, 38, 38, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.finder__select:focus {
  outline: none;
  border-color: var(--clr-primary-500);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12), 0 0 24px rgba(220, 38, 38, 0.06);
}

.finder__select:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ── Shipping Address Section ── */
.finder__shipping {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(17, 24, 39, 0.4) 100%);
  border: 1px solid rgba(220, 38, 38, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--sp-7);
  margin-bottom: var(--sp-8);
  position: relative;
  overflow: hidden;
}

.finder__shipping::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.5), rgba(248, 113, 113, 0.3), transparent);
}

.finder__shipping-header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.finder__shipping-icon {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.18), rgba(220, 38, 38, 0.06));
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
  flex-shrink: 0;
}

.finder__shipping-info {
  flex: 1;
}

.finder__shipping-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.finder__shipping-desc {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-top: 2px;
}

.finder__shipping-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.finder__group--full {
  grid-column: 1 / -1;
}

.finder__input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 0.8rem 1rem;
  color: var(--clr-text-primary);
  font-size: var(--fs-sm);
  transition: all 0.25s ease;
  width: 100%;
}

.finder__input::placeholder {
  color: var(--clr-text-muted);
  font-size: var(--fs-xs);
}

.finder__input:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(220, 38, 38, 0.45);
  transform: translateY(-1px);
}

.finder__input:focus {
  outline: none;
  border-color: var(--clr-primary-500);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12), 0 0 24px rgba(220, 38, 38, 0.06);
}

.finder__input:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.finder__footer {
  max-width: 480px;
  margin: 0 auto;
}

.btn-full {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-2);
}

/* Responsive Finder */
@media (max-width: 1024px) {
  .finder__card {
    padding: var(--sp-8);
  }
  .finder__form {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .finder {
    margin-top: 0;
    padding: var(--sp-6) 0;
  }
  .finder__card {
    padding: var(--sp-5);
    border-radius: var(--radius-xl);
  }
  .finder__title {
    font-size: var(--fs-lg);
  }
  .finder__form {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  .finder__shipping {
    padding: var(--sp-5);
  }
  .finder__shipping-form {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  .finder__footer {
    max-width: 100%;
  }
}

/* ── Features Section ── */
.features {
  padding: var(--sp-24) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-16);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-primary-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-4);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--sp-4);
}

.section-desc {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 500px;
  margin-inline: auto;
}

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

.feature-card {
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glass);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: var(--shadow-xl);
}

.feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-4);
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.feature-card__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-3);
}

.feature-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

/* ── Services Section ── */
.services {
  padding: var(--sp-24) 0;
  background: rgba(220, 38, 38, 0.02);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-8);
}

.service-card {
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--sp-8);
  transition: var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card__icon-container {
  width: 60px;
  height: 60px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.service-card__icon {
  font-size: 2rem;
}

.service-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-4);
  color: var(--clr-text-primary);
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
}

.service-card__list {
  margin-top: auto;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.service-card__list li {
  font-size: var(--fs-xs);
  color: var(--clr-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.service-card__list li::before {
  content: '→';
  color: var(--clr-primary-500);
  font-weight: var(--fw-bold);
}

/* Duplicate feature-card rules removed — originals at line ~645 */

/* ── Products Section ── */
.products {
  padding: var(--sp-24) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(220, 38, 38, 0.03) 50%, transparent 100%);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

/* ── Product Tab Switcher ── */
.products__tabs {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-10);
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 5px;
  max-width: 380px;
  margin-inline: auto;
}

.products__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.products__tab svg {
  transition: all 0.35s ease;
  opacity: 0.5;
}

.products__tab:hover {
  color: var(--clr-text-secondary);
}

.products__tab:hover svg {
  opacity: 0.75;
}

.products__tab.active {
  color: #fff;
}

.products__tab.active svg {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(220, 38, 38, 0.4));
}

.products__tab-indicator {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc(50% - 5px);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.85), rgba(185, 28, 28, 0.95));
  border-radius: var(--radius-lg);
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.products__tab-indicator.right {
  transform: translateX(calc(100% + 5px));
}

/* ── Product Panels ── */
.products__panel {
  display: none;
  animation: fadeInUp 0.45s ease forwards;
}

.products__panel.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Brand Group Sections ── */
.brand-group {
  margin-bottom: var(--sp-10);
  position: relative;
}

.brand-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  background: linear-gradient(135deg, rgba(220,38,38,0.08) 0%, rgba(255,255,255,0.03) 50%, rgba(59,130,246,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.brand-group__header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--clr-primary-500), var(--clr-primary-700));
  border-radius: 4px 0 0 4px;
}

.brand-group__header::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 200px;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,0.04));
  pointer-events: none;
}

.brand-toggle-btn {
  font-size: 0.8rem !important;
  color: var(--clr-primary-400) !important;
  border: 1px solid rgba(220,38,38,0.2) !important;
  background: rgba(220,38,38,0.06) !important;
  border-radius: var(--radius-full) !important;
  padding: 0.4rem 1rem !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.brand-toggle-btn:hover {
  background: rgba(220,38,38,0.15) !important;
  border-color: rgba(220,38,38,0.4) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(220,38,38,0.15);
}

/* ── Product Card ── */
.product-card {
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  opacity: 0;
  transition: opacity 0.4s ease;
  background: linear-gradient(135deg, rgba(220,38,38,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(220,38,38,0.08);
  border-color: rgba(220,38,38,0.2);
}

.product-card__image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--clr-bg-elevated) 0%, rgba(255,255,255,0.02) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: var(--border-subtle);
  position: relative;
  overflow: hidden;
  padding: var(--sp-6);
}

.product-card__image::before {
  content: '';
  position: absolute;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(220,38,38,0.06) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.product-card__img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  z-index: 2;
  transition: transform 0.5s var(--ease-smooth), filter 0.5s ease;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.product-card:hover .product-card__img {
  transform: scale(1.12) translateY(-5px) rotate(-1deg);
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
}

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.product-card__badge {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  z-index: 3;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.product-card__body {
  padding: var(--sp-5);
  position: relative;
  z-index: 1;
}

.product-card__brand {
  font-size: var(--fs-xs);
  color: var(--clr-primary-400);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-1);
}

.product-card__name {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-1);
  color: var(--clr-text-primary);
  line-height: 1.3;
}

.product-card__type {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-4);
  line-height: 1.4;
}

.product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-400);
  line-height: 1;
}

.product-card__stock {
  font-size: var(--fs-xs);
  color: var(--clr-success);
  background: rgba(34,197,94,0.1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: var(--fw-medium);
}

.product-card__stock--empty {
  color: var(--clr-error);
  background: rgba(239,68,68,0.1);
}

/* ── About / CTA Section ── */
.about {
  padding: var(--sp-24) 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__visual::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.about__image {
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--sp-12) var(--sp-6);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__icons {
  display: flex;
  gap: var(--sp-6);
  justify-content: center;
  width: 100%;
}

.about__icon-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-4);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-xl);
  transition: all 0.4s var(--ease-smooth);
  color: var(--clr-primary-400);
}

.about__icon-item:hover {
  transform: translateY(-10px);
  background: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.3);
  color: var(--clr-primary-500);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.about__icon-item span {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-text-secondary);
}

.about__icon-item svg {
  filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.3));
}

.about__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(220,38,38,0.1) 0%, transparent 70%);
}

.about__content {
  max-width: 500px;
}

.about__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: var(--sp-4);
}

.about__text {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
}

.about__list {
  margin-bottom: var(--sp-8);
}

.about__list-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
}

.about__list-check {
  width: 24px; height: 24px;
  background: var(--clr-success-bg);
  color: var(--clr-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── CTA Section ── */
.cta {
  padding: var(--sp-20) 0;
}

.cta__box {
  background: var(--gradient-hero);
  border-radius: var(--radius-2xl);
  padding: var(--sp-16) var(--sp-10);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,0,0,0.2) 0%, transparent 50%);
}

.cta__content {
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: var(--sp-4);
}

.cta__desc {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto var(--sp-8);
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
}

.btn-white {
  background: #fff;
  color: var(--clr-primary-700);
  font-weight: var(--fw-bold);
  border: none;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--clr-primary-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* ── Branches Section ── */
.branches {
  padding: var(--sp-24) 0;
  background: rgba(255, 255, 255, 0.01);
}

.branches__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-8);
  margin-top: var(--sp-12);
}

.branch-card {
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.branch-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(255, 255, 255, 0.15);
}

.branch-card__map {
  width: 100%;
  height: 220px;
  filter: grayscale(0.5) contrast(1.1) brightness(0.8) invert(0.9) hue-rotate(180deg); /* Dark mode map theme */
  transition: var(--transition-slow);
}

.branch-card:hover .branch-card__map {
  filter: grayscale(0) contrast(1) brightness(1) invert(0) hue-rotate(0);
}

.branch-card__info {
  padding: var(--sp-8);
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--clr-bg-glass);
  backdrop-filter: blur(10px);
}

.branch-card__name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-2);
}

.branch-card__address {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
}

.branch-card__details {
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.branch-card__detail {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
}

.branch-card__icon {
  font-size: 1.1rem;
}

/* ── Contact Section ── */
.contact {
  padding: var(--sp-24) 0;
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.03) 0%, transparent 100%);
}

.contact__card {
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.contact__info {
  padding: var(--sp-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(220,38,38,0.08) 0%, transparent 60%);
}

.contact__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-4);
}

.contact__text {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
}

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.contact__method {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.contact__method-icon {
  width: 44px; height: 44px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact__method-text {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

.contact__method-text strong {
  display: block;
  color: var(--clr-text-primary);
  margin-bottom: 2px;
}

.contact__socials {
  display: flex;
  gap: var(--sp-3);
}

.contact__social {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  transition: var(--transition-base);
}

.contact__social:hover {
  background: rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.3);
  color: var(--clr-primary-400);
  transform: translateY(-2px);
}

.contact__form-container {
  padding: var(--sp-10);
  background: rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__form-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-6);
}

.contact__form .form-group {
  margin-bottom: var(--sp-4);
}

.contact__form .form-control,
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--fs-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  color: var(--clr-text-primary);
  transition: var(--transition-base);
  font-family: var(--font-primary);
}

.form-control:focus {
  outline: none;
  border-color: var(--clr-primary-500);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
  background: rgba(255,255,255,0.08);
}

.form-control::placeholder {
  color: var(--clr-text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* ── Footer ── */
.footer {
  padding: var(--sp-16) 0 var(--sp-8);
  border-top: var(--border-subtle);
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

.footer__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-top: var(--sp-4);
  line-height: var(--lh-relaxed);
  max-width: 300px;
}

.footer__title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links { display: flex; flex-direction: column; }

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer__list li,
.footer__list a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: var(--transition-fast);
  line-height: var(--lh-relaxed);
}

.footer__list a:hover {
  color: var(--clr-primary-400);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-8);
  border-top: var(--border-subtle);
}

.footer__bottom p {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.footer__bottom-links {
  display: flex;
  gap: var(--sp-6);
}

.footer__bottom-links a {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  transition: var(--transition-fast);
}

.footer__bottom-links a:hover {
  color: var(--clr-primary-400);
}

/* ── Floating WhatsApp Button ── */
.wa-float {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: var(--z-sticky);
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease-spring);
  animation: float 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 36px; height: 36px;
  fill: #fff;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-spring), transform 0.6s var(--ease-spring);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* ── Responsive ── */

/* ── Tablet (768px - 1024px) ── */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--sp-10);
  }
  .hero__description,
  .hero__text { max-width: 100%; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__card-stack { max-width: 360px; }
  .hero__slider { margin: 0 auto; max-width: 100%; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .brand-group__header { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .about__grid { grid-template-columns: 1fr; text-align: center; }
  .about__content { max-width: 100%; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* Navbar — show hamburger at tablet */
  .navbar__menu { display: none; }
  .navbar__toggle { display: flex; }

  .navbar__menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: var(--z-overlay);
    justify-content: center;
    align-items: center;
    gap: var(--sp-6);
    padding: var(--sp-20) var(--sp-6);
    overflow-y: auto;
  }

  .navbar__menu.mobile-open .navbar__link {
    font-size: var(--fs-2xl);
  }

  /* Hero section */
  .hero { min-height: auto; padding: 100px 0 var(--sp-12); }
  .hero__stats { gap: var(--sp-6); }
  .hero__stat-value { font-size: var(--fs-2xl); }

  /* Hero slider */
  .hero__slider {
    max-width: 100%;
    aspect-ratio: 16/10;
    min-height: 220px;
  }
  .slider__controls { opacity: 1; }
  .slider__arrow { width: 36px; height: 36px; }
  .slider__content { padding: var(--sp-4); }
  .slider__title { font-size: var(--fs-lg); }

  /* Section headers */
  .section-header { margin: 0 auto var(--sp-10); }

  /* Features & Services */
  .features { padding: var(--sp-16) 0; }
  .services { padding: var(--sp-16) 0; }
  .services__grid { gap: var(--sp-6); }
  .service-card { padding: var(--sp-6); }

  /* Jumper banner — stack vertical */
  .jumper-banner {
    flex-direction: column !important;
    min-height: auto !important;
  }
  .jumper-banner > div:first-child {
    padding: var(--sp-8) var(--sp-6) !important;
  }
  .jumper-banner > div:nth-child(2) {
    width: 100% !important;
    min-width: unset !important;
    height: 220px !important;
  }

  /* Products */
  .products { padding: var(--sp-16) 0; }
  .product-card__image { height: 160px; padding: var(--sp-4); }

  /* About */
  .about { padding: var(--sp-16) 0; }
  .about__grid { gap: var(--sp-10); }

  /* CTA */
  .cta { padding: var(--sp-16) 0; }
  .cta__box { padding: var(--sp-10) var(--sp-6); }

  /* Branches */
  .branches { padding: var(--sp-16) 0; }
  .branches__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .branch-card__map { height: 180px; }
  .branch-card__info { padding: var(--sp-6); }

  /* Contact */
  .contact { padding: var(--sp-16) 0; }
  .contact__info, .contact__form-container { padding: var(--sp-6); }

  /* Footer */
  .footer { padding: var(--sp-10) 0 var(--sp-6); }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__bottom { flex-direction: column; gap: var(--sp-4); text-align: center; }
  .footer__bottom-links { justify-content: center; }

  /* WhatsApp float */
  .wa-float {
    width: 52px; height: 52px;
    bottom: var(--sp-4);
    right: var(--sp-4);
  }
  .wa-float svg { width: 30px; height: 30px; }
}

/* ── Small Mobile (≤640px) ── */
@media (max-width: 640px) {
  /* Hero */
  .hero { padding: 100px 0 var(--sp-10); }
  .hero__title { font-size: clamp(1.75rem, 7vw, 2.5rem); margin-bottom: var(--sp-4); }
  .hero__description { font-size: var(--fs-base); margin-bottom: var(--sp-6); }
  .hero__badge { font-size: 0.7rem; margin-bottom: var(--sp-4); }
  .hero__cta { flex-direction: column; gap: var(--sp-3); }
  .hero__cta .btn { width: 100%; }
  .hero__stats { flex-direction: column; gap: var(--sp-4); align-items: center; }

  /* Hero slider */
  .hero__slider {
    aspect-ratio: 4/3;
    min-height: 200px;
    border-radius: var(--radius-xl);
  }
  .slider__content {
    padding: var(--sp-3);
  }
  .slider__title { font-size: var(--fs-base); }
  .slider__price { font-size: var(--fs-xs); }
  .slider__price span { font-size: var(--fs-base); }
  .slider__wa-btn { padding: var(--sp-2) var(--sp-3); font-size: 0.7rem; }
  .slider__nav { bottom: var(--sp-3); right: var(--sp-4); }
  .slider__arrow { width: 32px; height: 32px; font-size: 0.8rem; }

  /* Finder */
  .finder {
    margin-top: 0;
    padding: var(--sp-6) 0;
  }
  .finder__card { padding: var(--sp-5); border-radius: var(--radius-xl); }
  .finder__header-top { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
  .finder__title { font-size: var(--fs-lg); }
  .finder__form {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  .finder__shipping { padding: var(--sp-5); }
  .finder__shipping-form {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  .finder__footer { max-width: 100%; }
  .finder__shipping-header { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }

  /* Features & Services */
  .features__grid { grid-template-columns: 1fr; }
  .feature-card { padding: var(--sp-6) var(--sp-5); }

  /* Products */
  .products__grid { grid-template-columns: 1fr; }
  .products__tabs { max-width: 100%; }
  .product-card__body { padding: var(--sp-4); }
  .product-card__footer { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
  .brand-group__header {
    padding: var(--sp-3) var(--sp-4);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }

  /* CTA */
  .cta__buttons { flex-direction: column; gap: var(--sp-3); }
  .cta__buttons .btn { width: 100%; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; }
  .contact__socials { flex-wrap: wrap; }
}

/* ── Extra Small Mobile (≤480px) ── */
@media (max-width: 480px) {
  .hero { padding: 90px 0 var(--sp-8); }
  .hero__title { font-size: 1.5rem; }
  .hero__description { font-size: var(--fs-sm); }

  /* Slider compact */
  .hero__slider { min-height: 180px; }
  .slider__badge { font-size: 0.65rem; padding: 3px 8px; }

  /* Finder compact */
  .finder__card { padding: var(--sp-4); }
  .finder__select { padding: 0.7rem 0.85rem; font-size: var(--fs-sm); }
  .finder__input { padding: 0.7rem 0.85rem; }

  /* Product card compact */
  .product-card__image { height: 140px; }
  .product-card__name { font-size: var(--fs-sm); }
  .product-card__price { font-size: var(--fs-base); }

  /* Sections compact padding */
  .features, .services, .products, .about,
  .branches, .contact, .cta { padding: var(--sp-12) 0; }

  .section-header { margin: 0 auto var(--sp-8); }

  /* CTA box compact */
  .cta__box { padding: var(--sp-8) var(--sp-4); border-radius: var(--radius-xl); }
  .cta__desc { font-size: var(--fs-base); }

  /* Service card compact */
  .service-card { padding: var(--sp-5); }
  .service-card__icon-container { width: 48px; height: 48px; margin-bottom: var(--sp-4); }

  /* Branch card compact */
  .branch-card__map { height: 160px; }
  .branch-card__info { padding: var(--sp-5); }

  /* Footer compact */
  .footer__text { max-width: 100%; }
  .footer__bottom-links { gap: var(--sp-4); flex-wrap: wrap; }
}

