/* ==========================================================================
   CHINA AUTOMOBILE YOPOUGON - PREMIUM DEALERSHIP STYLESHEET
   Identity Colors: Automobile Deep Blue, Vivid Red, Pure White, Metallic Chrome
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-dark: #060C17;
  --bg-deep: #091322;
  --bg-surface: #0E1C33;
  --bg-card: #132440;
  --bg-card-hover: #182C4D;
  
  --primary-blue: #1D4ED8;
  --primary-blue-dark: #1E3A8A;
  --primary-blue-glow: rgba(29, 78, 216, 0.4);
  
  --accent-red: #DC2626;
  --accent-red-hover: #B91C1C;
  --accent-red-glow: rgba(220, 38, 38, 0.4);
  
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #1EBE5D;

  --text-white: #FFFFFF;
  --text-light: #F1F5F9;
  --text-muted: #94A3B8;
  --text-silver: #CBD5E1;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-metallic: rgba(255, 255, 255, 0.16);
  --border-glow: rgba(59, 130, 246, 0.3);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-red: 0 8px 25px rgba(220, 38, 38, 0.35);
  --shadow-blue: 0 8px 25px rgba(29, 78, 216, 0.35);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* Base & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.text-gradient-red {
  background: linear-gradient(135deg, #FF4D4D 0%, #DC2626 50%, #991B1B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-silver {
  background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 50%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

/* ==========================================================================
   PAGE PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

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

.preloader-logo-wrap img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(29, 78, 216, 0.5);
  animation: pulseLogo 2s infinite ease-in-out;
}

.preloader-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
  height: 130px;
  border: 3px solid transparent;
  border-top-color: var(--accent-red);
  border-right-color: var(--primary-blue);
  border-radius: 50%;
  animation: spinRing 1.2s linear infinite;
}

.preloader-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-white);
  text-transform: uppercase;
}

.preloader-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.preloader-progress-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 10px;
}

.preloader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
  border-radius: 4px;
  animation: fillProgress 1.2s ease-in-out forwards;
}

@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(0.96); opacity: 0.9; }
  50% { transform: scale(1.04); opacity: 1; filter: drop-shadow(0 0 15px rgba(220, 38, 38, 0.6)); }
}

@keyframes fillProgress {
  0% { width: 0%; }
  50% { width: 60%; }
  100% { width: 100%; }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-normal);
  background: linear-gradient(180deg, rgba(6, 12, 23, 0.8) 0%, rgba(6, 12, 23, 0) 100%);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(6, 12, 23, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--border-metallic);
  background: var(--bg-surface);
  transition: transform var(--transition-fast);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.06);
  border-color: var(--primary-blue);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 1px;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.brand-location {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-red);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), var(--primary-blue));
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #B91C1C 100%);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-red);
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.5);
  background: linear-gradient(135deg, #EF4444 0%, var(--accent-red) 100%);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  background: transparent;
  z-index: 1001;
}

.hamburger-btn span {
  width: 100%;
  height: 3px;
  background-color: var(--text-white);
  border-radius: 3px;
  transition: all var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: rgba(6, 12, 23, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  padding: 90px 28px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
  border-left: 1px solid var(--border-metallic);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}

.mobile-menu-drawer.open {
  right: 0;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer-brand-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--accent-red);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link.active, .mobile-nav-link:hover {
  color: var(--accent-red);
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-drawer-info {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Overlay for Mobile Drawer */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HERO SECTIONS WITH VIBRANT VISIBLE VIDEOS (WITH CSS BACKGROUND FALLBACK)
   ========================================================================== */
.hero-video-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 130px 0 90px;
  /* Instant fallback background image for online hosting while video buffers */
  background: #060C17 url('../assets/T1.jpeg') center/cover no-repeat;
}

/* Crisp, clear, non-blurred video background */
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.92) contrast(1.08) saturate(1.1);
}

/* Transparent gradient overlay to let video colors pop while keeping text clear */
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(6, 12, 23, 0.65) 0%, rgba(6, 12, 23, 0.15) 50%, rgba(6, 12, 23, 0.9) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(6, 12, 23, 0.75);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-red);
  animation: pulseDot 1.5s infinite;
}

.hero-badge-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.8vw, 1.85rem);
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 20px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
}

.hero-description {
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  color: var(--text-silver);
  max-width: 720px;
  margin: 0 auto 38px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  background: rgba(6, 12, 23, 0.4);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Button Components */
.btn-primary-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #B91C1C 100%);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-red);
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary-red:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.55);
  background: linear-gradient(135deg, #EF4444 0%, var(--accent-red) 100%);
}

