/* ==========================================================================
   CRÈME VINYL CRAFT - Ultra Premium CSS Styling & Design System
   ========================================================================== */

@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&family=Syne:wght@700;800&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #07080A;
  --bg-card: rgba(16, 18, 26, 0.75);
  --bg-card-hover: rgba(24, 27, 40, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(230, 194, 128, 0.3);
  --border-cyan: rgba(0, 242, 254, 0.3);
  
  --gold-primary: #E6C280;
  --gold-light: #F6E6C6;
  --gold-glow: rgba(230, 194, 128, 0.25);
  
  --cyan-primary: #00F2FE;
  --cyan-glow: rgba(0, 242, 254, 0.25);
  
  --text-main: #F1F3F7;
  --text-muted: #949EAE;
  --text-dark: #07080A;
  
  /* Fonts */
  --font-heading: 'Outfit', 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Shadows & FX */
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px rgba(230, 194, 128, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background: radial-gradient(circle at 50% 0%, #151824 0%, #07080A 70%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Interactive Cursor Spotlight Glow */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 194, 128, 0.06) 0%, rgba(0, 242, 254, 0.03) 40%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.5s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

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

/* Utilities */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--cyan-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(230, 194, 128, 0.1);
  border: 1px solid var(--border-accent);
  color: var(--gold-primary);
  backdrop-filter: blur(8px);
}

.badge-cyan {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--border-cyan);
  color: var(--cyan-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), #B8934A);
  color: var(--text-dark);
  box-shadow: 0 10px 25px rgba(230, 194, 128, 0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #FFF, var(--gold-primary));
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(230, 194, 128, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan-primary), #00A6B2);
  color: var(--text-dark);
  box-shadow: 0 10px 25px rgba(0, 242, 254, 0.25);
}

.btn-cyan:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 242, 254, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
}

/* Navigation Header - Floating Glass Dock */
.navbar {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 14px 8px 22px;
  background: rgba(14, 16, 24, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

.navbar.scrolled .nav-container {
  background: rgba(8, 10, 16, 0.92);
  border-color: rgba(230, 194, 128, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(230, 194, 128, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #FFF;
}

.logo-badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-primary), #8F6927);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 0 15px var(--gold-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.phone-link:hover {
  background: rgba(230, 194, 128, 0.1);
  border-color: var(--border-accent);
  color: var(--gold-primary);
}

/* Audience Mode Toggle Banner inside Hero */
.audience-toggle-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-start;
}

.audience-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.04);
  padding: 5px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.audience-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}

.audience-btn.active {
  color: #000;
  background: linear-gradient(135deg, var(--gold-primary), #C8A056);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.audience-btn.active.mode-commercial {
  background: linear-gradient(135deg, var(--cyan-primary), #00A6B2);
  box-shadow: 0 4px 20px var(--cyan-glow);
  color: #000;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  position: relative;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin: 20px 0;
  line-height: 1.08;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 36px;
  max-width: 580px;
  color: var(--text-muted);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.stat-item p {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Image Showcase Frame */
.hero-visual {
  position: relative;
}

.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  background: var(--bg-card);
  transition: var(--transition-smooth);
}

.visual-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), var(--shadow-glow);
}

.visual-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

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

.visual-overlay-controls {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 16px 20px;
  background: rgba(11, 13, 20, 0.85);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.swatch-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.swatch-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.color-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
}

.color-swatch.active {
  border-color: #FFF;
  transform: scale(1.2);
}

/* Trust Bar */
.trust-section {
  padding: 30px 0 60px;
  border-bottom: 1px solid var(--border-light);
}

.trust-title {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0.65;
}

.trust-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FFF;
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 16px 0;
}

.section-desc {
  font-size: 1.1rem;
}

/* Services Grid (Personal vs Commercial Showcase) */
.services-section {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.service-card.commercial::before {
  background: linear-gradient(90deg, transparent, var(--cyan-primary), transparent);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.service-card.commercial:hover {
  border-color: var(--border-cyan);
  box-shadow: var(--shadow-card), 0 0 35px var(--cyan-glow);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(230, 194, 128, 0.1);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.service-card.commercial .service-icon {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--border-cyan);
  color: var(--cyan-primary);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  margin-bottom: 28px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.service-features li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.service-card.commercial .service-features li svg {
  color: var(--cyan-primary);
}

/* Interactive 3D Vinyl Configurator */
.configurator-section {
  padding: 90px 0;
  background: radial-gradient(ellipse at center, rgba(230, 194, 128, 0.05) 0%, transparent 70%);
}

.configurator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.config-preview-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  height: 400px;
  background: #000;
}

.config-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.config-color-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  mix-blend-mode: color;
  pointer-events: none;
  transition: background-color 0.4s ease, opacity 0.4s ease;
  opacity: 0.45;
}

.config-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.control-group-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.options-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.option-chip {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.option-chip:hover, .option-chip.active {
  border-color: var(--gold-primary);
  background: rgba(230, 194, 128, 0.15);
  color: var(--gold-primary);
}

.swatch-picker {
  display: flex;
  gap: 14px;
}

.config-price-summary {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-display {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-primary);
}

/* Commercial Fleet ROI Calculator */
.roi-section {
  padding: 90px 0;
}

.roi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  padding: 44px;
  backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.roi-slider-group {
  margin-bottom: 28px;
}

.roi-slider-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.roi-slider-val {
  color: var(--cyan-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
}

.roi-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  accent-color: var(--cyan-primary);
  cursor: pointer;
}

.roi-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.roi-result-box {
  background: rgba(0, 242, 254, 0.05);
  border: 1px solid var(--border-cyan);
  padding: 24px;
  border-radius: var(--radius-md);
}

.roi-result-box h4 {
  font-size: 2rem;
  color: var(--cyan-primary);
  margin-bottom: 4px;
}

.roi-result-box p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Before & After Interactive Slider */
.before-after-section {
  padding: 90px 0;
}

.ba-slider-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 580px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-card);
  user-select: none;
}

