﻿/*
Theme Name: Noack
Theme URI: instagram.com/elconceptodigital/
Author: Concepto
Author URI: instagram.com/elconceptodigital/
Description: Tema para empresa automotriz, desarrollado con enfoque Templates (PHP, CSS y JS)
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: noack
Tags: Responsive, Custom Colors, Custom Menu, Featured Images, Full Width Template, Theme Options, Translation Ready
*/

:root {
  /* Fonts */
  --font-heading:
    "Antonio", serif; /* Para encabezados y tÃƒÂ­tulos (Playfair Display) */
  --font-body:
    "Roboto", sans-serif; /* Para texto principal (Lato, Open Sans) */

  /* Spacing */
  --margin-heading-bottom: 2rem;

  /* Breakpoints */
  --breakpoint-sm: 600px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-lg-2: 1024px;
  --breakpoint-xl: 1280px;

  /* Primary */
  --primary-50: #fae6e7;
  --primary-100: #f0b0b6;
  --primary-200: #e88a92;
  --primary-300: #de5461;
  --primary-400: #d73342;
  --primary-500: #cd0013;
  --primary-600: #bb0011;
  --primary-700: #92000d;
  --primary-800: #71000a;
  --primary-900: #560008;

  /* Gray */
  --gray-50: #fbfbfb;
  --gray-100: #f3f2f2;
  --gray-200: #eeecec;
  --gray-300: #e6e4e4;
  --gray-400: #e1dede;
  --gray-500: #d9d6d6;
  --gray-600: #c5c3c3;
  --gray-700: #9a9898;
  --gray-800: #777676;
  --gray-900: #5b5a5a;

  /* White */
  --white-500: #ffffff;

  /* Black */
  --black-500: #000000;

  /* Text */
  --text-50: #e6e6e6;
  --text-100: #b1b1b1;
  --text-200: #8b8b8b;
  --text-300: #555555;
  --text-400: #353535;
  --text-500: #020202;
  --text-600: #020202;
  --text-700: #010101;
  --text-800: #010101;
  --text-900: #010101;
}

/* Global Styles */

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

html {
  font-size: 62.5%; /* 1rem = 10px */
  box-sizing: border-box;
  scroll-behavior: smooth;
  background-color: #050505;
}

body {
  /* Nueva fuente para cuerpo de texto */
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.6rem; /* 16px (Body Regular) */
  line-height: 1.4; /* 140% */
  color: var(--text-300);
  background-color: #050505;
  padding-top: 7rem;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  /* Nueva fuente para encabezados */
  font-family: var(--font-heading);
  color: var(--text-500);
  margin-bottom: var(--margin-heading-bottom);
}

/* â”€â”€ Dark sections: flip all headings to white â”€â”€ */
.brands-catalog h1,
.brands-catalog h2,
.brands-catalog h3,
.brands-catalog h4,
.brands-catalog h5,
.brands-catalog h6,
.highlights h1,
.highlights h2,
.highlights h3,
.highlights h4,
.highlights h5,
.highlights h6,
.services h1,
.services h2,
.services h3,
.services h4,
.services h5,
.services h6,
.video-section h1,
.video-section h2,
.video-section h3,
.video-section h4,
.video-section h5,
.video-section h6,
.testimonials h1,
.testimonials h2,
.testimonials h3,
.testimonials h4,
.testimonials h5,
.testimonials h6,
.branches h1,
.branches h2,
.branches h3,
.branches h4,
.branches h5,
.branches h6,
.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section h4,
.cta-section h5,
.cta-section h6,
#main-content .section-title {
  color: #ffffff;
}

h1 {
  font-size: 4rem; /* 40px */
  line-height: 1.2;
}
h2 {
  font-size: 3.2rem; /* 32px */
  line-height: 1.25;
}
h3 {
  font-size: 2.6rem; /* 26px */
  line-height: 1.25;
}
h4 {
  font-size: 2.1rem; /* 21px */
  line-height: 1.3;
}
h5 {
  font-size: 1.8rem; /* 18px */
  line-height: 1.3;
}
h6 {
  font-size: 1.6rem; /* 16px */
  line-height: 1.3;
}

@media (width > 600px) {
  h1 {
    /* H1 (61px) */
    font-size: 6.1rem;
  }
  h2 {
    /* H2 (49px) */
    font-size: 4.9rem;
  }
  h3 {
    /* H3 (39px) */
    font-size: 3.9rem;
  }
  h4 {
    /* H4 (31px) */
    font-size: 3.1rem;
  }
  h5 {
    /* H5 (25px) */
    font-size: 2.5rem;
  }
  h6 {
    /* H6 (20px) */
    font-size: 2rem;
  }
}

/* Text */
p {
  margin-bottom: 1.5rem;
}

/* Links & Buttons */
a,
.button {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-500);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus,
.button:hover,
.button:focus {
  color: var(--primary-500);
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 1.4rem 3.2rem;
  text-align: center;
  cursor: pointer;
  border-radius: 10rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-500);
  color: var(--white-500);
  border: 1.8px solid var(--primary-500);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-600);
  color: var(--white-500);
}

.btn-outline {
  background-color: transparent;
  color: var(--white-500);
  border: 1.4px solid var(--white-500);
}

.btn-outline:hover,
.btn-outline:focus {
  background-color: var(--white-500);
  color: var(--primary-500);
}

/* Layout */
.container {
  width: min(90%, 1440px);
  margin-inline: auto; /* centra en el eje inline respetando writing-mode */
}
.centered-content {
  width: min(90%, 92rem);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/** Utilities **/
.featured-image {
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
}

section,
.section {
  padding-bottom: 10rem;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

/* Compensate WP admin bar Ã¢â‚¬â€ solo desktop (Ã¢â€°Â¥783px) */
/* En mobile el admin bar de WP es absoluto, no fixed, y genera conflictos con el header fijo */
@media (min-width: 783px) {
  body.admin-bar {
    padding-top: 7rem;
  }

  body.admin-bar .header {
    top: 32px;
  }
}

/** Header & Navbar **/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--text-500);
  border-top: 4px solid var(--primary-500);
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.6rem;
  gap: 2rem;
}

/* Logo */
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.navbar__brand .custom-logo-link img,
.navbar__logo {
  height: 3.6rem;
  width: auto;
}
@media (width > 992px) {
  .navbar__brand .custom-logo-link img,
  .navbar__logo {
    height: 5rem;
  }
}
.navbar__slogan {
  font-size: 1rem;
  color: var(--white-500);
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.05em;
  border-left: 1px solid var(--gray-600);
  padding-left: 1.6rem;
}

/* Desktop menu (hidden on mobile) */
.navbar__menu {
  display: none;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
  align-items: center;
}
@media (width > 992px) {
  .navbar__menu {
    display: flex;
  }
}
.navbar__menu li a {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white-500);
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar__menu li a:hover {
  color: var(--primary-500);
}
.navbar__menu li.menu-item-has-children > a::after {
  content: "\ea4e";
  font-family: "remixicon";
  margin-left: 0.4rem;
  font-size: 1.2rem;
}

/* Action buttons (hidden on mobile) */
.navbar__actions {
  display: none;
  align-items: center;
  gap: 1.2rem;
}
@media (width > 992px) {
  .navbar__actions {
    display: flex;
  }
}
.navbar__actions .button {
  padding: 1rem 2.4rem;
  white-space: nowrap;
}

/* Hamburger */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  width: 3.2rem;
  height: 3.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
@media (width > 992px) {
  .navbar__hamburger {
    display: none;
  }
}
.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white-500);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/** Mobile Menu **/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 48rem;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 3.2rem;
  z-index: 2000;
  overflow-y: auto;

  /* Hidden by default */
  transform: translateX(100%);
  visibility: hidden;
  transition:
    transform 0.6s cubic-bezier(0.77, 0, 0.175, 1),
    visibility 0.6s;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
}
.mobile-menu__title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white-500);
  letter-spacing: 0.1em;
}

/* Divider */
.mobile-menu__divider {
  width: 100%;
  height: 1px;
  background-color: var(--gray-700);
  margin-bottom: 3.2rem;
}

/* Nav links */
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: auto;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 2rem 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  /* Animate on open */
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    filter 0.4s ease,
    transform 0.4s ease;
}

/* Stagger delay per link */
.mobile-menu.open .mobile-menu__link {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.mobile-menu.open .mobile-menu__link:nth-child(1) {
  transition-delay: 0.15s;
}
.mobile-menu.open .mobile-menu__link:nth-child(2) {
  transition-delay: 0.25s;
}
.mobile-menu.open .mobile-menu__link:nth-child(3) {
  transition-delay: 0.35s;
}
.mobile-menu.open .mobile-menu__link:nth-child(4) {
  transition-delay: 0.45s;
}
.mobile-menu.open .mobile-menu__link:nth-child(5) {
  transition-delay: 0.55s;
}
.mobile-menu.open .mobile-menu__link:nth-child(6) {
  transition-delay: 0.65s;
}
.mobile-menu__number {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary-500);
}
.mobile-menu__text {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white-500);
  text-transform: uppercase;
  flex: 1;
  line-height: 1;
}
.mobile-menu__link:hover .mobile-menu__text {
  color: var(--primary-500);
}
.mobile-menu__link i {
  font-size: 2rem;
  color: var(--gray-600);
}

/* CTA button */
.mobile-menu__cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 3.2rem;
  padding: 1.8rem;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
}

/* Contact info */
.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3.2rem;
  padding-top: 2.4rem;
}
.mobile-menu__contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.3rem;
  color: var(--gray-500);
  text-decoration: none;
}
.mobile-menu__contact-item i {
  font-size: 1.6rem;
  color: var(--primary-500);
}
a.mobile-menu__contact-item:hover {
  color: var(--white-500);
}
.mobile-menu__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.2rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Social icons */
.mobile-menu__social {
  display: flex;
  gap: 1.6rem;
}
.mobile-menu__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--gray-700);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}
.mobile-menu__social a:hover {
  border-color: var(--primary-500);
  color: var(--primary-500);
}
/* Close button */
.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: none;
  border: 1px solid var(--gray-700);
  border-radius: 50%;
  color: var(--white-500);
  font-size: 2.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-menu__close:hover {
  border-color: var(--primary-500);
  color: var(--primary-500);
}

