/**
 * Axon Assets - Main Stylesheet
 * ============================================
 * Luxury bus leasing landing page for operators
 * 
 * TABLE OF CONTENTS:
 * ------------------
 * 1. CSS Variables & Design Tokens
 * 2. CSS Reset & Base Styles
 * 3. Typography
 * 4. Navigation
 * 5. Hero Section
 * 6. Industry Problem Section
 * 7. Solution / Value Proposition
 * 8. How It Works Section
 * 9. KM Packages Section
 * 10. Financial Calculator
 * 11. Volvo Showcase
 * 12. Sale and Leaseback
 * 13. Why Choose Us
 * 14. FAQ Section
 * 15. Contact / Lead Form
 * 16. Footer
 * 17. Animations & Keyframes
 * 18. Responsive - Tablet
 * 19. Responsive - Mobile
 * 20. Utility Classes
 */


/* ===========================================
   1. CSS VARIABLES & DESIGN TOKENS
   =========================================== */

:root {
  /* Color Palette - Professional Transport Theme */
  --bg-dark: #0a0a0a;
  --bg-section: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  
  /* Text Colors */
  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  
  /* Accent Colors */
  --accent: #c9a55c;
  --accent-hover: #ddb86a;
  --accent-dim: rgba(201, 165, 92, 0.15);
  
  /* Secondary Accents */
  --teal: #2dd4bf;
  --teal-dim: rgba(45, 212, 191, 0.15);
  
  /* Status Colors */
  --success: #4ade80;
  --success-dim: rgba(74, 222, 128, 0.15);
  --error: #f87171;
  --error-dim: rgba(248, 113, 113, 0.15);
  --warning: #fbbf24;
  
  /* Borders */
  --border: #2a2a2a;
  --border-light: #3a3a3a;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 4px 20px rgba(201, 165, 92, 0.3);
  
  /* Spacing */
  --section-padding: 6rem 2rem;
  --section-padding-mobile: 4rem 1rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}


/* ===========================================
   2. CSS RESET & BASE STYLES
   =========================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

input, select, textarea {
  font-family: inherit;
}


/* ===========================================
   3. TYPOGRAPHY
   =========================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-headline {
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  z-index: 0;
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.03);
  margin: 0;
  padding-left: 5%;
  text-align: left;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}


/* ===========================================
   4. NAVIGATION
   =========================================== */

.nav {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  padding: 0.6rem 1.25rem;
  background: var(--accent);
  color: var(--bg-dark) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}


/* ===========================================
   5. HERO SECTION
   =========================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a1a2e 50%, #0a0a0a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1494515843206-f3117d3f51b7?w=1920&q=80') center/cover no-repeat;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 0%, var(--bg-dark) 70%);
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  animation: fadeUp 0.8s ease-out;
}

/* Movement Badge */
.movement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: var(--accent-dim);
  border: 1px solid rgba(201, 165, 92, 0.4);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.badge-icon {
  font-size: 1.25rem;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 .h1-accent {
  color: var(--accent);
}

.hero .subheadline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 0.25rem;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

/* Hero CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-primary {
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
}

.cta-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.cta-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero Cards */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.hero-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.hero-card.featured {
  background: var(--accent-dim);
  border-color: var(--accent);
}

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.hero-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  opacity: 0.6;
}


/* ===========================================
   6. INDUSTRY PROBLEM SECTION
   =========================================== */

.industry-problem {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d0d 100%);
  overflow: hidden;
}

.watermark-words {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2em;
  z-index: 0;
  pointer-events: none;
}

.watermark-word {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0);
  letter-spacing: 0.05em;
  line-height: 1.1;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease-out;
}

.watermark-word:nth-child(1) { transition-delay: 0s; }
.watermark-word:nth-child(2) { transition-delay: 0.15s; }
.watermark-word:nth-child(3) { transition-delay: 0.3s; }
.watermark-word:nth-child(4) { transition-delay: 0.45s; }

.watermark-words.animate .watermark-word {
  opacity: 1;
  transform: translateX(0);
  color: rgba(255, 255, 255, 0.03);
}

.solution-words.animate .watermark-word {
  color: rgba(201, 165, 92, 0.04);
}

.industry-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

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

.problem-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

/* Pain Points Grid */
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.pain-point {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
}

