@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;800;900&display=swap');
:root {
  /* Core Colors - Luxury Industrial */
  --bg-dark: #070912;
  --bg-slate: #0F172A;
  --accent-gold: #D4AF37;
  --accent-gold-soft: rgba(212, 175, 55, 0.15);
  --accent-gold-hover: #C5A028;
  --accent-green: #10B981;
  --accent-red: #EF4444;
  --text-primary: #F8FAFC;
  --text-secondary: white;
  --text-muted: rgba(248, 250, 252, 0.4);
  
  /* Glassmorphism V3 */
  --glass-bg: rgba(15, 23, 42, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  /* Typography - Intentional Aesthetic */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  /* Rhythm */
  --section-padding: 120px 0;
  --container-max-width: 1300px;
}
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}
body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
ul {
  list-style: none;
}
.container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}
/* Background Effects */
.bg-mesh {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(30, 41, 59, 0.2) 0%, transparent 40%);
}
/* Glassmorphism Utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(45deg);
  transition: 0.8s;
  pointer-events: none;
}
.btn-primary:hover::after {
  left: 100%;
}
.btn-primary:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}
.btn-glass {
  background: var(--glass-bg);
  color: #fff;
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}
/* Text Highlights */
.text-gold { color: var(--accent-gold); }
.text-gradient {
  background: linear-gradient(135deg, #FFF 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Layout Sections */
.e-section {
  padding: var(--section-padding);
  position: relative;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
/* Header */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
header.scrolled {
  background: rgba(10, 15, 30, 0.8);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--accent-gold); }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.nav-links a:hover {
  color: var(--accent-gold);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* Burger Menu Toggle */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}
.burger span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}
.burger.active span:nth-child(1) { transform: rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
.burger.active span:nth-child(3) { transform: rotate(-45deg); }
.nav-open { overflow: hidden; }
/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  background: linear-gradient(to bottom, rgba(10, 15, 30, 0.85), rgba(10, 15, 30, 0.98)), url('../images/hero_background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  animation: heroPulse 10s infinite alternate ease-in-out;
}
@keyframes heroPulse {
  from { background-size: 105% cover; }
  to { background-size: 110% cover; }
}
.hero-content { max-width: 800px; }
.hero-tagline {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 24px;
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin: 0 auto 40px;
}
/* Search Tool */
.search-tool {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  gap: 10px;
}
.search-tool input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0 20px;
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.search-tool input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  text-transform: none;
  font-weight: 400;
}
.search-tool input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}
/* Brand Slider */
.brand-slider {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}
.brand-wrapper {
  display: flex;
  gap: 80px;
  animation: slide 30s linear infinite;
  width: max-content;
}
.brand-wrapper span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.feature-card {
  padding: 40px;
  text-align: left;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}
.feature-icon {
  width: 50px; height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 24px;
}
.feature-card h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}
.pricing-card {
  padding: 50px 40px;
  text-align: center;
  position: relative;
}
.pricing-card.popular {
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.popular-badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--bg-dark);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 30px 0;
  font-family: var(--font-heading);
}
.price span { font-size: 1rem; color: var(--text-secondary); font-weight: 500; }
.pricing-features {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-features li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}
/* Pricing Table - Comparison Matrix Add-on */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 60px;
}
.compare-table {
  width: 100%;
  min-width: 600px; /* Ensures readablity on small screens via scroll */
  border-collapse: collapse;
  border-radius: 20px;
}
.compare-table th, .compare-table td {
  padding: 24px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}
.compare-table th {
  background: rgba(212, 175, 55, 0.05);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--accent-gold);
}
.compare-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.check-green { color: var(--accent-green); font-weight: 900; }
.cross-red { color: var(--accent-red); font-weight: 900; }
/* Staggered Reveals */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
/* Trust Bar / Logos */
.trust-bar {
  padding: 30px 0;
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
}
.trust-bar p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
/* Loss Aversion Section Styles */
.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.risk-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--glass-border);
}
/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
.review-card {
  padding: 40px;
  position: relative;
}
.review-stars {
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.review-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 25px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}
.reviewer-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--accent-gold);
}
/* FAQ Section (Accordion) */
.faq-container {
  max-width: 800px;
  margin: 60px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--glass-border);
  padding: 24px 0;
  cursor: pointer;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.faq-item:hover .faq-question {
  color: var(--accent-gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding-top: 0;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 20px;
}
.faq-icon {
  width: 20px; height: 20px;
  position: relative;
  transition: transform 0.4s ease;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%; left: 0;
  width: 100%; height: 2px;
  transform: translateY(-50%);
}
.faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
/* Step Logic Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}
.step-card {
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
}
.step-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent-gold);
  opacity: 0.1;
  position: absolute;
  top: -10px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}
.step-card h3 {
  position: relative;
  z-index: 1;
}
.step-card p {
  position: relative;
  z-index: 1;
}
/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .logo { font-size: 1.3rem; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.85rem; }
}
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 300px;
    background: var(--bg-slate);
    backdrop-filter: blur(25px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links a {
    font-size: 1.2rem;
    color: #fff;
  }
  .btn-sm-hide { display: none; }
  .risk-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .risk-image { order: -1; max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.8rem; }
  .hero p { font-size: 1rem; }
  .features-grid,
  .pricing-grid,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  /* Reset all potential overflow culprits */
  .container { width: 92%; }
  .search-tool {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
  }
  .search-tool input {
    height: 60px;
    border-radius: 14px;
    width: 100%;
    margin-bottom: 10px;
  }
  .search-tool .btn {
    width: 100%;
  }
  footer .container:first-of-type {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  footer .container:first-of-type div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .section-title h2 { font-size: 1.8rem; }
  .hero p { font-size: 0.9rem; }
  
  .pricing-card {
    padding: 30px 15px;
  }
  .feature-card {
    padding: 25px 15px;
  }
  .logo { font-size: 1.1rem; }
  
  .pricing-features li { font-size: 0.85rem; }
}
/* Stats Section */
.stats-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  text-align: center;
  padding: 60px 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}
/* Feature Check List */
.features-check-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
}
.feature-check-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.feature-check-icon {
  width: 60px;
  height: 60px;
  color: var(--accent-gold);
}
.feature-check-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #fff;
}
.feature-check-content p {
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto;
}
/* Vehicle Grid */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 40px;
}
.vehicle-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.vehicle-card:hover {
  background: var(--accent-gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}
.vehicle-card:hover .vehicle-name,
.vehicle-card:hover .vehicle-icon {
  color: var(--bg-dark);
}
.vehicle-icon {
  width: 100px;
  height: auto;
  color: #000;
  transition: color 0.4s ease;
}
.vehicle-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #000;
  text-transform: capitalize;
  transition: color 0.4s ease;
}
/* Image Section */
.inspection-image-container {
  margin-top: 60px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--glass-border);
}
.inspection-image-container img {
  width: 100%;
  display: block;
  object-fit: cover;
}
/* Brand Ticker */
.brand-ticker-section {
  padding: 40px 0;
  background: rgba(7, 9, 18, 0.8);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: scroll 30s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: all 0.4s ease;
  padding: 10px;
}
.ticker-item:hover {
  opacity: 1;
  transform: scale(1.1);
}
.ticker-item img {
  height: 50px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Desktop Responsiveness */
@media (min-width: 1024px) {
  .stats-container {
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
  }
  
  .features-check-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .vehicle-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