/** Hero Slider **/
.hero {
  padding-bottom: 0; /* override global section rule */
}

.hero-slider {
  position: relative;
  background-color: var(--black-500);
  height: calc(100svh - 7rem);
}

/* Swiper internals necesitan height explÃƒÂ­cito para fade effect */
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: 100%;
}

/* Slider & slide base */
.hero-slide {
  position: relative;
  overflow: hidden;
  background-color: var(--black-500);
  height: 100%;
}

/* Media layer */
.hero-slide__media {
  position: absolute;
  inset: 0;
}
.hero-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 1;
}

/* Content layer */
.hero-slide__content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding-block: 10rem 14rem;
  z-index: 2;
}
@media (width < 992px) {
  .hero-slide__content {
    align-items: flex-end;
    padding-block: 6rem 11rem;
  }
}
@media (width < 767px) {
  .hero-slide__content {
    padding-block: 5rem 10rem;
  }
}
.hero-slide__inner {
  max-width: 72rem;
}
@media (width < 992px) {
  .hero-slide__inner {
    max-width: 100%;
  }
}

/* Eyebrow / badge */
.hero-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
  padding: 0.9rem 1.6rem;
  border: 1px solid rgba(205, 0, 19, 0.4);
  border-radius: 100rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-300);
  line-height: 1;
}
@media (width < 767px) {
  .hero-slide__eyebrow {
    font-size: 1rem;
    margin-bottom: 1.6rem;
  }
}
.hero-slide__eyebrow::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--primary-500);
  flex-shrink: 0;
}

/* Heading */
.hero-slide__title {
  margin-bottom: 2.4rem;
  font-size: clamp(5.6rem, 8.5vw, 13rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white-500);
}
@media (width < 992px) {
  .hero-slide__title {
    font-size: clamp(5rem, 13vw, 7.5rem);
  }
}
.hero-slide__title-line {
  display: block;
  margin-bottom: 2rem;
}
.hero-slide__title-line--highlight {
  color: var(--primary-500);
}

/* SplitText line wrapper (added by GSAP) */
.hero-title__line {
  display: block;
  overflow: hidden;
}

/* Description */
.hero-slide__description {
  max-width: 56rem;
  margin-bottom: 3.6rem;
  font-size: clamp(1.6rem, 1.5vw, 2.2rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
@media (width < 992px) {
  .hero-slide__description {
    max-width: 42rem;
  }
}
/* CTA buttons */
.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
@media (width < 767px) {
  .hero-slide__actions {
    flex-direction: column;
    width: 100%;
  }
}
.hero-slide__actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 20rem;
}
@media (width < 767px) {
  .hero-slide__actions .button {
    width: 100%;
    min-width: 0;
  }
}
.hero-slide__actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white-500);
  backdrop-filter: blur(8px);
}
.hero-slide__actions .btn-outline:hover,
.hero-slide__actions .btn-outline:focus {
  border-color: var(--white-500);
  background-color: var(--white-500);
  color: var(--text-500);
}

/* Controls bar */
.hero-slider__controls {
  position: absolute;
  bottom: 3.2rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 3;
}
@media (width > 992px) {
  .hero-slider__controls {
    justify-content: space-between;
    bottom: 2.8rem;
  }
}
@media (width < 767px) {
  .hero-slider__controls {
    bottom: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}
.hero-slider__nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media (width < 767px) {
  .hero-slider__nav {
    width: 100%;
    justify-content: space-between;
  }
}
/* Arrow buttons */
.hero-slider__arrow {
  width: 5rem;
  height: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background-color: transparent;
  color: var(--white-500);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-slider__arrow:hover,
.hero-slider__arrow:focus {
  border-color: var(--primary-500);
  background-color: var(--primary-500);
  color: var(--white-500);
}

/* Pagination bullets */
.hero-slider__pagination {
  position: static !important;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (width < 767px) {
  .hero-slider__pagination {
    flex: 1;
    justify-content: center;
  }
}
.hero-slider__pagination .swiper-pagination-bullet {
  width: 4rem;
  height: 2px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.28);
  opacity: 1;
  transition:
    background-color 0.3s ease,
    width 0.3s ease;
}
.hero-slider__pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-500);
  width: 5.6rem;
}
@media (width < 767px) {
  .hero-slider__pagination .swiper-pagination-bullet {
    width: 2.8rem;
  }

  .hero-slider__pagination .swiper-pagination-bullet-active {
    width: 4.2rem;
  }
}

/* Counter */
.hero-slider__counter {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.46);
  min-width: 6rem;
}
.hero-slider__current {
  color: var(--white-500);
}
.hero-slider__separator {
  margin-inline: 0.3rem;
}

/** Categories Section **/
.categories {
  padding-block: 10rem;
  background-color: var(--gray-50);
}

.categories__eyebrow {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-500);
  margin-bottom: 1.2rem;
}

.categories__title {
  text-transform: uppercase;
  margin-bottom: 4.8rem;
}

/* Grid */
.categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (width > 600px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width > 992px) {
  .categories__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card */
.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 3 / 4;
  border-radius: 1.2rem;
  overflow: hidden;
  background-color: var(--text-500);
  text-decoration: none;
  color: var(--white-500);
}
.category-card:hover,
.category-card:focus {
  color: var(--white-500);
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.category-card:hover::after {
  opacity: 1;
}

/* Image */
.category-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.category-card:hover .category-card__image {
  transform: scale(1.05);
}

/* Arrow icon */
.category-card__arrow {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--white-500);
  z-index: 2;
  transition: all 0.3s ease;
}
.category-card:hover .category-card__arrow {
  background-color: var(--primary-500);
  border-color: var(--primary-500);
}

/* Content overlay */
.category-card__content {
  position: relative;
  z-index: 2;
  padding: 2.4rem;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.35) 60%,
    transparent 100%
  );
  padding-top: 6rem;
}

.category-card__name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white-500);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.category-card__description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  line-height: 1.4;
}

/** Footer **/
.footer {
  border-top: 4px solid var(--primary-500);
  background-color: var(--black-500);
  padding-block: 6rem 0;
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media (width > 992px) {
  .footer__container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6rem;
  }
}

/* Columns */
.footer__column {
  width: 100%;
}
@media (width > 992px) {
  .footer__column {
    width: auto;
  }
}

/* Branding column */
.footer__branding {
  max-width: 36rem;
}
.footer__branding .custom-logo-link img,
.footer__logo {
  max-width: 24rem;
  height: auto;
  margin-bottom: 2rem;
}
.footer__description {
  font-size: 1.4rem;
  color: var(--text-100);
  line-height: 1.6;
  margin-bottom: 2.4rem;
}

/* Social */
.footer__social {
  display: flex;
  gap: 1.2rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--gray-700);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}
.footer__social a:hover {
  border-color: var(--primary-500);
  color: var(--primary-500);
}

/* Column titles */
.footer__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

/* Navigation list */
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer__list li a {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-100);
  transition: color 0.3s ease;
}
.footer__list li a:hover {
  color: var(--primary-500);
}

/* Contact info */
.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.footer__contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.4rem;
  color: var(--text-100);
  line-height: 1.5;
  max-width: 28rem;
}
.footer__contact-info li i {
  color: var(--primary-500);
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.footer__contact-info a {
  color: var(--text-100);
  font-weight: 400;
  transition: color 0.3s ease;
}
.footer__contact-info a:hover {
  color: var(--primary-500);
}

/* Bottom bar */
.footer__bottom {
  margin-top: 4rem;
}
.footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.footer__credits {
  padding-block: 2.4rem;
}
.footer__credits p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

/** CTA Section **/
.cta {
  padding-bottom: 0;
  background-color: var(--black-500);
}

.cta__card {
  width: min(90%, 1440px);
  margin-inline: auto;
  border-radius: 1.6rem;
  padding: 6rem 2.4rem;
  text-align: center;
}
@media (width > 992px) {
  .cta__card {
    padding: 8rem 4rem;
    border-radius: 2rem;
  }
}

.cta__inner {
  max-width: 64rem;
  margin-inline: auto;
}

.cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.4rem;
}
.cta__eyebrow i {
  font-size: 1.6rem;
  color: #ff940f;
}

.cta__title {
  font-size: clamp(3.6rem, 6vw, 6.1rem);
  line-height: 1.05;
  text-transform: none;
  color: var(--white-500);
  margin-bottom: 2rem;
}

.cta__highlight {
  display: block;
  color: var(--primary-500);
  font-style: italic;
}

.cta__description {
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: 3.6rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
}
@media (width < 767px) {
  .cta__actions {
    flex-direction: column;
    align-items: center;
  }
}
.cta__actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 20rem;
}
.btn-outline--dark {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--white-500);
}
.btn-outline--dark:hover,
.btn-outline--dark:focus {
  border-color: var(--white-500);
  background-color: var(--white-500);
  color: var(--text-500);
}

/** Scroll to Top **/
.scroll-top {
  position: fixed;
  bottom: 3.2rem;
  left: 3.2rem;
  width: 4.8rem;
  height: 4.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-500);
  color: var(--white-500);
  border: none;
  border-radius: 50%;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.6rem);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    background-color 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background-color: var(--primary-600);
}
@media (width < 767px) {
  .scroll-top {
    bottom: 2rem;
    right: 2rem;
    width: 4.2rem;
    height: 4.2rem;
    font-size: 2rem;
  }
}

/** Services Section **/
.services {
  padding-block: 10rem;
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.services__eyebrow {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-500);
  margin-bottom: 1.2rem;
}

.services__title {
  text-transform: uppercase;
  margin-bottom: 4.8rem;
}

/* Grid */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (width > 600px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width > 992px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card */
.service-card {
  background-color: var(--white-500);
  border: 1px solid var(--gray-200);
  border-radius: 1.2rem;
  padding: 3.2rem 2.4rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.service-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Icon */
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  background-color: var(--primary-50);
  color: var(--primary-500);
  font-size: 2.2rem;
  margin-bottom: 2.4rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-500);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-card__description {
  font-size: 1.4rem;
  color: var(--text-300);
  line-height: 1.6;
  margin-bottom: 0;
}

/** Models Section **/
.models {
  padding-block: 10rem;
}

.models__eyebrow {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-500);
  margin-bottom: 1.2rem;
}

