:root {
  /* Colors - Industrial & Rugged Palette */
  --color-brand: #C41E3A; /* Bold Crimson */
  --color-bg: #0F1113; /* Deep Charcoal/Off-Black */
  --color-surface: #1A1D21; /* Slightly lighter charcoal */
  --color-text: #F5F5F7; /* Off-white */
  --color-text-muted: #8E8E93;
  --color-accent: #E5E5E5; /* Silver/Steel accent */
  --color-border: rgba(255, 255, 255, 0.1);
  
  /* Typography */
  --font-display: 'Inter', system-ui, sans-serif; /* Using bold weights for an industrial feel */
  --font-body: 'Inter', system-ui, sans-serif;
  
  /* Spacing */
  --space-unit: 8px;
  --container-padding: 5vw;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utility */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

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

header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background: rgba(15, 17, 19, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-brand);
  text-decoration: none;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--color-brand);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

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

.hero-tagline {
  color: var(--color-brand);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 110%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-brand);
  color: white;
}

.btn-primary:hover {
  background: #a0182f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(196, 30, 58, 0.3);
}

.btn-outline {
  border: 2px solid var(--color-border);
  color: var(--color-text);
  margin-left: 1rem;
}

.btn-outline:hover {
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-bg);
}

/* Features Section */
.features {
  padding: 8rem 0;
  background: var(--color-surface);
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 3rem;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--color-brand);
  background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--color-brand);
  margin-bottom: 2rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

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

/* CTA Section */
.cta-section {
  padding: 10rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 17, 19, 0.9), rgba(15, 17, 19, 0.9)), 
              url('./.documents/2018-mahindra-scorpio-facelift-images-front-angle-a62efa7c.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: grayscale(1);
}

.cta-title {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.cta-desc {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: var(--color-text-muted);
}

.cta-btn {
  padding: 1.5rem 4rem;
  font-size: 1.1rem;
}

.footer-credits {
  margin-top: 3rem;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.text-brand { color: var(--color-brand); }
.text-muted { color: var(--color-text-muted); }

/* Stats */
.stats-bar {
  display: flex;
  justify-content: space-between;
  padding: 4rem 0;
  border-top: 1px solid var(--color-border);
  margin-top: 4rem;
}

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

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-brand);
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

/* Footer */
footer {
  padding: 4rem 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 2rem;
  display: block;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}

.social-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Icons */
.icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    width: 80%;
  }
}