.pain-point:hover {
  border-color: var(--error);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.pain-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pain-point h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.pain-point p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pain-stat {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.pain-stat .stat-big {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--error);
  margin-bottom: 0.25rem;
}

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

/* Capital Comparison Visual */
.capital-comparison {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.capital-comparison h3 {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.comparison-visual {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.comparison-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.comparison-item .comparison-bar {
  width: 80px;
  height: calc(var(--bar-height) * 1.5);
  min-height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.5rem;
  transition: all 0.5s ease;
}

.comparison-item.locked .comparison-bar {
  background: linear-gradient(180deg, var(--error) 0%, #dc2626 100%);
  height: 150px;
}

.comparison-item.freed .comparison-bar {
  background: linear-gradient(180deg, var(--success) 0%, #22c55e 100%);
  margin-bottom: 0.5rem;
}

.comparison-item.freed {
  display: flex;
  flex-direction: column;
}

.bar-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--bg-dark);
  text-align: center;
  padding: 0 0.25rem;
}

.comparison-desc {
  text-align: center;
}

.comparison-desc strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.comparison-desc p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}


/* ===========================================
   7. SOLUTION / VALUE PROPOSITION
   =========================================== */

.solution {
  position: relative;
  padding: var(--section-padding);
  background: var(--bg-section);
  overflow: hidden;
}

.solution-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-header {
  text-align: center;
  margin-bottom: 3rem;
}

.solution-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

/* Model Explainer */
.model-explainer {
  margin-bottom: 3rem;
}

.model-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.model-card h3 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.model-card > p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.model-list {
  list-style: none;
}

.model-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.model-list li:last-child {
  border-bottom: none;
}

.model-list li strong {
  color: var(--accent);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefits-column {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.benefits-column.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--accent-dim) 100%);
}

.benefits-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.benefits-list li:last-child {
  margin-bottom: 0;
}

.benefits-list .check {
  color: var(--success);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.benefits-list li div {
  display: flex;
  flex-direction: column;
}

.benefits-list li strong {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.benefit-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Tax Callout */
.tax-callout {
  display: flex;
  gap: 1.5rem;
  background: var(--success-dim);
  border: 1px solid var(--success);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  align-items: flex-start;
}

.tax-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.tax-content h4 {
  font-size: 1.1rem;
  color: var(--success);
  margin-bottom: 0.5rem;
}

.tax-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.tax-content strong {
  color: var(--text-primary);
}

.tax-sources {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tax-sources span {
  margin-right: 0.5rem;
}

.tax-sources a {
  color: var(--success);
  text-decoration: underline;
  margin-right: 1rem;
}

.tax-sources a:hover {
  opacity: 0.8;
}


/* ===========================================
   8. HOW IT WORKS SECTION
   =========================================== */

.how-it-works {
  position: relative;
  padding: var(--section-padding);
  background: var(--bg-dark);
  overflow: hidden;
}

.how-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

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

.how-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin-top: 3rem;
  flex-shrink: 0;
}

.step-featured {
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
}

.step-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}


/* ===========================================
   9. KM PACKAGES SECTION
   =========================================== */

.packages {
  padding: var(--section-padding);
  background: var(--bg-section);
}

.packages-content {
  max-width: 1000px;
  margin: 0 auto;
}

.packages-header {
  text-align: center;
  margin-bottom: 3rem;
}

.packages-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.package-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.package-card.featured {
  border-color: var(--accent);
}

.package-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.package-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.package-card.featured .package-header {
  background: var(--accent-dim);
}

.package-header h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.package-km {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.km-daily {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.km-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.package-details {
  padding: 1.5rem;
}

.package-stat {
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.package-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.package-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: block;
  margin-top: 0.25rem;
}

.package-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.package-features {
  list-style: none;
}

.package-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
}

/* Route Distances */
.route-distances {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.route-distances h3 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.route-item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  text-align: center;
}

.route-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.route-distance {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.route-round {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}


/* ===========================================
   10. FINANCIAL CALCULATOR
   =========================================== */

.calculator {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1520 100%);
}

.calculator-content {
  max-width: 1200px;
  margin: 0 auto;
}

.calculator-header {
  text-align: center;
  margin-bottom: 3rem;
}

.calculator-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

/* Calculator Inputs */
.calc-inputs {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.calc-inputs h3 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.source-link {
  font-size: 0.75rem;
  color: var(--accent);
  text-decoration: none;
}

.source-link:hover {
  text-decoration: underline;
}

/* Bus Type Selector */
.bus-type-selector {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bus-type-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: left;
  transition: all 0.3s ease;
}

.bus-type-btn:hover {
  border-color: var(--border-light);
  background: rgba(255, 255, 255, 0.05);
}

.bus-type-btn.active {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.bus-type-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.bus-type-price {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.bus-type-btn.active .bus-type-price {
  color: var(--accent);
}

/* Custom Price */
.custom-price-group .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
}

.custom-price-group .checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.custom-price-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.custom-price-input input {
  flex: 1;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
}

.custom-price-input input:focus {
  outline: none;
  border-color: var(--accent);
}

.input-suffix {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Sliders */
.slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: none;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* KM Toggle */
.km-toggle {
  display: flex;
  gap: 0.5rem;
}

.km-btn {
  flex: 1;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.km-btn:hover {
  border-color: var(--border-light);
}

.km-btn.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

/* Purchase Option */
.purchase-option .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--teal-dim);
  border: 1px solid var(--teal);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.purchase-option .checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.purchase-option .checkbox-label span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.option-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  padding-left: 2rem;
}

/* Calculator Results */
.calc-results {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.calc-results h3 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

/* Results Summary Cards */
.results-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.result-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  position: relative;
}

.result-card.ownership {
  background: var(--error-dim);
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.result-card.leasing {
  background: var(--success-dim);
  border: 1px solid var(--success);
}

.result-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--success);
  color: var(--bg-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.result-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.result-main {
  margin-bottom: 1rem;
}

.result-main .result-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.result-main .result-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.result-card.ownership .result-value {
  color: var(--error);
}

.result-card.leasing .result-value {
  color: var(--success);
}

.result-details {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 0.35rem 0;
  color: var(--text-secondary);
}

.detail-row span:last-child {
  font-weight: 500;
  color: var(--text-primary);
}

/* Savings Highlight */
.savings-highlight {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.savings-item {
  flex: 1;
  padding: 1rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  text-align: center;
}

.savings-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.savings-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

/* Comparison Chart */
.comparison-chart {
  margin-bottom: 1.5rem;
}

.comparison-chart h4 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chart-bar-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chart-bar-group label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.bar-container {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.bar {
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  width: var(--bar-width, 50%);
  min-width: 60px;
  transition: width 0.5s ease;
}

.bar.ownership-bar {
  background: linear-gradient(90deg, #dc2626 0%, var(--error) 100%);
}

.bar.lease-bar {
  background: linear-gradient(90deg, #22c55e 0%, var(--success) 100%);
}

.bar-value {
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.chart-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.legend-item.ownership .legend-color {
  background: var(--error);
}

.legend-item.lease .legend-color {
  background: var(--success);
}

/* Rate Reference */
.rate-reference {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.rate-reference h4 {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.rates-table {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.rate-row:last-child {
  border-bottom: none;
}

.bank-name {
  color: var(--text-secondary);
}

.rate-value {
  color: var(--text-primary);
  font-weight: 500;
}

.rates-source {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--accent);
}

.rates-source:hover {
  text-decoration: underline;
}

/* Calculator CTA */
.calc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.calc-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* Step-Down Pricing Display */
.stepdown-pricing {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.stepdown-title {
  margin-bottom: 1rem;
}

.stepdown-title h4 {
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.stepdown-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.stepdown-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stepdown-header {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.stepdown-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.stepdown-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stepdown-row.first-year {
  background: var(--accent-dim);
  border: 1px solid rgba(201, 165, 92, 0.3);
}

.stepdown-row.last-year {
  background: var(--success-dim);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.stepdown-year {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.stepdown-rate {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.stepdown-row.first-year .stepdown-rate {
  color: var(--accent);
}

.stepdown-row.last-year .stepdown-rate {
  color: var(--success);
}

.stepdown-row.last-year .stepdown-year::after {
  content: " (Deep Discount)";
  font-size: 0.7rem;
  color: var(--success);
}

/* Detail row highlight */
.detail-row.highlight {
  background: var(--accent-dim);
  margin: 0.35rem -0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}

.detail-row.highlight span:last-child {
  color: var(--accent);
  font-weight: 600;
}


/* ===========================================
   11. VOLVO SHOWCASE
   =========================================== */

.volvo-showcase {
  position: relative;
  padding: 8rem 2rem;
  background: url('https://images.unsplash.com/photo-1570125909232-eb263c188f7e?w=1600&q=80') center/cover no-repeat;
  text-align: center;
}

.volvo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.volvo-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.volvo-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.volvo-content h2 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.volvo-tagline {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.volvo-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.volvo-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
}

.feature-icon {
  font-size: 1.25rem;
}

.volvo-cta-box {
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.volvo-cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.volvo-cta-box p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.volvo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.volvo-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.volvo-price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.volvo-price-note span {
  margin-right: 0.5rem;
}

.volvo-price-note a {
  color: var(--accent);
  text-decoration: underline;
}


/* ===========================================
   12. SALE AND LEASEBACK
   =========================================== */

.leaseback {
  padding: var(--section-padding);
  background: var(--bg-section);
}

.leaseback-content {
  max-width: 1000px;
  margin: 0 auto;
}

.leaseback-header {
  text-align: center;
  margin-bottom: 3rem;
}

.leaseback-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.leaseback-explainer {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

/* Leaseback Flow */
.leaseback-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.flow-step {
  text-align: center;
  padding: 1.5rem 1rem;
  min-width: 120px;
}

.flow-step.featured {
  background: var(--success-dim);
  border: 1px solid var(--success);
  border-radius: var(--radius-md);
}

.flow-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.flow-step h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.flow-step p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
}

/* Leaseback Benefits */
.leaseback-benefits h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.leaseback-benefits ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.leaseback-benefits li {
  display: flex;
  gap: 0.75rem;
}

.leaseback-benefits .check {
  color: var(--success);
  font-weight: bold;
  flex-shrink: 0;
}

.leaseback-benefits li div {
  display: flex;
  flex-direction: column;
}

.leaseback-benefits li strong {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.leaseback-benefits li span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.leaseback-cta {
  text-align: center;
}

.leaseback-cta p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}


/* ===========================================
   13. WHY CHOOSE US
   =========================================== */

.why-us {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.why-content {
  max-width: 1200px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}


/* ===========================================
   14. FAQ SECTION
   =========================================== */

.faq {
  padding: var(--section-padding);
  background: var(--bg-section);
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--accent);
  text-decoration: underline;
}


/* ===========================================
   15. CONTACT / LEAD FORM
   =========================================== */

.contact {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1520 100%);
}

.contact-content {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

/* Lead Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row.two-col > .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.form-group select {
  cursor: pointer;
}

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

/* WhatsApp Input */
.whatsapp-input {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.whatsapp-input input {
  flex: 1;
}

.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
}

.checkbox-inline input {
  width: 14px;
  height: 14px;
  accent-color: var(--accent);
}

/* Checkbox Group */
.checkbox-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

/* Submit Button */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* Form Success */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--bg-dark);
  margin-bottom: 1.5rem;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.submit-another {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.submit-another:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.info-card > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: var(--accent-dim);
}

.method-icon {
  font-size: 1.5rem;
}

.method-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.method-value {
  font-size: 0.95rem;
  font-weight: 500;
}

.office-location {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
}


/* ===========================================
   16. FOOTER
   =========================================== */

.footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-col h4 {
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col address {
  font-style: normal;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 280px;
}

.footer-status {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.made-in {
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* ===========================================
   17. ANIMATIONS & KEYFRAMES
   =========================================== */

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}


/* ===========================================
   18. RESPONSIVE - TABLET (max-width: 1024px)
   =========================================== */

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 6rem;
  }
  
  .hero-text {
    order: 1;
  }
  
  .hero h1 {
    text-align: center;
  }
  
  .hero .subheadline {
    margin: 0 auto 2rem;
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-cards {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .calculator-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}


/* ===========================================
   19. RESPONSIVE - MOBILE (max-width: 768px)
   =========================================== */

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 1rem;
  }
  
  .nav {
    padding: 1rem;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .hero-content {
    padding: 1rem;
    padding-bottom: 5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .stat-item {
    width: 100%;
    max-width: 280px;
    text-align: left;
  }
  
  .hero-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .cta-primary, .cta-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .section-headline {
    font-size: clamp(3rem, 12vw, 6rem);
  }
  
  .pain-points-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-visual {
    flex-direction: column;
    gap: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .tax-callout {
    flex-direction: column;
    text-align: center;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step-connector {
    width: 2px;
    height: 30px;
    margin: 0;
  }
  
  .step {
    max-width: 100%;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .routes-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .results-summary {
    grid-template-columns: 1fr;
  }
  
  .savings-highlight {
    flex-direction: column;
  }
  
  .volvo-features {
    flex-direction: column;
    align-items: center;
  }
  
  .leaseback-flow {
    flex-direction: column;
    gap: 0;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }
  
  .leaseback-benefits ul {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .form-row.two-col {
    flex-direction: column;
  }
  
  .whatsapp-input {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .checkbox-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-tagline {
    max-width: 100%;
    margin: 0 auto 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .movement-badge {
    flex-direction: column;
    text-align: center;
    padding: 0.75rem 1rem;
  }
  
  .bus-type-selector {
    gap: 0.5rem;
  }
  
  .result-main .result-value {
    font-size: 1.25rem;
  }
  
  .routes-grid {
    grid-template-columns: 1fr;
  }
  
  .volvo-content h2 {
    font-size: 2.5rem;
  }
}


/* ===========================================
   20. UTILITY CLASSES
   =========================================== */

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