.models__title {
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.models__description {
  font-size: 1.6rem;
  color: var(--text-300);
  line-height: 1.6;
  max-width: 48rem;
  margin-bottom: 0;
}

/* Filters */
.models__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3.6rem;
  margin-bottom: 4.8rem;
}
.models__filter {
  padding: 1rem 2.4rem;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-500);
  background-color: transparent;
  border: 1.5px solid var(--gray-300);
  border-radius: 10rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.models__filter:hover {
  border-color: var(--text-500);
}
.models__filter.is-active {
  background-color: var(--text-500);
  border-color: var(--text-500);
  color: var(--white-500);
}

/* Grid */
.models__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media (width > 600px) {
  .models__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width > 992px) {
  .models__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card */
.model-card {
  border: 1px solid var(--gray-200);
  border-radius: 1.2rem;
  overflow: hidden;
  background-color: var(--white-500);
  transition: box-shadow 0.3s ease;
}
.model-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
}

/* Card hidden state for filter animation */
.model-card.is-hidden {
  display: none;
}

/* Media */
.model-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background-color: var(--gray-100);
  overflow: hidden;
}
.model-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.model-card__badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.5rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white-500);
  background-color: var(--text-500);
  border-radius: 0.6rem;
  z-index: 1;
  line-height: 1;
}

/* Body */
.model-card__body {
  padding: 2rem;
}

.model-card__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-500);
  margin-bottom: 1.4rem;
  line-height: 1.2;
}

/* Specs */
.model-card__specs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}
.model-card__spec {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.3rem;
  line-height: 1.4;
}
.model-card__spec dt {
  color: var(--text-200);
  font-weight: 400;
}
.model-card__spec dd {
  color: var(--text-500);
  font-weight: 500;
  text-align: right;
}

/* Price */
.model-card__price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-500);
  margin-bottom: 1.6rem;
}

/* CTA */
.model-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.2rem;
  font-size: 1.3rem;
}

/* Card actions */
.model-card__actions {
  display: flex;
  gap: 0.8rem;
  align-items: stretch;
}
.model-card__cta {
  flex-grow: 1; /* Take up remaining space */
  display: flex;
  justify-content: center;
}
.model-card__details-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  flex-shrink: 0;
  border: 1px solid var(--gray-300);
  border-radius: 0.8rem;
  color: var(--text-300);
  text-decoration: none;
  font-size: 2rem;
  transition: all 0.2s;
}
.model-card__details-btn:hover {
  border-color: var(--primary-500);
  color: var(--primary-500);
  background-color: rgba(229, 21, 35, 0.05);
}

/* Quote modal */
.quote-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.quote-modal.is-open {
  display: flex;
}
.quote-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}
.quote-modal__panel {
  position: relative;
  width: min(1120px, calc(100% - 3rem));
  margin: 2.4rem auto;
  background: var(--white-500);
  border-radius: 2rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  z-index: 1;
}
.quote-modal__close {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  width: 4rem;
  height: 4rem;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-500);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.quote-modal__header {
  padding: 2.4rem 2.4rem 1.4rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: space-between;
}
.quote-modal__eyebrow {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-300);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.quote-modal__title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  margin: 0;
}
.quote-modal__progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 520px;
}
.quote-modal__progress-step {
  display: grid;
  gap: 0.6rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: var(--gray-100);
  text-align: center;
}
.quote-modal__progress-step.is-active {
  background: var(--text-500);
  color: var(--white-500);
}
.quote-modal__progress-step.is-completed {
  background: var(--text-500);
  color: var(--white-500);
}
.quote-modal__progress-step span {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  background: currentColor;
  color: var(--white-500);
}
.quote-modal__progress-step small {
  font-size: 1rem;
  color: inherit;
}
.quote-modal__body {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: 2rem;
  padding: 2rem 2.4rem 2.4rem;
}
.quote-modal__summary-panel {
  background: var(--gray-100);
  border-radius: 1.6rem;
  padding: 2rem;
  display: grid;
  gap: 2rem;
}
.quote-modal__preview {
  border-radius: 1.4rem;
  overflow: hidden;
  background: var(--white-500);
}
.quote-modal__preview-image {
  width: 100%;
  height: auto;
  display: block;
  min-height: 220px;
  object-fit: cover;
}
.quote-modal__summary-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 0.4rem 0 0;
}
.quote-modal__summary-price {
  margin: 0.6rem 0 0;
  font-weight: 700;
}
.quote-modal__resume {
  display: grid;
  gap: 1rem;
}
.quote-modal__resume h4 {
  margin: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.quote-modal__content {
  display: grid;
  gap: 1.8rem;
}
.quote-modal-step {
  display: none;
  grid-gap: 1.4rem;
}
.quote-modal-step.is-active {
  display: grid;
}
.quote-modal-step__header h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 2.2rem;
}
.quote-modal__option-list,
.quote-modal__color-list {
  display: grid;
  gap: 1rem;
}
.quote-modal__option-card,
.quote-modal__color-card {
  border: 1px solid var(--gray-200);
  border-radius: 1.2rem;
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.quote-modal__option-card:hover,
.quote-modal__color-card:hover {
  border-color: var(--text-500);
  transform: translateY(-2px);
}
.quote-modal__option-card.is-selected,
.quote-modal__color-card.is-selected {
  border-color: var(--text-500);
  background: rgba(0, 0, 0, 0.02);
}
.quote-modal__option-card-title,
.quote-modal__color-card-title {
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
}
.quote-modal__option-card-meta,
.quote-modal__color-card-meta {
  color: var(--text-200);
  font-size: 1.2rem;
}
.quote-modal__color-preview {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  margin-bottom: 0.9rem;
}
.quote-modal-step__actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.quote-modal-confirmation {
  text-align: center;
  padding: 3rem 2rem;
}
.quote-modal-confirmation__icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(219, 68, 55, 0.12);
  color: var(--text-500);
}
.quote-modal-confirmation h3 {
  margin: 0 0 1rem;
  font-size: 2.2rem;
}
.quote-modal-confirmation p {
  margin: 0 0 2rem;
  color: var(--text-200);
}
.quote-modal__form-wrapper .wpcf7 {
  display: grid;
  gap: 1.4rem;
}
.quote-modal__form-wrapper .wpcf7-form-control-wrap {
  width: 100%;
}
.quote-modal__form-wrapper .wpcf7 input,
.quote-modal__form-wrapper .wpcf7 textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  padding: 1.2rem 1.4rem;
  font-size: 1.2rem;
}
.quote-modal__form-wrapper .wpcf7-submit {
  min-width: 220px;
}
@media (max-width: 960px) {
  .quote-modal__body {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .quote-modal__panel {
    margin: 1rem;
    width: calc(100% - 2rem);
  }
  .quote-modal__header,
  .quote-modal__body {
    padding: 1.4rem 1.4rem 1.6rem;
  }
  .quote-modal__progress {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   NEW QUOTE MODAL  (.qm)
   ============================================================ */

/* Overlay */
.qm {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  visibility: hidden;
  pointer-events: none;
}
.qm.is-open {
  visibility: visible;
  pointer-events: auto;
}

/* Backdrop */
.qm__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.qm.is-open .qm__backdrop {
  opacity: 1;
}

/* Panel */
.qm__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  max-height: calc(100dvh - 3.2rem);
  background: var(--white-500);
  border-radius: 2rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(24px);
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
}
.qm.is-open .qm__panel {
  transform: translateY(0);
  opacity: 1;
}

/* Close button */
.qm__close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 10;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--text-500);
  font-size: 1.8rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.qm__close:hover {
  background: var(--gray-200);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Header Ã¢â€â‚¬Ã¢â€â‚¬ */
.qm__header {
  flex-shrink: 0;
  padding: 2.4rem 6.4rem 2rem 2.8rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
.qm__header-brand {
  flex-shrink: 0;
}
.qm__eyebrow {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-300);
  margin-bottom: 0.4rem;
}
.qm__title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1;
  margin: 0;
  color: var(--text-500);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Stepper Ã¢â€â‚¬Ã¢â€â‚¬ */
.qm__stepper {
  display: flex;
  align-items: center;
}
.qm__step-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.qm__step-line {
  width: 3.6rem;
  height: 1px;
  background: var(--gray-300);
  flex-shrink: 0;
  transition: background 0.3s;
}
.qm__step-circle {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: var(--white-500);
  color: var(--text-300);
  font-size: 1.3rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition:
    border-color 0.3s,
    background 0.3s,
    color 0.3s;
}
.qm__step-num {
  line-height: 1;
}
.qm__step-check {
  display: none;
  font-size: 1.5rem;
}
.qm__step-label {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-300);
  white-space: nowrap;
  transition: color 0.3s;
}

/* Active */
.qm__step-item.is-active .qm__step-circle {
  border-color: var(--text-500);
  background: var(--text-500);
  color: var(--white-500);
}
.qm__step-item.is-active .qm__step-label {
  color: var(--text-500);
}

/* Completed */
.qm__step-item.is-completed .qm__step-circle {
  border-color: var(--text-500);
  background: var(--text-500);
  color: var(--white-500);
}
.qm__step-item.is-completed .qm__step-num {
  display: none;
}
.qm__step-item.is-completed .qm__step-check {
  display: block;
}
.qm__step-item.is-completed + .qm__step-line {
  background: var(--text-500);
}
.qm__step-item.is-completed .qm__step-label {
  color: var(--text-400);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Body Ã¢â€â‚¬Ã¢â€â‚¬ */
.qm__body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.qm__pane {
  display: none;
  flex-direction: column;
  flex: 1;
}
.qm__pane.is-active {
  display: flex;
}

/* Pane content area */
.qm__pane-inner {
  flex: 1;
  overflow-y: auto;
  padding: 2.4rem 2.8rem;
}
.qm__pane-intro {
  font-size: 1.5rem;
  color: var(--text-300);
  margin-bottom: 2rem;
}

/* Footer bar */
.qm__footer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2.8rem;
  border-top: 1px solid var(--gray-200);
  gap: 1rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Buttons Ã¢â€â‚¬Ã¢â€â‚¬ */
.qm__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.8rem;
  border-radius: 10rem;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  line-height: 1;
}
.qm__btn--ghost {
  background: transparent;
  color: var(--text-400);
  padding-left: 0;
}
.qm__btn--ghost:hover {
  color: var(--text-500);
}
.qm__btn--primary {
  background: var(--text-500);
  color: var(--white-500);
}
.qm__btn--primary:hover {
  background: var(--text-400);
  color: var(--white-500);
}
.qm__btn--primary:disabled,
.qm__btn--primary[disabled] {
  background: var(--gray-400);
  cursor: not-allowed;
}
.qm__btn--dark {
  background: var(--text-500);
  color: var(--white-500);
  padding: 1.4rem 4rem;
}
.qm__btn--dark:hover {
  background: var(--primary-500);
  color: var(--white-500);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ STEP 1: Model grid Ã¢â€â‚¬Ã¢â€â‚¬ */
.qm__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
.qm__filter-btn {
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-500);
  background: transparent;
  border: 1.5px solid var(--gray-300);
  border-radius: 10rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.qm__filter-btn:hover {
  border-color: var(--text-500);
}
.qm__filter-btn.is-active {
  background: var(--text-500);
  border-color: var(--text-500);
  color: var(--white-500);
}

.qm__models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.qm__model-card {
  border: 2px solid var(--gray-200);
  border-radius: 1.4rem;
  overflow: hidden;
  background: var(--white-500);
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  position: relative;
  text-align: left;
  padding: 0;
}
.qm__model-card:hover {
  border-color: var(--gray-500);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.qm__model-card.is-selected {
  border-color: var(--text-500);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.qm__model-card__check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--text-500);
  color: var(--white-500);
  display: none;
  place-items: center;
  font-size: 1.6rem;
}
.qm__model-card.is-selected .qm__model-card__check {
  display: grid;
}
.qm__model-card__img-wrap {
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
  overflow: hidden;
}
.qm__model-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.qm__model-card__body {
  padding: 1.4rem 1.6rem;
}
.qm__model-card__name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-500);
  margin-bottom: 0.2rem;
}
.qm__model-card__cat {
  font-size: 1.2rem;
  color: var(--text-300);
  margin: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Steps 2 & 3: split layout Ã¢â€â‚¬Ã¢â€â‚¬ */
.qm__pane-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 3.2rem;
  padding: 2.4rem 2.8rem;
}
.qm__model-preview {
  position: sticky;
  top: 0;
}
.qm__model-img {
  width: 100%;
  border-radius: 1.4rem;
  background: var(--gray-100);
  min-height: 200px;
  object-fit: cover;
  display: block;
}
.qm__color-selected-label {
  text-align: center;
  font-size: 1.3rem;
  color: var(--text-300);
  margin-top: 1.2rem;
  margin-bottom: 0;
}
.qm__color-selected-label strong {
  color: var(--text-500);
}
.qm__side-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-300);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  display: block;
}

