﻿/* ==========================================
   Variables
   ========================================== */
:root {
  --primary: #181b20;
  --secondary: #2a0d0d;
  --accent: #be0305;
  --accent-dark: #9c0204;
  --accent-light: #fff0f0;
  --gold: #edcf12;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --bg: #f8fafc;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --container: 1200px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ==========================================
   Layout
   ========================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-dark { background: var(--primary); color: var(--white); }
.section-light { background: var(--bg); }

.section-header { text-align: center; margin-bottom: 64px; }

.section-label {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-dark .section-label { background: rgba(190, 3, 5, 0.15); }

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255, 255, 255, 0.65); }

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(190, 3, 5, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ==========================================
   Header / Nav
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  padding: 16px 0;
}

.header.scrolled {
  background: rgba(24, 27, 32, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-dark { background: rgba(24, 27, 32, 0.97); }

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
  flex-shrink: 0;
}

.logo-icon { font-size: 1.4rem; color: var(--accent); line-height: 1; }
.logo-text strong { color: var(--accent); }
.logo-img { height: 48px; width: auto; max-width: none; display: block; }

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

.nav-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 400;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  position: relative;
}

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

.nav-link:not(.nav-cta).active-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-menu-contact { display: none; }

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  margin-left: 4px;
}
.nav-cta:hover { background: var(--accent-dark) !important; }
.nav-cta.active-link { background: var(--accent-dark) !important; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 0 8px 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--accent); }
.nav-phone svg { width: 15px; height: 15px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}
.nav-overlay.visible { display: block; }

/* ==========================================
   Homepage Hero
   ========================================== */
.hero {
  background: linear-gradient(135deg, #181b20 0%, #200808 60%, #2a0d0d 100%);
  color: var(--white);
  padding: 148px 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(190, 3, 5, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 5%, rgba(190, 3, 5, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(190, 3, 5, 0.12);
  border: 1px solid rgba(190, 3, 5, 0.35);
  color: #edcf12;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-description strong { color: rgba(255, 255, 255, 0.95); font-weight: 600; }

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

.hero-contact-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.hero-contact-item:hover { color: var(--accent); }
.hero-contact-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 32px;
}

.stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}

.stat span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); font-weight: 500; }

/* Hero visual card */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-card {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(190, 3, 5, 0.12);
  border: 1px solid rgba(190, 3, 5, 0.2);
  position: relative;
}

.hero-card-inner { position: relative; }
.airbag-svg { display: block; width: 100%; }