.btn-secondary-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: rgba(6, 12, 23, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-metallic);
  transition: all var(--transition-normal);
}

.btn-secondary-glass:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--primary-blue);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.3);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #20BA5A 0%, #0F7569 100%);
}

.btn-call-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg-surface);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary-blue);
  transition: all var(--transition-fast);
}

.btn-call-outline:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

/* ==========================================================================
   STATISTICS & KEY NUMBERS SECTION (DÉROULANTS)
   ========================================================================== */
.section-stats {
  padding: 70px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stat-card {
  background: var(--bg-surface);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red), var(--primary-blue));
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-metallic);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  font-size: 2rem;
  color: var(--accent-red);
  margin-bottom: 14px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-silver);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   BUYING PROCESS SECTION
   ========================================================================== */
.section-process {
  padding: 100px 0;
  background: var(--bg-dark);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.process-card {
  background: var(--bg-surface);
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: all var(--transition-normal);
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.process-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
}

.process-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(29, 78, 216, 0.2);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SHOWROOM FACADE SECTION (T1.jpeg)
   ========================================================================== */
.section-facade {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-red);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.facade-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.facade-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-metallic);
  box-shadow: var(--shadow-lg);
  background: var(--bg-surface);
}

.facade-image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.facade-image-card:hover img {
  transform: scale(1.03);
}

.facade-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(6, 12, 23, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-metallic);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.facade-badge-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-white);
}

.facade-badge-sub {
  font-size: 0.85rem;
  color: var(--accent-red);
  font-weight: 600;
}

.facade-text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.facade-heading {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.25;
}

.facade-lead {
  font-size: 1.15rem;
  color: var(--text-silver);
  line-height: 1.7;
}

.facade-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0;
}

.facade-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-surface);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition-fast);
}

.facade-info-item:hover {
  border-color: var(--primary-blue);
}

.facade-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(29, 78, 216, 0.2);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.facade-info-text strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--text-white);
  font-size: 1rem;
}

.facade-info-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   VEHICLES SECTION & CARDS WITH IA BRAND BADGES & RECOGNITION
   ========================================================================== */
.section-vehicles {
  padding: 110px 0;
  background: var(--bg-dark);
}

.vehicles-filter-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--bg-surface);
  color: var(--text-silver);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-blue);
  color: var(--text-white);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-blue);
}

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

/* Vehicle Card Component */
.vehicle-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-metallic);
  box-shadow: var(--shadow-lg);
}

.vehicle-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000;
  overflow: hidden;
}

.vehicle-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  cursor: pointer;
}

.vehicle-card:hover .vehicle-main-img {
  transform: scale(1.05);
}

.vehicle-badge-status {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(220, 38, 38, 0.92);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.vehicle-badge-model {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(29, 78, 216, 0.88);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vehicle-badge-dealer {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: rgba(6, 12, 23, 0.85);
  backdrop-filter: blur(8px);
  color: var(--text-silver);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
}

/* Image Navigation Controls on Card */
.vehicle-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(6, 12, 23, 0.75);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: all var(--transition-fast);
  z-index: 5;
}

.vehicle-card:hover .vehicle-nav-btn {
  opacity: 1;
}

.vehicle-nav-btn:hover {
  background: var(--accent-red);
  transform: translateY(-50%) scale(1.1);
}

.vehicle-nav-prev { left: 12px; }
.vehicle-nav-next { right: 12px; }

/* Thumbnails Strip */
.vehicle-thumbs-strip {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
}

.vehicle-thumb-img {
  width: 60px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0.6;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

.vehicle-thumb-img.active, .vehicle-thumb-img:hover {
  opacity: 1;
  border-color: var(--accent-red);
  transform: scale(1.05);
}

/* Card Body */
.vehicle-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.vehicle-card-header {
  margin-bottom: 14px;
}

.vehicle-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
}

.vehicle-card-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.vehicle-features-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  border: 1px dashed var(--border-subtle);
}

.vehicle-features-text {
  font-size: 0.85rem;
  color: var(--text-silver);
  display: flex;
  align-items: center;
  gap: 8px;
}

.vehicle-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ==========================================================================
   FEATURES & ADVANTAGES SECTION
   ========================================================================== */
.section-features {
  padding: 100px 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.feature-box {
  background: var(--bg-surface);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.3) 0%, rgba(220, 38, 38, 0.2) 100%);
  border: 1px solid var(--border-metallic);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.8rem;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   MAP & CONTACT SECTION
   ========================================================================== */
.section-map {
  padding: 90px 0;
  background: var(--bg-deep);
}