/* Version list */
.qm__version-list {
  display: grid;
  gap: 1rem;
}
.qm__version-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 1.6rem 1.8rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 1.2rem;
  background: var(--white-500);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.2s,
    background 0.2s;
  width: 100%;
}
.qm__version-btn:hover {
  border-color: var(--gray-600);
}
.qm__version-btn.is-selected {
  border-color: var(--text-500);
  background: rgba(0, 0, 0, 0.02);
}
.qm__version-info {
  flex: 1;
}
.qm__version-name {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-500);
  margin-bottom: 0.3rem;
}
.qm__version-meta {
  font-size: 1.2rem;
  color: var(--text-300);
}
.qm__version-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-500);
  white-space: nowrap;
  flex-shrink: 0;
}
.qm__version-radio {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--gray-400);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: border-color 0.2s;
}
.qm__version-radio::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--text-500);
  opacity: 0;
  transition: opacity 0.2s;
}
.qm__version-btn.is-selected .qm__version-radio {
  border-color: var(--text-500);
}
.qm__version-btn.is-selected .qm__version-radio::after {
  opacity: 1;
}

/* Color grid */
.qm__color-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem 1.2rem;
}
.qm__color-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.qm__color-swatch {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  border: 2.5px solid transparent;
  box-shadow: 0 0 0 1px var(--gray-300);
  transition:
    box-shadow 0.2s,
    border-color 0.2s,
    transform 0.2s;
  display: block;
}
.qm__color-btn:hover .qm__color-swatch {
  transform: scale(1.08);
  box-shadow: 0 0 0 2px var(--gray-500);
}
.qm__color-btn.is-selected .qm__color-swatch {
  border-color: var(--text-500);
  box-shadow: 0 0 0 2px var(--text-500);
}
.qm__color-name {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-400);
  text-align: center;
  line-height: 1.25;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ STEP 4: Summary + Form Ã¢â€â‚¬Ã¢â€â‚¬ */
.qm__summary-card {
  background: var(--gray-100);
  border-radius: 1.6rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.qm__summary-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-300);
  margin: 0;
}
.qm__summary-img-wrap {
  border-radius: 1.2rem;
  overflow: hidden;
  background: var(--white-500);
}
.qm__summary-img {
  width: 100%;
  display: block;
  min-height: 160px;
  object-fit: cover;
}
.qm__summary-details {
  display: grid;
  gap: 1.4rem;
}
.qm__summary-row {
  display: grid;
  gap: 0.3rem;
}
.qm__summary-row-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-300);
}
.qm__summary-row-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-500);
}
.qm__summary-row-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-500);
}
.qm__summary-color-swatch {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.qm__summary-color-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  flex-shrink: 0;
  display: inline-block;
}

/* Form side */
.qm__form-side {
  display: flex;
  flex-direction: column;
}
.qm__form-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--text-500);
  margin-bottom: 0.8rem;
}
.qm__form-subtitle {
  font-size: 1.4rem;
  color: var(--text-300);
  margin-bottom: 2.4rem;
  line-height: 1.5;
}

/* CF7 inside modal */
.qm__form-wrap .wpcf7 form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.qm__form-wrap .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.qm__form-wrap .wpcf7 label {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-400);
  margin-bottom: 0;
}
.qm__form-wrap .wpcf7 p {
  margin: 0;
}

/* Full-width textarea and submit */
.qm__form-wrap .wpcf7 p:has([name="your-email"]),
.qm__form-wrap .wpcf7 p:has([name="your-message"]),
.qm__form-wrap .wpcf7 p:has([type="submit"]) {
  grid-column: 1 / -1;
}

.qm__form-wrap .wpcf7 input[type="text"],
.qm__form-wrap .wpcf7 input[type="tel"],
.qm__form-wrap .wpcf7 input[type="email"],
.qm__form-wrap .wpcf7 textarea {
  width: 100%;
  padding: 1.3rem 1.5rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 1rem;
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--text-500);
  background: var(--white-500);
  outline: none;
  transition: border-color 0.2s;
  box-shadow: none;
  -webkit-appearance: none;
}
.qm__form-wrap .wpcf7 input[type="text"]:focus,
.qm__form-wrap .wpcf7 input[type="tel"]:focus,
.qm__form-wrap .wpcf7 input[type="email"]:focus,
.qm__form-wrap .wpcf7 textarea:focus {
  border-color: var(--text-500);
}
.qm__form-wrap .wpcf7 textarea {
  resize: vertical;
  min-height: 10rem;
}

/* Submit */
.qm__form-wrap .wpcf7 input[type="submit"],
.qm__form-wrap .wpcf7 .wpcf7-submit {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.35rem 3.2rem;
  background: var(--text-500);
  color: var(--white-500);
  border: none;
  border-radius: 10rem;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s;
  min-width: 20rem;
  width: 100%;
}
.qm__form-wrap .wpcf7 input[type="submit"]:hover,
.qm__form-wrap .wpcf7 .wpcf7-submit:hover {
  background: var(--primary-500);
}

/* Validation */
.qm__form-wrap .wpcf7-not-valid-tip {
  font-size: 1.1rem;
  color: var(--primary-500);
  margin-top: 0.4rem;
  display: block;
}
.qm__form-wrap .wpcf7-response-output {
  font-size: 1.2rem;
  border-radius: 0.8rem;
  padding: 1rem 1.4rem;
  margin-top: 1.2rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ STEP 5: Confirmation Ã¢â€â‚¬Ã¢â€â‚¬ */
.qm__pane-confirm {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2.8rem;
  text-align: center;
}
.qm__confirm-icon {
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  background: var(--primary-50);
  color: var(--primary-500);
  font-size: 3.2rem;
  display: grid;
  place-items: center;
  margin-bottom: 2.4rem;
}
.qm__confirm-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-500);
  margin-bottom: 1.2rem;
}
.qm__confirm-text {
  font-size: 1.5rem;
  color: var(--text-300);
  line-height: 1.6;
  max-width: 50rem;
  margin-bottom: 3.2rem;
}
.qm__confirm-close {
  margin: 0 auto;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Responsive Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 768px) {
  .qm__stepper {
    display: none;
  }
  .qm__title {
    font-size: 2.2rem;
  }
  .qm__header {
    padding: 1.8rem 2rem 1.6rem;
  }
  .qm__pane-inner {
    padding: 2rem;
  }
  .qm__pane-inner--split {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .qm__model-preview {
    position: static;
  }
  .qm__footer {
    padding: 1.4rem 2rem;
  }
  .qm__models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .qm__color-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .qm__form-wrap .wpcf7 form {
    grid-template-columns: 1fr;
  }
  .qm__form-wrap .wpcf7 p:has([name="your-email"]),
  .qm__form-wrap .wpcf7 p:has([name="your-message"]),
  .qm__form-wrap .wpcf7 p:has([type="submit"]) {
    grid-column: 1;
  }
}
@media (max-width: 480px) {
  .qm {
    padding: 0;
  }
  .qm__panel {
    max-height: 100dvh;
    border-radius: 1.6rem 1.6rem 0 0;
    align-self: flex-end;
    margin-top: auto;
  }
  .qm__models-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   SINGLE MODEL PAGE  (.sm-)
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Shared section heading Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.sm-section__eyebrow {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--primary-500);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.sm-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  color: var(--text-500);
  margin-bottom: 3.6rem;
  line-height: 1.1;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Animations Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.js-sm-animate {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--delay, 0s),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--delay, 0s);
}
.js-sm-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â HERO Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.sm-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  margin-top: -7rem; /* bleed behind header */
  overflow: hidden;
}
.sm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sm-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.sm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.sm-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 5.6rem;
  padding-top: 12rem; /* Adjusted to clear header */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.sm-hero__top-nav {
  margin-bottom: 4.2rem;
}
.sm-hero__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white-500);
  background: rgba(0, 0, 0, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.8rem 1.6rem;
  border-radius: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.sm-hero__back-btn:hover {
  color: var(--white-500);
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}
.sm-hero__back-btn i {
  font-size: 1.6rem;
}

.sm-hero__category-wrap {
  /* Margin removed in favor of flex gap */
}
.sm-hero__category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-500);
  background: rgba(205, 0, 19, 0.1);
  backdrop-filter: blur(4px);
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  border: 1px solid rgba(229, 21, 35, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sm-hero__category-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary-500);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(229, 21, 35, 0.4);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 21, 35, 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(229, 21, 35, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(229, 21, 35, 0);
  }
}