.hero-card-badges {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.card-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.card-badge-success { background: rgba(34, 197, 94, 0.18); border: 1px solid rgba(34, 197, 94, 0.4); color: #4ade80; }
.card-badge-info { background: rgba(190, 3, 5, 0.18); border: 1px solid rgba(190, 3, 5, 0.4); color: #edcf12; }

.hero-wave { position: relative; line-height: 0; margin-top: -1px; }

/* ==========================================
   Page Hero (inner pages)
   ========================================== */
.page-hero {
  background: linear-gradient(135deg, #181b20 0%, #200808 60%, #2a0d0d 100%);
  color: var(--white);
  padding: 140px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(190, 3, 5, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content { padding-bottom: 64px; position: relative; }

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.breadcrumbs a { color: rgba(255, 255, 255, 0.6); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { opacity: 0.4; font-size: 0.7rem; }

/* ==========================================
   Services Grid
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
  border-color: rgba(190, 3, 5, 0.3);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}
.service-card.featured::after { transform: scaleX(1); }

.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.service-icon {
  width: 54px;
  height: 54px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--accent); }
.service-icon svg { width: 26px; height: 26px; color: var(--accent); transition: color 0.3s; }
.service-card:hover .service-icon svg { color: var(--white); }

.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; }

.service-features { display: flex; flex-direction: column; gap: 7px; }
.service-features li { font-size: 0.85rem; color: var(--text-light); padding-left: 20px; position: relative; }
.service-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* Service detail (full page) */
.service-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.service-full:last-child { border-bottom: none; }
.service-full.reverse { direction: rtl; }
.service-full.reverse > * { direction: ltr; }

.service-full-text h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.service-full-text p { color: var(--text-light); line-height: 1.75; margin-bottom: 20px; }
.service-full-text .service-features { margin-bottom: 28px; }

.service-visual {
  background: linear-gradient(135deg, #181b20, #2a0d0d);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(190, 3, 5, 0.2);
}

.service-visual svg { width: 80px; height: 80px; color: var(--accent); opacity: 0.8; }

/* ==========================================
   Process Steps (5 steps)
   ========================================== */
.process-steps {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr 32px 1fr;
  align-items: start;
  margin-bottom: 40px;
}

.process-step { text-align: center; padding: 0 8px; }

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 10px rgba(190, 3, 5, 0.15);
  position: relative;
  z-index: 1;
}

.step-content h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.step-content p { font-size: 0.82rem; color: rgba(255, 255, 255, 0.55); line-height: 1.65; }

.process-connector { display: flex; align-items: flex-start; padding-top: 30px; }
.process-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(190, 3, 5, 0.8), rgba(190, 3, 5, 0.25));
}

.process-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.65;
}
.process-note svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.process-note strong { color: var(--white); }

/* ==========================================
   Benefits Grid
   ========================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}
.benefit-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(190, 3, 5, 0.4);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon { background: var(--accent); }
.benefit-icon svg { width: 28px; height: 28px; color: var(--accent); transition: color 0.3s; }
.benefit-card:hover .benefit-icon svg { color: var(--white); }

.benefit-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.benefit-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ==========================================
   Comparison Section
   ========================================== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.comparison-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.comparison-card.recommended {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-xl);
  position: relative;
}

.comparison-recommended-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.comparison-header { text-align: center; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.comparison-header h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.comparison-price { font-size: 1.6rem; font-weight: 800; color: var(--text); margin-top: 8px; }
.recommended .comparison-price { color: var(--accent); }
.comparison-note { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

.comparison-list { display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 28px; }
.comparison-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; line-height: 1.5; }
.comparison-list li::before { font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.comparison-list li.pro::before { content: '✓'; color: var(--accent); }
.comparison-list li.con::before { content: '✗'; color: #ef4444; }

/* ==========================================
   Gallery
   ========================================== */
.gallery-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 9px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  background: var(--white);
  cursor: pointer;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

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

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(190, 3, 5, 0.3);
}

.gallery-ba { display: grid; grid-template-columns: 1fr 1fr; }

.gallery-img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery-img.damaged {
  background: linear-gradient(135deg, #1c0a0a 0%, #2d1010 100%);
}
.gallery-img.restored {
  background: linear-gradient(135deg, #060e1a 0%, #0d1f3c 100%);
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0.5;
}
.gallery-placeholder svg { width: 36px; height: 36px; }
.gallery-placeholder span { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.gallery-label {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-label.pre { background: #ef4444; color: white; }
.gallery-label.posle { background: #22c55e; color: white; }

.gallery-info { padding: 16px 18px; border-top: 1px solid var(--border); }
.gallery-info h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.gallery-info p { font-size: 0.8rem; color: var(--text-light); }
.gallery-info .gallery-tag {
  display: inline-block;
  background: var(--bg);
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Gallery Groups (simple per-car subsections) */
.gallery-group {
  margin-bottom: 56px;
}
.gallery-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.gallery-group-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}
.gallery-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-photo:hover img {
  transform: scale(1.05);
}

/* Single photo card for homepage preview */
.gallery-photo-single {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.gallery-photo-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  transition: opacity 0.15s ease;
}
.lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-counter {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

/* Gallery CTA (legacy) */
.gallery-cta { text-align: center; margin-top: 48px; }
.gallery-cta p { color: var(--text-light); margin-bottom: 16px; }

/* Home contact cards */
.home-contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.home-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  color: var(--text);
  transition: var(--transition);
}
a.home-contact-card:hover {
  border-color: rgba(190, 3, 5, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--text);
}
.home-contact-card .contact-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0;
}
.home-contact-card strong {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
}
.home-contact-card span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  word-break: break-all;
}
@media (max-width: 1024px) {
  .home-contact-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .home-contact-cards { grid-template-columns: 1fr; }
}

/* Inline CTA box */
.inline-cta {
  position: relative;
  background: linear-gradient(135deg, #181b20 0%, #2a0d0d 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  margin-top: 64px;
}
.inline-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(190, 3, 5, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.inline-cta-label {
  display: inline-block;
  background: rgba(190, 3, 5, 0.18);
  border: 1px solid rgba(190, 3, 5, 0.45);
  color: #ff8a8a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.inline-cta h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.inline-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.025rem;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.inline-cta .cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .inline-cta { padding: 40px 24px; }
  .inline-cta h3 { font-size: 1.4rem; }
}

/* ==========================================
   Brands Grid
   ========================================== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.brand-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 8px 14px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.brand-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-2px);
}
.brand-logo {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo svg { max-height: 32px; width: auto; }
.brand-item.more {
  color: var(--text-light);
  font-style: italic;
  font-weight: 400;
  justify-content: center;
}

/* ==========================================
   Testimonials
   ========================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-light);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-card:hover { box-shadow: var(--shadow-xl); border-color: rgba(190, 3, 5, 0.25); }

.testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 0.92rem; line-height: 1.75; margin-bottom: 24px; color: var(--text); }

.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.825rem; font-weight: 700; flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.9rem; font-weight: 700; }
.author-info span { font-size: 0.8rem; color: var(--text-light); }

/* ==========================================
   FAQ Accordion
   ========================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(190, 3, 5, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-item.open .faq-question { color: var(--accent); }

.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; color: var(--text-light); }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--accent); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.92rem; color: var(--text-light); line-height: 1.72; border-top: 1px solid var(--border); padding-top: 16px; }

.faq-cta { text-align: center; margin-top: 40px; }

/* ==========================================
   Partners
   ========================================== */
.partners-wrap { display: flex; justify-content: center; }

.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  transition: var(--transition);
}
.partner-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.partner-logo-area {
  width: 180px;
  height: 80px;
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  overflow: hidden;
}
.partner-logo-area img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }

.partner-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.partner-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}
.partner-link:hover { gap: 10px; }
.partner-link svg { width: 16px; height: 16px; }

/* ==========================================
   Contact
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

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

.contact-item { display: flex; align-items: flex-start; gap: 16px; }

.contact-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--accent); }

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
  line-height: 1.4;
  display: block;
}
.contact-item a:hover { color: var(--accent); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-light);
  transition: var(--transition);
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }

.contact-note {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.form-group label span { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(190, 3, 5, 0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error { font-size: 0.78rem; color: #ef4444; font-weight: 500; min-height: 16px; display: block; }
.btn-icon { width: 17px; height: 17px; flex-shrink: 0; }

.form-success {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 20px;
  color: #15803d;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; color: #22c55e; margin-top: 1px; }
.form-success.visible { display: flex; }

/* ==========================================
   About Page
   ========================================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-intro-img {
  background: linear-gradient(135deg, #181b20 0%, #2a0d0d 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(190, 3, 5, 0.2);
}
.about-intro-img svg { width: 80px; height: 80px; color: var(--accent); opacity: 0.7; }

.about-intro-text h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
.about-intro-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-intro-text p:last-of-type { margin-bottom: 28px; }

.about-stats {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.about-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.about-stat span { font-size: 0.82rem; color: var(--text-light); }

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

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }

.value-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.value-icon svg { width: 22px; height: 22px; color: var(--accent); }
.value-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.value-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ==========================================
   Scroll Animations
   ========================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ==========================================
   Footer
   ========================================== */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.55);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo { display: flex; flex-shrink: 0; }

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 9px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.footer-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.footer-contact-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact-strip > a:first-child {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}
.footer-contact-strip > a:first-child:hover { color: var(--accent); }

.footer-ig {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: background 0.2s, color 0.2s;
}
.footer-ig:hover { background: var(--accent); color: var(--white); }
.footer-ig svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.28);
}

/* ==========================================
   Section CTA (for inner pages)
   ========================================== */
.section-cta-box {
  background: linear-gradient(135deg, #181b20, #2a0d0d);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(190, 3, 5, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.section-cta-box h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.section-cta-box p { color: rgba(255, 255, 255, 0.65); font-size: 1.05rem; max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.section-cta-box .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { flex-wrap: wrap; gap: 16px; }
  .footer-nav { order: 3; width: 100%; justify-content: flex-start; }
  .contact-grid { gap: 40px; }
  .about-intro-grid { gap: 40px; }
  .service-full { grid-template-columns: 1fr; gap: 40px; }
  .service-full.reverse { direction: ltr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-photos-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps {
    grid-template-columns: 1fr 24px 1fr 24px 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Mobile header: phone left | logo center | toggle right */
  .nav { position: relative; }

  .nav-phone {
    display: flex;
    order: 1;
    font-size: 0;
    padding: 0;
    border-left: none;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .nav-phone svg { width: 19px; height: 19px; }
  .nav-phone:hover { background: rgba(190, 3, 5, 0.25); color: var(--accent); }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-toggle {
    display: flex;
    order: 2;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
  }

  .logo-img { height: 44px; max-width: none; }

  /* Slide-out menu */
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 88vw);
    height: 100vh;
    background: #181b20;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.55);
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }

  .nav-menu::before {
    content: '';
    display: block;
    height: 72px;
    width: 100%;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-menu > li { width: 100%; }
  .nav-link {
    width: 100%;
    padding: 18px 28px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.75);
  }
  .nav-link::after {
    content: '›';
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.25);
  }
  .nav-link:not(.nav-cta).active-link::before { display: none; }
  .nav-link:hover { background: rgba(255, 255, 255, 0.05); color: var(--white); }
  .nav-link:hover::after { color: var(--accent); }

  .nav-cta {
    margin: 20px 24px 0;
    width: calc(100% - 48px);
    text-align: center;
    border-radius: var(--radius-sm);
    border-bottom: none;
    padding: 13px 20px;
    justify-content: center;
  }
  .nav-cta::after { display: none; }

  /* Menu contact footer */
  .nav-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: auto;
    padding: 20px 24px 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    width: 100%;
  }
  .nav-menu-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 9px 4px;
    border-radius: var(--radius-sm);
    transition: color 0.2s;
  }
  .nav-menu-contact a:hover { color: rgba(255, 255, 255, 0.85); }
  .nav-menu-contact svg { width: 16px; height: 16px; flex-shrink: 0; }

  .hero { padding-top: 108px; }
  .hero-content { grid-template-columns: 1fr; gap: 0; padding-bottom: 64px; }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 40px;
  }
  .process-step { padding: 0 24px; }
  .process-connector { justify-content: center; align-items: center; padding: 0; height: 36px; }
  .process-connector::after {
    width: 2px; height: 36px; min-width: unset;
    background: linear-gradient(180deg, rgba(190, 3, 5, 0.8), rgba(190, 3, 5, 0.2));
  }

  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-photos-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 20px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro-img { display: none; }
  .footer-main { gap: 12px; }
  .footer-contact-strip { border-left: none; padding-left: 0; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 4px; }
  .section-cta-box { padding: 40px 24px; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-direction: column; gap: 12px; }
  .hero-contact-bar { flex-direction: column; gap: 12px; }
  .about-stats { flex-wrap: wrap; gap: 16px; }
}
