:root {
  /* Core Colors */
  --primary-color: #0f172a; /* Midnight Blue */
  --accent-color: #b91c1c; /* Automotive Red */
  --accent-hover: #b91c1c;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --text-main: #1e293b;
  --text-muted: #475569; /* Darker gray for better contrast */
  --border-color: #e2e8f0;

  /* Typography */
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* UI Elements */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  
  /* Transitions */
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  scroll-margin-top: 100px;
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.section-bg {
  background-color: var(--bg-light);
}

.text-center { text-align: center; }
.text-accent { color: var(--accent-color); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-5 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
  font-size: 17px;
}

.btn-primary {
  background-color: #b91c1c;
  color: white;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

/* Custom Hero Call Button */
.hero-call-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 50px;
  background: white;
  border: 3px solid var(--accent-color);
  padding: 0;
  height: 60px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
  margin-left: 20px;
}

.hero-call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  color: var(--text-main);
}

.hero-call-icon {
  background: var(--accent-color);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
}

.hero-call-text {
  font-size: 1.5rem;
  font-weight: 800;
  padding: 0 1.5rem 0 55px;
  color: var(--text-main);
}

/* Header & Navigation */
.header {
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-white);
  position: sticky;
  top: 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* Top Bar - Very slim and subtle */
.header-top {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  padding: 0.35rem 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-left {
  display: flex;
  gap: 1.25rem;
}

.header-top-left span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-top-left i {
  font-size: 0.7rem;
  opacity: 0.9;
}

/* Main Bar */
.header-main {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.header-main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.logo-highlight {
  color: var(--accent-color);
}

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

.nav-link {
  font-weight: 600;
  color: var(--primary-color) !important;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transition: var(--transition);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: flex;
  flex-direction: column;
  text-align: right;
}

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

.header-phone-value {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  padding: 20px 0 60px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.hero-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-white);
  border: 3px solid var(--accent-color);
  border-radius: var(--radius-full);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 800;
  transition: var(--transition);
  position: relative;
  overflow: visible;
  padding: 0 1.5rem 0 60px;
  height: 64px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.15);
  margin: 10px 0;
  min-width: 250px;
}

.hero-call-icon {
  background: var(--accent-color);
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: absolute;
  left: -2px;
  top: -2px;
  border: 3px solid var(--bg-white);
}

.hero-call-text {
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(185, 28, 28, 0.2);
  border-color: var(--primary-color);
}

/* Header Mobile Responsiveness */
@media (max-width: 1024px) {
  .nav-links {
    display: none; /* Hide desktop nav */
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .header-main-container {
    gap: 1rem;
  }
  
  .header-cta {
    display: none; /* Hide phone in main bar on small screens, top bar or mobile buttons will have it */
  }
}

@media (max-width: 768px) {
  .header-top-right {
    display: none;
  }
  
  .header-top-left {
    gap: 0.75rem;
    font-size: 0.7rem;
  }
  
  .logo {
    font-size: 1.25rem;
  }
}

/* Mobile Nav Drawer (if active) */
.header.menu-open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-top: 1px solid var(--border-color);
  gap: 1rem;
  z-index: 999;
}

.header.menu-open .nav-link {
  font-size: 1.1rem;
  width: 100%;
  text-align: center;
}

/* Service Grid (Fahrzeugarten) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 38, 38, 0.2);
  box-shadow: 0 15px 30px -5px rgba(15, 23, 42, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(220, 38, 38, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-top: auto;
}

.service-link:hover {
  gap: 0.75rem;
}

/* Advantages Section */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.advantage-item {
  text-align: center;
  padding: 2rem;
}

.advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

/* Comparison Section */
.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.comparison-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.comparison-box.pro {
  border-top: 4px solid var(--accent-color);
}

.comparison-box.con {
  border-top: 4px solid var(--text-muted);
  opacity: 0.9;
}

.comparison-list {
  margin-top: 1.5rem;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.comparison-list .icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.pro .icon { color: var(--accent-color); }
.con .icon { color: var(--text-muted); }

/* SEO Content Section */
.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-section h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-section p {
  margin-bottom: 1.25rem;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
  max-height: 500px;
}

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

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

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.step-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

/* Contact Form Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: var(--primary-color);
  color: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
}

.contact-info-card h3 {
  color: white;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.contact-form {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* --- 2026 Premium Design Additions --- */

:root {
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
  background: rgba(255, 255, 255, 0.85);
}

/* Kinetic Typography & Reveal Effects */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-card.show {
  opacity: 1;
  transform: scale(1);
}

/* Floating WhatsApp Agent 2026 */
.whatsapp-agent {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 8px 20px 8px 8px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-agent:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.25);
}