.sm-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 7vw, 7.2rem);
  color: var(--white-500);
  line-height: 1;
  margin: 0;
}
.sm-hero__subtitle {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 48rem;
  margin: 0;
  line-height: 1.5;
}
.sm-hero__actions {
  display: flex;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.btn-outline--light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white-500);
}
.btn-outline--light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white-500);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â VERSIONS Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.sm-versions {
  padding: 7rem 0;
  background: var(--gray-50);
}
.sm-versions__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.8rem;
}

@media (min-width: 768px) {
  .sm-versions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .sm-versions__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sm-version-card {
  background: var(--white-500);
  border-radius: 1.6rem;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.sm-version-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.sm-version-card__img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.sm-version-card__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.sm-version-card:hover .sm-version-card__img {
  transform: scale(1.04);
}

.sm-version-card__body {
  padding: 2.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sm-version-card__name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-500);
  margin-bottom: 1.6rem;
  line-height: 1.2;
}

.sm-version-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-bottom: 1.6rem;
}
.sm-version-card__spec {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.3rem;
}
.sm-version-card__spec dt {
  color: var(--text-300);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.sm-version-card__spec dt i {
  font-size: 1.5rem;
  color: var(--primary-500);
}
.sm-version-card__spec dd {
  font-weight: 600;
  color: var(--text-500);
}

.sm-version-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--gray-200);
}
.sm-version-card__feat {
  font-size: 1.3rem;
  color: var(--text-400);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sm-version-card__feat i {
  color: var(--primary-500);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.sm-version-card__pricing {
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.sm-version-card__price-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  color: var(--text-300);
}
.sm-version-card__price-value {
  font-weight: 600;
  color: var(--text-500);
}
.sm-version-card__price-row--discount .sm-version-card__price-value {
  color: var(--primary-500);
}
.sm-version-card__price-row--final {
  padding-top: 0.6rem;
  border-top: 1px dashed var(--gray-300);
}
.sm-version-card__price-value--final {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-600);
}

.sm-version-card__cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.sm-version-card__disclaimer {
  font-size: 1.1rem;
  color: var(--text-200);
  text-align: center;
  padding: 1rem 2.4rem 1.6rem;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â ABOUT Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.sm-about {
  padding: 7rem 0;
}
.sm-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem;
  align-items: center;
}
.sm-about__media {
  border-radius: 1.6rem;
  overflow: hidden;
}
.sm-about__video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 1.6rem;
  overflow: hidden;
}
.sm-about__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.sm-about__image {
  width: 100%;
  display: block;
  border-radius: 1.6rem;
}
.sm-about__description {
  font-size: 1.5rem;
  color: var(--text-300);
  line-height: 1.7;
  margin-bottom: 2.8rem;
}
.sm-about__features {
  margin-bottom: 2.8rem;
}
.sm-about__features-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-200);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}
.sm-about__features-text {
  font-size: 1.5rem;
  color: var(--text-400);
  line-height: 1.6;
}
.sm-about__quick-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-bottom: 2.8rem;
}
.sm-about__spec {
  padding: 1.4rem;
  background: var(--gray-50);
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
}
.sm-about__spec-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-200);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.sm-about__spec-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-500);
}
.sm-about__actions {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 3.2rem;
}
.sm-about__download {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-500);
  border: 1.5px solid var(--primary-200);
  border-radius: 1rem;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.sm-about__download:hover {
  background: var(--primary-50);
  border-color: var(--primary-400);
}
.sm-about__download i {
  font-size: 1.8rem;
}

.sm-about__video-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white-500);
  background: var(--text-500);
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.sm-about__video-btn:hover {
  background: var(--black-500);
}
.sm-about__video-btn i {
  font-size: 1.8rem;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â VIDEO MODAL Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}
.video-modal__content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 1100px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.video-modal__close {
  position: absolute;
  top: -4rem;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: opacity 0.2s;
}
.video-modal__close:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .video-modal__close {
    top: 0;
    right: -4rem;
  }
}
.video-modal__player {
  width: 100%;
  height: 100%;
}
.video-modal__player iframe,
.video-modal__player video {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
}

.sm-about__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.sm-about__gallery-item {
  display: block;
  border-radius: 0.8rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.sm-about__gallery-item:hover {
  border-color: var(--primary-500);
}
.sm-about__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sm-about__gallery-item:hover img {
  transform: scale(1.05);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â COLORS (inline within About) Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.sm-about__colors {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--gray-200);
}
.sm-about__colors-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-400);
  margin-bottom: 1.2rem;
}
.sm-about__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.sm-about__swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s;
}
.sm-about__swatch:hover {
  transform: translateY(-2px);
}
.sm-about__swatch-dot {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--swatch);
  border: 2px solid var(--gray-300);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.sm-about__swatch.is-active .sm-about__swatch-dot {
  border-color: var(--text-500);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.sm-about__swatch-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-300);
  text-align: center;
  max-width: 6.4rem;
  line-height: 1.3;
}
.sm-about__swatch.is-active .sm-about__swatch-name {
  color: var(--text-500);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â GALLERY Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.sm-gallery {
  padding: 7rem 0;
}
.sm-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.sm-gallery__item {
  margin: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.sm-gallery__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.sm-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sm-gallery__item:hover .sm-gallery__img {
  transform: scale(1.06);
}
.sm-gallery__disclaimer {
  font-size: 1.2rem;
  color: var(--text-200);
  text-align: center;
  margin-top: 2rem;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â RESPONSIVE Ã¢â‚¬â€ Single Model Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
@media (max-width: 992px) {
  .sm-about__grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
  .sm-about__quick-specs {
    grid-template-columns: repeat(3, 1fr);
  }
  .sm-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sm-gallery__item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 768px) {
  .sm-hero {
    min-height: 60vh;
  }
  .sm-hero__title {
    font-size: clamp(3.2rem, 8vw, 5rem);
  }
  .sm-about__quick-specs {
    grid-template-columns: 1fr 1fr;
  }
  .sm-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sm-gallery__item:first-child {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .sm-hero__content {
    padding-bottom: 3.6rem;
    padding-top: 12rem;
  }
  .sm-about__quick-specs {
    grid-template-columns: 1fr;
  }
  .sm-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
  .sm-gallery__item:first-child {
    grid-column: span 2;
  }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   404 ERROR PAGE
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.error-404 {
  background: var(--surface-100);
  min-height: calc(100vh - 100px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.error-404__wrap .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.error-404__content {
  max-width: 600px;
}
.error-404__title {
  font-family: "Kelson Sans", sans-serif;
  font-size: clamp(8rem, 15vw, 15rem);
  font-weight: 700;
  line-height: 1;
  color: var(--primary-500);
  margin-bottom: 2rem;
  letter-spacing: -2px;
  position: relative;
}
.error-404__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  background: var(--text-500);
  margin: 1rem auto 0;
}
.error-404__subtitle {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--text-500);
  margin-bottom: 1.6rem;
}
.error-404__text {
  font-size: 1.6rem;
  color: var(--gray-600);
  margin-bottom: 4rem;
  line-height: 1.6;
}
.error-404__actions {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.error-404__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.5;
  color: var(--primary-500);
}
.error-404__bg svg {
  width: clamp(300px, 60vw, 800px);
  height: auto;
}

/* =============================================
   NOACK â€” Extra Sections CSS
   ============================================= */

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 9rem;
  right: 2.4rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem;
  height: 5.2rem;
  background-color: #25d366;
  border-radius: 50%;
  color: #fff;
  font-size: 2.6rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* Section shared styles */
.section-header {
  text-align: center;
  margin-bottom: 5.6rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-500);
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--font-heading);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.section-description {
  font-size: 1.6rem;
  color: var(--text-300);
  max-width: 60rem;
  margin-inline: auto;
}
.text-primary {
  color: var(--primary-500);
}

/* Hero Static */
.hero-static {
  position: relative;
  min-height: calc(100svh - 7rem);
  background: var(--black-500) var(--hero-bg, "") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-bottom: 0;
  overflow: hidden;
}
.hero-static__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}
.hero-static__content {
  position: relative;
  z-index: 2;
  padding-block: 8rem 10rem;
}
.hero-static__inner {
  max-width: 72rem;
}
.hero-static__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
  padding: 0.9rem 1.6rem;
  border: 1px solid rgba(205, 0, 19, 0.4);
  border-radius: 100rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-300);
}
.hero-static__dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--primary-500);
  flex-shrink: 0;
}
.hero-static__title {
  font-family: var(--font-heading);
  font-size: clamp(5.6rem, 9vw, 13rem);
  line-height: 0.99;
  text-transform: uppercase;
  color: var(--white-500);
  margin: 2.4rem 0;
}
.hero-static__highlight {
  color: var(--primary-500);
  display: block;
  margin-bottom: 2rem;
}
.hero-static__description {
  font-size: clamp(1.6rem, 1.5vw, 2rem);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 3.6rem;
  max-width: 52rem;
}
.hero-static__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-bottom: 4rem;
}
.hero-static__actions .button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 20rem;
  justify-content: center;
}
.hero-static__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.hero-static__badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  backdrop-filter: blur(8px);
}
.hero-static__badge i {
  color: var(--primary-500);
}
.hero-static__scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}
@media (width < 767px) {
  .hero-static__actions {
    flex-direction: column;
  }
  .hero-static__actions .button {
    width: 100%;
    min-width: 0;
  }
  .hero-static__inner {
    max-width: 100%;
  }
}