.ba-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.ba-img-after {
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  overflow: hidden;
  border-right: 3px solid var(--gold-primary);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.ba-img-after img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(230, 194, 128, 0.8);
  cursor: ew-resize;
  z-index: 10;
  font-weight: 800;
}

.ba-badge {
  position: absolute;
  top: 24px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--border-light);
  z-index: 5;
}

.ba-badge.before { right: 24px; color: #FFF; }
.ba-badge.after { left: 24px; color: var(--gold-primary); }

/* Gallery Section */
.gallery-section {
  padding: 90px 0;
}

.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-tab.active, .filter-tab:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--text-dark);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--border-light);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(7, 8, 10, 0.9) 0%, transparent 60%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  color: #FFF;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--gold-primary);
}

/* Process Step Section */
.process-section {
  padding: 90px 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  position: relative;
  transition: var(--transition-smooth);
}

.process-step:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(230, 194, 128, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.process-step h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.85rem;
}

/* FAQ Accordion */
.faq-section {
  padding: 90px 0;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  color: var(--gold-primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 24px 24px;
  display: none;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-body {
  display: block;
}

/* Modal Popup (Multi-Step Instant Quote Builder) */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: #FFF;
  background: rgba(255, 255, 255, 0.15);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: #FFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.08);
}

/* Footer */
footer {
  padding: 80px 0 30px;
  background: #040507;
  border-top: 1px solid var(--border-light);
}

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

.footer-brand p {
  margin-top: 16px;
  max-width: 300px;
  font-size: 0.9rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #FFF;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
}

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

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid, .configurator-card, .roi-card, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 3rem;
  }
  .ba-slider-container {
    height: 420px;
  }
  .ba-img-after img {
    width: 100%;
  }
}

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

  .navbar {
    top: 10px;
    padding: 0 12px;
  }

  .nav-container {
    min-height: 54px;
    padding: 8px 10px 8px 14px;
  }

  .logo {
    font-size: 1rem;
    gap: 7px;
  }

  .logo-badge {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }

  .nav-links,
  .phone-link {
    display: none;
  }

  .nav-actions {
    gap: 0;
  }

  .nav-actions .btn {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid,
  .gallery-grid,
  .roi-result-grid,
  .process-timeline,
  .visual-card-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    width: 100%;
  }

  .roi-card,
  .configurator-card {
    padding: 24px 16px;
  }

  .roi-slider-header {
    flex-wrap: wrap;
    gap: 4px 12px;
  }

  .autobidder-steps-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .ab-step-tab {
    min-height: 40px;
    padding: 8px 12px;
  }

  .cursor-glow {
    width: min(500px, 100vw);
    height: min(500px, 100vw);
  }

  .gallery-filter-tabs .filter-tab,
  .footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
  }
}

/* Autobidder Headless API Component Styles */
.autobidder-steps-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.ab-step-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.ab-step-tab.active {
  color: var(--gold-primary);
  background: rgba(230, 194, 128, 0.1);
  border: 1px solid var(--border-accent);
}

.ab-step-content {
  display: none;
}

.ab-step-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.ab-field-group label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.slot-btn {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
}

.slot-btn:hover, .slot-btn.active {
  border-color: var(--cyan-primary);
  background: rgba(0, 242, 254, 0.15);
  color: var(--cyan-primary);
  box-shadow: 0 0 15px var(--cyan-glow);
}

.package-card-option {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.package-card-option:hover, .package-card-option.active {
  border-color: var(--gold-primary);
  background: rgba(230, 194, 128, 0.08);
}

/* Autobidder Visual Option Card Grid */
.visual-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.visual-option-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.visual-option-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px var(--gold-glow);
}

.visual-option-card.active {
  border-color: var(--gold-primary);
  background: rgba(230, 194, 128, 0.08);
  box-shadow: 0 0 25px rgba(230, 194, 128, 0.25);
}

.visual-option-card .card-thumb {
  position: relative;
  height: 130px;
  width: 100%;
  overflow: hidden;
}

.visual-option-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.visual-option-card:hover .card-thumb img {
  transform: scale(1.06);
}

.visual-option-card .card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(7, 8, 10, 0.8);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-primary);
  border: 1px solid var(--border-accent);
}

.visual-option-card .card-body {
  padding: 14px;
}

.visual-option-card .card-body h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.visual-option-card .card-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}