.wa-icon-container {
  width: 44px;
  height: 44px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
}

.wa-icon-container::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

.wa-text {
  display: flex;
  flex-direction: column;
}

.wa-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #25d366;
  letter-spacing: 0.05em;
}

.wa-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-color);
}

/* High-end Micro-interactions */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease-out, height 0.6s ease-out;
}

.btn:active::after {
  width: 300px;
  height: 300px;
  opacity: 0;
}

/* Service Grid Revamp */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover img {
  transform: scale(1.1);
}

/* Adaptive Form Styling */
.form-control {
  border: 2px solid transparent;
  background: #f1f5f9;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: white;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.1);
}

/* Online Badge */
.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-size: 0.8rem;
  font-weight: 700;
  color: #10b981;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  position: relative;
}

.online-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* --- End 2026 Design additions --- */

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

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

.footer-col h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer .logo {
  white-space: normal;
  line-height: 1.2;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: white;
  padding-left: 0.25rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

/* Social Proof Stats Bar */
.social-proof-bar {
  background: var(--bg-white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(220, 38, 38, 0.15); /* Slightly darker for contrast */
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
  transform: translateY(-5px);
  background: var(--primary-color);
  color: white;
}

.stat-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.stat-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
  }
  .stat-item {
    width: 100%;
  }
}

/* Comparison Table Section */
.comparison-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.comparison-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

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

.comparison-card {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.comparison-card.highlight {
  background: var(--primary-color);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card.highlight .text-accent {
  color: var(--primary-color);
}

.comparison-card.highlight h4 {
  color: white;
}

.comparison-card h4 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

.comparison-list {
  list-style: none;
  padding: 0;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-card.highlight .comparison-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-item:last-child {
  border-bottom: none;
}

.comparison-item i {
  font-size: 1.2rem;
  width: 24px;
}

.item-off i { color: #94a3b8; }
.item-on i { color: #22c55e; }
.comparison-card.highlight .item-on i { color: #4ade80; }

.comparison-item span {
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .comparison-card.highlight {
    transform: scale(1);
  }
}

/* Mobile Action Buttons */
.mobile-action-buttons {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.mobile-btn-phone,
.mobile-btn-whatsapp,
.mobile-btn-contact {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-btn-phone:active,
.mobile-btn-whatsapp:active,
.mobile-btn-contact:active {
  transform: scale(0.95);
}

.mobile-btn-phone {
  background-color: #007bff;
}

.mobile-btn-phone i {
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.mobile-btn-whatsapp {
  background-color: #25D366;
}

.mobile-btn-contact {
  background-color: var(--accent-color);
}

/* Trust Badge Section */
.trust-section {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--bg-white);
}

.trust-section h2 {
  font-size: 32px;
  margin-bottom: 0.5rem;
}

.trust-section p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 17px;
}

.trust-badge-card {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-white);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  margin: 0 auto;
}

.trust-star {
  color: #fbbf24;
  font-size: 2.5rem;
  filter: drop-shadow(0 4px 6px rgba(251, 191, 36, 0.3));
}

.trust-text {
  text-align: left;
}

.trust-text strong {
  display: block;
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.trust-text span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #10b981;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .header-top { 
    display: flex !important; 
    padding: 6px 0;
  }
  .header-top-left { display: none !important; }
  .header-top-right { 
    width: 100%; 
    display: flex; 
    justify-content: flex-end; 
    padding-right: 15px;
  }
  .online-badge {
    transform: scale(0.9);
    transform-origin: right;
  }
  .header-contact-boxes { display: none; }
  .comparison-container { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--accent-color);
    flex-direction: column;
    padding: 2rem;
    transition: 0.3s ease-in-out;
    align-items: flex-start;
    z-index: 1001;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    padding: 20px 0 40px !important;
    text-align: center;
  }
  
  .mobile-action-buttons {
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  .mobile-action-buttons.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .logo {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.25rem;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
}

/* SEO Sections */
.districts-section {
  padding: 4rem 0;
  background-color: var(--bg-light);
  border-top: 1px solid #e2e8f0;
}

.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.district-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--primary-color);
  font-size: 0.95rem;
  transition: var(--transition);
}

.district-item i {
  color: var(--accent-color);
  font-size: 1rem;
}

.brands-section {
  padding: 4rem 0;
  background-color: var(--bg-white);
  text-align: center;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  opacity: 0.8;
}

.brand-tag {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
}

/* Contextual Links SEO */
.context-link { color: var(--accent-color); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.context-link:hover { color: #106630; text-decoration: none; }