/* Highlights */
.highlights {
  background: var(--black-500);
  padding-block: 5rem;
}
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (width > 768px) {
  .highlights__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.highlights__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 3.6rem 2.4rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}
.highlights__item:hover {
  background: rgba(205, 0, 19, 0.06);
}
.highlights__icon {
  font-size: 3rem;
  color: var(--primary-500);
  margin-bottom: 0.4rem;
}
.highlights__value {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--white-500);
  line-height: 1;
}
.highlights__label {
  font-size: 1.2rem;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Brands */
.brands {
  background: var(--black-500);
  padding-block: 8rem;
}
.brands .section-title,
.brands .section-eyebrow,
.brands .section-description {
  color: var(--white-500);
}
.brands .section-eyebrow {
  color: var(--primary-500);
}
.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (width > 768px) {
  .brands__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.2rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
}
.brands__item:hover {
  background: rgba(205, 0, 19, 0.08);
  border-color: var(--primary-500);
}
.brands__logo {
  max-height: 5rem;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.brands__item:hover .brands__logo {
  opacity: 1;
}
.brands__name {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white-500);
  text-transform: uppercase;
}

/* Catalog */
.catalog {
  background: var(--gray-100);
  padding-block: 10rem;
}
.catalog__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 5rem;
}
.catalog__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  min-width: 12rem;
  height: 6rem;
  background: var(--white-500);
  border: 2px solid var(--gray-300);
  border-radius: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.catalog__tab img {
  max-height: 3rem;
  width: auto;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.3s ease;
}
.catalog__tab.is-active,
.catalog__tab:hover {
  border-color: var(--primary-500);
}
.catalog__tab.is-active img,
.catalog__tab:hover img {
  filter: none;
  opacity: 1;
}
.catalog__pane {
  display: none;
}
.catalog__pane.is-active {
  display: block;
}
.models-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.4rem;
}
@media (width > 600px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width > 992px) {
  .models-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.model-card {
  background: var(--white-500);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.model-card__image-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.model-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.model-card:hover .model-card__image {
  transform: scale(1.04);
}
.model-card__badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--primary-500);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100rem;
}
.model-card__body {
  padding: 2rem;
}
.model-card__category {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-500);
  display: block;
  margin-bottom: 0.8rem;
}
.model-card__title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  text-transform: uppercase;
  color: var(--text-500);
  margin-bottom: 0.6rem;
}
.model-card__price {
  font-size: 1.4rem;
  color: var(--text-300);
  margin-bottom: 1.6rem;
}
.model-card__actions {
  display: flex;
  gap: 1rem;
}
.model-card__actions .button {
  flex: 1;
  text-align: center;
  padding: 1rem;
  font-size: 1.3rem;
}
.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--text-500);
  color: var(--text-500);
  border-radius: 100rem;
}
.btn-outline-dark:hover {
  background: var(--text-500);
  color: #fff;
}

/* Services */
.services {
  background: var(--black-500);
  padding-block: 10rem;
}
.services .section-title,
.services .section-description,
.services .section-eyebrow {
  color: var(--white-500);
}
.services .section-eyebrow {
  color: var(--primary-500);
}
.services__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (width > 768px) {
  .services__layout {
    grid-template-columns: 30rem 1fr;
    gap: 6rem;
  }
}
.services__tabs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.services__tab {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.8rem;
  color: var(--gray-500);
  font-size: 1.4rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}