.map-container {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-metallic);
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.1) invert(0.9) hue-rotate(180deg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info-card {
  background: var(--bg-surface);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-metallic);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-direct-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.contact-form-card {
  background: var(--bg-surface);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-metallic);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-silver);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 12px rgba(29, 78, 216, 0.4);
}

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

/* FAQ Accordion Component */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-question {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FLOATING MOBILE STICKY BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 995;
  background: rgba(6, 12, 23, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-metallic);
  padding: 12px 16px;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.6);
}

.mobile-sticky-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-white);
}

.sticky-call {
  background: linear-gradient(135deg, var(--accent-red) 0%, #B91C1C 100%);
  box-shadow: var(--shadow-red);
}

.sticky-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(18px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-metallic);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--accent-red);
}

.lightbox-caption {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-white);
}

/* ==========================================================================
   FOOTER & SIGNATURE
   ========================================================================== */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-metallic);
  padding: 80px 0 30px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--border-metallic);
}

.footer-brand-title {
  font-size: 1.3rem;
  font-weight: 800;
}

.footer-brand-sub {
  font-size: 0.8rem;
  color: var(--accent-red);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-white);
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--accent-red);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-silver);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-silver);
  font-size: 0.95rem;
}

.footer-contact-icon {
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-signature {
  width: 100%;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 1px;
  color: var(--text-silver);
}

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

/* ==========================================================================
   ANIMATIONS & REVEALS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .facade-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .facade-image-card img {
    height: 380px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu, .btn-header-call {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-number {
    font-size: 2.4rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .vehicles-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary-red, .btn-secondary-glass {
    width: 100%;
  }
  .mobile-sticky-bar {
    display: block;
  }
  body {
    padding-bottom: 60px; /* Space for mobile floating bar */
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   FLAGSHIP VEHICLES SECTION (NOS NOUVELLES ARRIVÉES - TOP 3)
   ========================================================================== */
.section-flagship {
  padding: 80px 0;
  background: linear-gradient(180deg, #060C17 0%, #091322 50%, #0E1C33 100%);
  position: relative;
  overflow: hidden;
}

.section-flagship::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.5), rgba(29, 78, 216, 0.5), transparent);
}

.flagship-vehicles-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
}

.flagship-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-metallic);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  position: relative;
}

.flagship-card:hover {
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(220, 38, 38, 0.15);
}

.flagship-card.reversed {
  grid-template-columns: 1fr 1.15fr;
}

.flagship-card.reversed .flagship-media {
  order: 2;
}

.flagship-card.reversed .flagship-content {
  order: 1;
}

.flagship-card.exeed-theme {
  background: linear-gradient(145deg, #050B16 0%, #081224 60%, #110712 100%);
  border: 1px solid rgba(220, 38, 38, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(220, 38, 38, 0.2);
}

.flagship-media {
  position: relative;
  background: #030710;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flagship-main-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
}

.flagship-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.flagship-card:hover .flagship-main-img {
  transform: scale(1.05);
}

.flagship-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 5;
}

.badge-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.badge-zero-km {
  background: linear-gradient(135deg, #DC2626, #991B1B);
  color: #FFFFFF;
}

.badge-warranty {
  background: linear-gradient(135deg, #1D4ED8, #1E3A8A);
  color: #FFFFFF;
}

.badge-negotiable {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #FFFFFF;
}

.badge-exeed-premium {
  background: linear-gradient(135deg, #7C3AED, #4C1D95);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.flagship-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flagship-subtitle {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 8px;
  display: block;
}

.flagship-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.flagship-price-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.flagship-price {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.flagship-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.highlight-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
  transition: var(--transition-fast);
}

.highlight-pill:hover {
  background: rgba(29, 78, 216, 0.15);
  border-color: var(--primary-blue);
}

.highlight-pill-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text-white);
  display: block;
}

.highlight-pill-lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.flagship-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.specs-table-mini {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.88rem;
}

.specs-table-mini td {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.specs-table-mini td:first-child {
  color: var(--text-muted);
  font-weight: 600;
  width: 45%;
}

.specs-table-mini td:last-child {
  color: var(--text-white);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .flagship-card, .flagship-card.reversed {
    grid-template-columns: 1fr;
  }
  .flagship-card.reversed .flagship-media {
    order: 1;
  }
  .flagship-card.reversed .flagship-content {
    order: 2;
  }
  .flagship-highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .flagship-content {
    padding: 24px 18px;
  }
  .flagship-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flagship-actions {
    flex-direction: column;
  }
  .flagship-actions .btn-primary-red, .flagship-actions .btn-whatsapp-green, .flagship-actions .btn-secondary-glass {
    width: 100%;
  }
}