.services__tab i:first-child {
  font-size: 2rem;
  color: var(--gray-700);
  flex-shrink: 0;
}
.services__tab span {
  flex: 1;
}
.services__tab-arrow {
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.services__tab:hover,
.services__tab.is-active {
  background: rgba(205, 0, 19, 0.1);
  border-color: var(--primary-500);
  color: var(--white-500);
}
.services__tab.is-active i:first-child {
  color: var(--primary-500);
}
.services__tab.is-active .services__tab-arrow {
  opacity: 1;
  color: var(--primary-500);
}
.services__content {
  position: relative;
}
.services__pane {
  display: none;
}
.services__pane.is-active {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  animation: fadeIn 0.4s ease;
}
.services__image-wrap {
  border-radius: 1.2rem;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.services__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services__pane-icon {
  font-size: 4rem;
  color: var(--primary-500);
}
.services__pane-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  text-transform: uppercase;
  color: var(--white-500);
  margin-bottom: 1.2rem;
}
.services__pane-description {
  font-size: 1.6rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* About */
.about {
  background: var(--white-500);
  padding-block: 10rem;
  overflow: hidden;
}
.about__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  align-items: center;
}
@media (width > 768px) {
  .about__layout {
    grid-template-columns: 1fr 1fr;
  }
}
.about__media {
  position: relative;
}
.about__image {
  border-radius: 1.2rem;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: var(--primary-500);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(205, 0, 19, 0.4);
}
.about__badge-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: #fff;
  line-height: 1;
}
.about__badge-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about__description {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-300);
  margin-bottom: 3rem;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3.2rem;
}
.about__stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.about__stat-value {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  line-height: 1;
}
.about__stat-label {
  font-size: 1.2rem;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Team */
.team {
  background: var(--gray-100);
  padding-block: 10rem;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media (width > 768px) {
  .team__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.team__card {
  background: var(--white-500);
  border-radius: 1.2rem;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: center;
}
.team__card:hover {
  transform: translateY(-4px);
}
.team__photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.team__card:hover .team__photo {
  transform: scale(1.04);
}
.team__photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team__photo-placeholder i {
  font-size: 6rem;
  color: var(--gray-500);
}
.team__linkedin {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease;
}
.team__linkedin:hover {
  background: #0a66c2;
  color: #fff;
}
.team__info {
  padding: 1.6rem;
}
.team__name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--text-500);
  margin-bottom: 0.4rem;
}
.team__position {
  display: block;
  font-size: 1.2rem;
  color: var(--primary-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.team__branch {
  display: block;
  font-size: 1.2rem;
  color: var(--text-300);
}
.team__branch i {
  font-size: 1.1rem;
}

/* Branches */
.branches {
  background: var(--black-500);
  padding-block: 10rem;
}
.branches .section-eyebrow {
  color: var(--primary-500);
}

/* â”€â”€ BRANCHES V0 REDESIGN â”€â”€ */
.branches__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
  align-items: end;
}
@media (min-width: 768px) {
  .branches__header {
    grid-template-columns: 1fr 1fr;
  }
}
.branches__main-title {
  font-size: clamp(5rem, 8vw, 9rem);
  line-height: 0.9;
  margin: 0.8rem 0 0;
  color: #fff;
}
.branches__header-right p {
  font-size: 1.5rem;
  color: #aaa;
  line-height: 1.7;
  max-width: 40rem;
}
.branches__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 992px) {
  .branches__body {
    grid-template-columns: 36rem 1fr;
    gap: 4rem;
  }
}
/* Sidebar */
.branches__sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.branches__sidebar-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 1.6rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}
.branches__sidebar-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.branches__sidebar-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.branches__sidebar-item.is-active {
  background: rgba(205, 0, 19, 0.08);
  border-left: 3px solid var(--primary-500);
}
.branches__sidebar-icon {
  font-size: 2rem;
  color: var(--primary-500);
  flex-shrink: 0;
}
.branches__sidebar-item.is-active .branches__sidebar-icon {
  color: var(--primary-500);
}
.branches__sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.branches__sidebar-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.branches__sidebar-sub {
  font-size: 1.2rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.branches__badge {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-500);
  border: 1px solid var(--primary-500);
  padding: 0.2rem 0.8rem;
  border-radius: 0.3rem;
}
.branches__sidebar-arrow {
  font-size: 1.8rem;
  color: #555;
  flex-shrink: 0;
}
.branches__sidebar-item.is-active .branches__sidebar-arrow {
  color: var(--primary-500);
}
/* Pane */
.branches__pane {
  display: none;
}
.branches__pane.is-active {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  animation: fadeIn 0.4s ease;
}
/* Map */
.branches__map {
  border-radius: 1.2rem;
  overflow: hidden;
  height: 28rem;
  background: #111;
}
@media (min-width: 768px) {
  .branches__map {
    height: 34rem;
  }
}
.branches__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.branches__map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #555;
}
.branches__map-placeholder i {
  font-size: 4rem;
}
/* Details block */
.branches__details-block {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.branches__name {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
.branches__city {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.2rem;
}
.branches__meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .branches__meta-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.branches__meta-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  color: #aaa;
}
.branches__meta-item--full {
  grid-column: 1 / -1;
}
.branches__meta-item i {
  font-size: 1.6rem;
  color: var(--primary-500);
  flex-shrink: 0;
}
.branches__meta-item a {
  color: #aaa;
  transition: color 0.2s;
}
.branches__meta-item a:hover {
  color: #fff;
}
/* Chips */
.branches__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.branches__chip {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.4rem;
  color: #ccc;
}
/* Actions */
.branches__actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.4rem;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover {
  border-color: #25d366;
  color: #25d366;
}
.btn-whatsapp i {
  font-size: 1.8rem;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  background-color: #050505;
  padding-block: 8rem;
}
.video-section__header {
  text-align: center;
  max-width: 60rem;
  margin: 0 auto 4rem;
}
.video-section__title {
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  margin: 0.8rem 0 1.6rem;
}
.video-section__desc {
  font-size: 1.5rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}
.video-section__player {
  position: relative;
  max-width: 92rem;
  margin: 0 auto;
  border-radius: 1.6rem;
  overflow: hidden;
  border-top: 3px solid var(--primary-500);
  box-shadow: 0 0 60px rgba(205, 0, 19, 0.15);
}
.video-section__thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #111 center/cover no-repeat;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.1) 50%
  );
}
.video-section__play {
  position: relative;
  z-index: 1;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: var(--primary-500);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 0 0 1rem rgba(205, 0, 19, 0.15);
}
.video-section__thumb:hover .video-section__play {
  transform: scale(1.1);
  box-shadow: 0 0 0 1.5rem rgba(205, 0, 19, 0.12);
}
.video-section__caption {
  position: absolute;
  bottom: 2.4rem;
  left: 2.4rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.video-section__caption strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
}
.video-section__caption span {
  font-size: 1.2rem;
  color: #aaa;
}
.video-section__embed {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.video-section__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
  background-color: #050505;
  padding-block: 8rem;
}
.testimonials__eyebrow {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 4rem;
}
.testimonials__eyebrow::before {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--primary-500);
}
.testimonials__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}
@media (min-width: 900px) {
  .testimonials__layout {
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
  }
}
/* Left: featured */
.testimonials__featured {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.testimonials__quote-icon {
  font-family: serif;
  font-size: 8rem;
  line-height: 0.5;
  color: var(--primary-500);
  user-select: none;
}
.testimonials__blockquote {
  font-size: 1.8rem;
  line-height: 1.7;
  color: #e5e5e5;
  font-style: normal;
  margin: 0;
  min-height: 12rem;
}
.testimonials__stars {
  display: flex;
  gap: 0.4rem;
}
.testimonials__stars i {
  font-size: 1.8rem;
  color: var(--primary-500);
}
.testimonials__stars i.empty {
  color: #333;
}
.testimonials__author {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.testimonials__author-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.testimonials__author-role {
  font-size: 1.2rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.testimonials__nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.testimonials__nav-btn {
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.6rem;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.testimonials__nav-btn:hover {
  border-color: var(--primary-500);
  color: var(--primary-500);
}
.testimonials__counter {
  font-size: 1.3rem;
  color: #555;
  margin-left: 0.4rem;
}
/* Right: list */
.testimonials__list {
  display: flex;
  flex-direction: column;
}
.testimonials__item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonials__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.testimonials__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  margin-bottom: 0.8rem;
}
.testimonials__item-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  transition: color 0.3s;
}
.testimonials__item-vehicle {
  font-size: 1rem;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 0.2rem;
  transition: color 0.3s;
}
.testimonials__item-bar {
  width: 3px;
  height: 4rem;
  background: transparent;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.testimonials__item-excerpt {
  font-size: 1.3rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Active state */
.testimonials__item.is-active .testimonials__item-name {
  color: #fff;
}
.testimonials__item.is-active .testimonials__item-vehicle {
  color: var(--primary-500);
}
.testimonials__item.is-active .testimonials__item-excerpt {
  color: #aaa;
}
.testimonials__item.is-active .testimonials__item-bar {
  background: var(--primary-500);
}
.testimonials__item:hover .testimonials__item-name {
  color: #ccc;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar phone */
.navbar__phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white-500);
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar__phone:hover {
  color: var(--primary-500);
}
.navbar__phone i {
  font-size: 1.6rem;
}

/* ============================================================
   SECTION SPACING â€” elimina huecos blancos entre secciones
   ============================================================ */
section,
.ticker-band {
  margin-block: 0;
}

/* RaÃ­z oscura para el main-content (todas las secciones del home comparten fondo) */
#main-content {
  background-color: #050505;
}

.brands-catalog,
.services,
.highlights,
.branches,
.about,
.team-section,
.cta-section {
  padding-block: 8rem;
}
/* Dark sections */
.brands-catalog,
.services,
.branches,
.cta-section {
  background-color: #050505;
}
.highlights {
  background-color: #0d0d0d;
}

/* ============================================================
   HIGHLIGHTS â€” V0 style: dark bg, icon + BIG number + label
   ============================================================ */
.highlights {
  padding-top: 0;
  padding-bottom: 5rem;
  margin: 0;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px) {
  .highlights__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.highlights__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 3.2rem 4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.highlights__item:last-child {
  border-right: none;
}
.highlights__icon {
  font-size: 2.4rem;
  color: var(--primary-500);
  margin-bottom: 0.8rem;
  display: block;
}
.highlights__value {
  font-family: var(--font-heading);
  font-size: 5rem !important; /* Override any heading reset */
  color: var(--white-500) !important;
  line-height: 1;
  display: block;
  font-weight: 700;
}
.highlights__label {
  font-size: 1.1rem;
  color: #888;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 16rem;
}

/* ============================================================
   TICKER / MARQUEE BAND
   ============================================================ */
.ticker-band {
  width: 100%;
  overflow: hidden;
  padding-block: 1.6rem;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding-inline: 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
}
.ticker-item i {
  font-size: 1.4rem;
  color: var(--primary-500);
}
.ticker-sep {
  font-size: 0.5rem;
  color: var(--primary-500);
  margin-left: 1.6rem;
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SERVICES â€” V0 layout (tab bar + image left + text+checklist right)
   ============================================================ */
.services {
  color: #fff;
}
.services__header {
  margin-bottom: 3rem;
}
.services__title-block .section-title {
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.95;
  margin-top: 0.8rem;
  color: #fff !important;
}
/* Tab bar */
.services__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 4rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.services__tabs::-webkit-scrollbar {
  display: none;
}
.services__tab {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 2.4rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #888;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.services__tab i {
  font-size: 1.8rem;
}
.services__tab:hover {
  color: #fff;
}
.services__tab.is-active {
  color: var(--primary-500);
  border-bottom-color: var(--primary-500);
}
/* Pane */
.services__pane {
  display: none;
}
.services__pane.is-active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  animation: fadeIn 0.4s ease;
}
@media (min-width: 768px) {
  .services__pane.is-active {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
/* Image block */
.services__image-wrap {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a1a1a;
}
.services__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.2rem;
}
.services__image-placeholder i {
  font-size: 6rem;
  color: var(--primary-500);
  opacity: 0.4;
}
.services__image-label {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-500);
  background: rgba(0, 0, 0, 0.7);
  padding: 0.6rem 1.2rem;
  border-radius: 0.4rem;
}
.services__image-label i {
  font-size: 1.4rem;
}
/* Text block */
.services__pane-body {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.services__pane-description {
  font-size: 1.6rem;
  color: #aaa;
  line-height: 1.7;
  margin: 0;
}
/* Checklist */
.services__checklist {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.services__checklist li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.5rem;
  color: #ddd;
  font-weight: 500;
}
.services__checklist li i {
  font-size: 2rem;
  color: var(--primary-500);
  flex-shrink: 0;
}
.services__pane-actions {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   BRANDS Logo Strip
   ============================================================ */
.brands {
  background-color: #050505;
  padding-top: 8rem;
  padding-bottom: 0;
  margin-top: 0;
}
.brands .container {
  padding-bottom: 0;
}

.brands__strip {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #080808;
  padding-block: 3.2rem;
}
.brands__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
  will-change: transform;
}
.brands__track:hover {
  animation-play-state: paused;
}
.brands__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  min-width: 18rem;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
}
.brands__item:last-child {
  border-right: none;
}
.brands__item:hover {
  opacity: 1;
}
.brands__logo {
  max-height: 4rem;
  max-width: 13rem;
  object-fit: contain;
  filter: brightness(10) grayscale(1);
}
.brands__logo--invert {
  filter: invert(1) grayscale(1) brightness(10);
}
.brands__name {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

/* ============================================================
   PINTURA / DESABOLLADURA SECTION
   ============================================================ */
.pintura-section {
  background-color: #050505;
  padding-block: 8rem;
  color: #fff;
}
.pintura-section .section-eyebrow {
  display: block;
  margin-bottom: 4rem;
}
.pintura-section__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .pintura-section__body {
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
  }
}

/* --- Photo Grid --- */
.pintura-section__gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pintura-section__img-main {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.8rem;
}
.pintura-section__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.pintura-section__img-main:hover img {
  transform: scale(1.04);
}
.pintura-section__img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pintura-section__img-sub {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.8rem;
}
.pintura-section__img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.pintura-section__img-sub:hover img {
  transform: scale(1.04);
}

/* --- Content --- */
.pintura-section__content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.pintura-section__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.9;
  margin: 0;
}
.pintura-section__title-line1 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 6vw, 6.5rem);
  color: #fff;
  display: block;
}
.pintura-section__title-line2 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 6vw, 6.5rem);
  display: block;
}
.pintura-section__desc {
  font-size: 1.5rem;
  color: #aaa;
  line-height: 1.7;
  margin: 0;
  max-width: 52rem;
}
/* Checklist */
.pintura-section__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.pintura-section__checklist li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.5rem;
  color: #ddd;
  font-weight: 500;
}
.pintura-section__bullet {
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--primary-500);
  flex-shrink: 0;
}
.pintura-section__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
/* Meta info */
.pintura-section__meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pintura-section__meta-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: #aaa;
}
.pintura-section__meta-item i {
  font-size: 1.6rem;
  color: var(--primary-500);
  flex-shrink: 0;
}
.pintura-section__meta-item a {
  color: #aaa;
  transition: color 0.2s;
  text-decoration: none;
}
.pintura-section__meta-item a:hover {
  color: #fff;
}
/* CTA */
.pintura-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  align-self: flex-start;
}
.pintura-section__cta i {
  font-size: 1.8rem;
  transition: transform 0.2s;
}
.pintura-section__cta:hover i {
  transform: translateX(4px);
}

/* ============================================================
   REPUESTOS SECTION
   ============================================================ */
.repuestos-section {
  background-color: #050505;
  padding-block: 8rem;
  color: #fff;
}
.repuestos-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .repuestos-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
  }
}
/* Media Left */
.repuestos-section__media {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.repuestos-section .section-eyebrow {
  margin-bottom: 2rem;
  display: block;
}
.repuestos-section__img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0.8rem;
  overflow: hidden;
}
.repuestos-section__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.repuestos-section__img-wrapper:hover img {
  transform: scale(1.03);
}
.repuestos-section__img-label {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.8rem 1.6rem;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 0.4rem;
  font-weight: 600;
}
/* Brands strip under image */
.repuestos-section__brands {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.repuestos-section__brands span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  padding: 0.8rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.4rem;
  color: #aaa;
}
/* Content Right */
.repuestos-section__content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.repuestos-section__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.9;
  margin: 0;
}
.repuestos-section__title-line1 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 6vw, 6.5rem);
  color: #fff;
}
.repuestos-section__title-line2 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 6vw, 6.5rem);
}
.repuestos-section__desc {
  font-size: 1.5rem;
  color: #aaa;
  line-height: 1.7;
  margin: 0;
  max-width: 50rem;
}
.repuestos-section__subtitle {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--primary-500);
  margin: 2rem 0 0 0;
  text-transform: uppercase;
}
.repuestos-section__subdesc {
  font-size: 1.4rem;
  color: #aaa;
  margin: -1rem 0 0 0;
}
/* Cards */
.repuestos-section__contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.repuestos-card {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.6rem;
  text-decoration: none;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.02);
}
.repuestos-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}
.repuestos-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
}
.repuestos-card__icon.bg-primary {
  background: var(--primary-500);
}
.repuestos-card__text {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.repuestos-card__label {
  font-size: 1.1rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}
.repuestos-card__value {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #fff;
}
.repuestos-card__arrow {
  margin-left: auto;
  color: #555;
  font-size: 1.8rem;
  transition: color 0.3s;
}
.repuestos-card:hover .repuestos-card__arrow {
  color: #fff;
}

/* ML Banner */
.repuestos-ml-banner {
  margin-top: 6rem;
  background: #111;
  border-radius: 0.8rem;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}
@media (min-width: 900px) {
  .repuestos-ml-banner {
    grid-template-columns: 1fr 1fr;
  }
}
.repuestos-ml-banner__left {
  background: #fff000; /* ML Yellow */
  color: #333;
  padding: 4rem;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.repuestos-ml-banner__icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
}
.repuestos-ml-banner__title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.8rem 0;
  line-height: 1.2;
}
.repuestos-ml-banner__text p {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
  color: #444;
}

.repuestos-ml-banner__right {
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.repuestos-ml-banner__store-info h4 {
  font-size: 1.8rem;
  color: #fff;
  margin: 0 0 0.8rem 0;
  line-height: 1.3;
  font-weight: 500;
}
.repuestos-ml-banner__stats {
  font-size: 1.1rem;
  color: var(--primary-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.repuestos-ml-banner__btn {
  width: 5rem;
  height: 5rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  transition: all 0.3s;
}
.repuestos-ml-banner__btn:hover {
  background: #fff;
  color: #000;
}

/* ============================================================
   CONTACTO SECTION
   ============================================================ */
.contacto-section {
  background-color: #0d0d0d;
  padding-block: 8rem;
  color: #fff;
}
.contacto-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  background: #111;
  border-radius: 0.8rem;
  overflow: hidden;
}
@media (min-width: 900px) {
  .contacto-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}
.contacto-section__info {
  padding: 4rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .contacto-section__info {
    padding: 6rem;
  }
}
.contacto-section__title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 6vw, 6.5rem);
  text-transform: uppercase;
  color: #fff;
  margin: 1.6rem 0 2rem 0;
  line-height: 1;
}
.contacto-section__desc {
  font-size: 1.5rem;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 4rem;
}
.contacto-section__blocks {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contacto-section__block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contacto-section__block strong {
  font-size: 1.8rem;
  color: #fff;
  font-family: var(--font-heading);
}
.contacto-section__block a {
  font-size: 1.5rem;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}
.contacto-section__block a:hover {
  color: #fff;
}
@media (width > 992px) {
  .contacto-section__info .btn-whatsapp {
    width: 24rem;
  }
}

/* CF7 Form Styles */
.contacto-section__form {
  padding: 4rem;
  background: #151515;
}
@media (min-width: 900px) {
  .contacto-section__form {
    padding: 6rem;
  }
}
.contacto-section__form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contacto-section__form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 600px) {
  .contacto-section__form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.contacto-section__form .wpcf7-form-control-wrap {
  display: block;
}
.contacto-section__form input[type="text"],
.contacto-section__form input[type="email"],
.contacto-section__form input[type="tel"],
.contacto-section__form textarea,
.contacto-section__form select {
  width: 100%;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.6rem;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 0.4rem;
  font-family: inherit;
  transition: border-color 0.3s;
}
.contacto-section__form input:focus,
.contacto-section__form textarea:focus,
.contacto-section__form select:focus {
  outline: none;
  border-color: var(--primary-500);
}
.contacto-section__form textarea {
  min-height: 12rem;
  resize: vertical;
}
.contacto-section__form label {
  display: block;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 0.8rem;
}
.contacto-section__form .wpcf7-submit {
  width: 100%;
  background: var(--primary-500);
  color: #fff;
  border: none;
  padding: 1.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: background 0.3s;
}
.contacto-section__form .wpcf7-submit:hover {
  background: var(--primary-600);
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  background: #000;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.video-modal.is-open .video-modal__content {
  transform: scale(1);
}
.video-modal__close {
  position: absolute;
  top: 0;
  right: -5rem; /* outside modal on desktop */
  background: transparent;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  padding: 1rem;
  transition: color 0.2s;
  z-index: 10;
}
.video-modal__close:hover {
  color: var(--primary-500);
}
@media (max-width: 1200px) {
  .video-modal__close {
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
  }
}
.video-modal__iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  width: 100%;
}
.video-modal__iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   SERVITECA SECTION
   ============================================================ */
.serviteca-section {
  background-color: #0d0d0d;
  padding-block: 8rem;
  color: #fff;
}
.serviteca-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 900px) {
  .serviteca-section__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.serviteca-section__gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.serviteca-section__img-main img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 0.4rem;
}
.serviteca-section__img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.serviteca-section__img-sub img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0.4rem;
}
.serviteca-section__content {
  padding-right: 2rem;
}
.serviteca-section__title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 5vw, 4.5rem);
  text-transform: uppercase;
  color: #fff;
  margin: 1rem 0 2rem 0;
  line-height: 1.1;
}
.serviteca-section__desc {
  font-size: 1.5rem;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 3rem;
}
.serviteca-section__desc p {
  margin-bottom: 1.5rem;
}
.serviteca-section__desc strong {
  color: #fff;
}
.serviteca-section__contact-box {
  background: #111;
  padding: 3rem;
  border-radius: 0.8rem;
  border-left: 3px solid var(--primary-500);
  margin-bottom: 3rem;
}
.serviteca-section__contact-heading {
  color: var(--primary-500);
  font-size: 2rem;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}
.serviteca-section__contact-sub {
  font-size: 1.4rem;
  color: #aaa;
  margin-bottom: 2rem;
}
.serviteca-section__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.serviteca-section__contact-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.serviteca-section__contact-list i {
  font-size: 2.4rem;
  color: #fff;
}
.serviteca-section__contact-list span {
  display: block;
  font-size: 1.2rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.serviteca-section__contact-list a {
  color: var(--primary-500);
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: 600;
}
.serviteca-section__contact-list a:hover {
  color: var(--primary-600);
}
.serviteca-section__location {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  font-size: 1.4rem;
  color: #aaa;
  line-height: 1.6;
}
.serviteca-section__location strong {
  color: #fff;
  display: block;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

/* ============================================================
   MULTI-LEVEL DROPDOWN MENUS
   ============================================================ */
/* Desktop Submenu */
@media (width > 992px) {
  .navbar__menu li {
    position: relative;
  }
  .navbar__menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #080808;
    min-width: 240px;
    padding: 1rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 100;
  }
  .navbar__menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar__menu .sub-menu li {
    display: block;
    margin: 0;
  }
  .navbar__menu .sub-menu li a {
    padding: 1rem 2.4rem;
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: none;
    color: var(--text-500);
  }
  .navbar__menu .sub-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-500);
  }
}

/* Mobile Accordion Menu */
.mobile-menu__item {
  display: flex;
  flex-direction: column;
}
.mobile-menu__submenu {
  display: none;
  flex-direction: column;
  padding-left: 4.8rem;
  padding-bottom: 1.6rem;
}
.mobile-menu__item.is-open .mobile-menu__submenu {
  display: flex;
}
.mobile-menu__item.is-open .mobile-menu__toggle {
  transform: rotate(180deg);
}
.mobile-menu__sublink {
  font-family: var(--font-body);
  font-size: 1.6rem;
  color: var(--text-500);
  padding: 0.8rem 0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-menu__sublink:hover {
  color: var(--primary-500);
}
.mobile-menu__toggle {
  transition: transform 0.3s ease;
}

/* Fix text visibility on white sections */
.about .section-title,
.about h2,
.about h3,
.about p,
.about .about__description,
.about .about__stat-label {
  color: #1a1a1a !important;
}

/* Fix submenu text color */
.navbar__menu .sub-menu li a {
  color: #fbfbfb !important;
}

/* ============================================================
   WHITE BACKGROUND SECTIONS (Pintura & Serviteca)
   ============================================================ */
.pintura-section,
.serviteca-section {
  background-color: var(--white-500, #ffffff) !important;
  color: #1a1a1a !important;
}

/* Titles and eyebrows */
.pintura-section .section-eyebrow,
.serviteca-section .section-eyebrow {
  color: var(--primary-500) !important;
}

.pintura-section .pintura-section__title-line1,
.pintura-section .pintura-section__desc,
.pintura-section .pintura-section__checklist li,
.pintura-section .pintura-section__meta-item,
.pintura-section .pintura-section__meta-item a,
.serviteca-section .serviteca-section__title,
.serviteca-section .serviteca-section__desc,
.serviteca-section .serviteca-section__desc p,
.serviteca-section .serviteca-section__desc strong,
.serviteca-section .serviteca-section__contact-heading,
.serviteca-section .serviteca-section__contact-sub,
.serviteca-section .serviteca-section__contact-list li span,
.serviteca-section .serviteca-section__contact-list li a,
.serviteca-section .serviteca-section__location p,
.serviteca-section .serviteca-section__location strong,
.serviteca-section .serviteca-section__location span {
  color: #1a1a1a !important;
}

.pintura-section .pintura-section__meta-item a:hover,
.serviteca-section .serviteca-section__contact-list li a:hover {
  color: var(--primary-500) !important;
}

/* Fix dark contact box inside Serviteca */
.serviteca-section__contact-box {
  background: var(--gray-50, #fbfbfb);
  border: 1px solid var(--gray-200, #eeecec);
}

.serviteca-section__contact-list li i {
  color: var(--primary-500) !important;
}

.pintura-section .pintura-section__bullet {
  background-color: var(--primary-500) !important;
}

/* ============================================================
   CATALOG SECTION — CTA Actions
   ============================================================ */
.catalog__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

/* ============================================================
   VIDEO MODAL — Side close strips (fix for Vimeo vp-center overlay)
   ============================================================ */
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 0;
}
.video-modal__side {
  position: fixed;
  top: 0;
  bottom: 0;
  width: calc((100vw - min(90vw, 960px)) / 2);
  z-index: 10;
  cursor: pointer;
}
.video-modal__side--left  { left: 0; }
.video-modal__side--right { right: 0; }
