/* ============================================
   CABALOT MARKETING WEBSITE STYLES
   Modern, Professional, Sleek Design
   ============================================ */

/* CSS Variables */
:root {
  --primary: #111827;
  --primary-light: #1f2937;
  --primary-dark: #0a0f1a;
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --background: #f9fafb;
  --surface: #ffffff;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  --gradient-primary: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  --gradient-accent: linear-gradient(135deg, #0d9488 0%, #10b981 100%);
  --gradient-hero: linear-gradient(
    135deg,
    #111827 0%,
    #1e293b 50%,
    #334155 100%
  );

  --shadow-sm: 0 1px 2px 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-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
}

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

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

ul,
ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.logo-img {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

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

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

.nav-cta .btn {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.nav-cta .btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 72px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(59, 130, 246, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 40%
    );
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 64px 0 128px 0;
}

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--success);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: white;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Image / Phone Mockup */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 580px;
  background: #111827;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), var(--shadow-2xl),
    0 0 100px rgba(59, 130, 246, 0.2);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #111827;
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--background);
  border-radius: 36px;
  overflow: hidden;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.app-preview {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 48px 20px 20px;
  background: white;
}

.app-logo {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 8px;
}

.app-header span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.app-map {
  flex: 1;
  background: linear-gradient(180deg, #e8f4f8 0%, #d4e8ed 100%);
  position: relative;
}

.app-map::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
}

.app-card {
  background: white;
  padding: 20px;
  border-radius: 24px 24px 0 0;
  margin-top: -20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.driver-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.driver-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-accent);
  border-radius: 50%;
}

.driver-details {
  display: flex;
  flex-direction: column;
}

.driver-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.driver-vehicle {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-primary);
  animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
  font-size: 1.25rem;
}

.card-1 {
  top: 10%;
  right: -40px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 30%;
  left: -60px;
  animation-delay: 2s;
}

.card-3 {
  bottom: 10%;
  right: -20px;
  animation-delay: 4s;
}

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

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 1;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Trust Section */
.trust-section {
  padding: 24px 0 48px 0;
  background: var(--background);
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--border);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-badge svg {
  width: 24px;
  height: 24px;
  color: var(--success);
}

/* Section Styles */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Features Section */
.features-section {
  padding: 120px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 32px;
  background: var(--background);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.feature-card.featured {
  grid-row: span 2;
  background: var(--gradient-primary);
  color: white;
  border: none;
}

.feature-card.featured h3 {
  color: white;
}

.feature-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.feature-icon.cabalot-icon svg {
  width: 36px;
  height: 36px;
}

.feature-icon-large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.feature-icon-large svg {
  width: 36px;
  height: 36px;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-list {
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.feature-list li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--success);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

/* How It Works */
.how-it-works-section {
  padding: 120px 0;
  background: var(--background);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr 300px;
  gap: 48px;
  align-items: center;
}

.step-reverse {
  direction: rtl;
}

.step-reverse > * {
  direction: ltr;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-image {
  display: flex;
  justify-content: center;
}

.step-phone {
  width: 200px;
  height: 400px;
  background: var(--primary);
  border-radius: 32px;
  padding: 8px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.step-screenshot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 26px;
  background: #fff;
}

.step-screen {
  width: 100%;
  height: 100%;
  background: var(--background);
  border-radius: 26px;
}

.book-screen {
  background: linear-gradient(180deg, #fff 0%, #f0f9ff 100%);
}

.track-screen {
  background: linear-gradient(180deg, #d4e8ed 0%, #fff 100%);
}

.ride-screen {
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
}

/* Comparison Section */
.comparison-section {
  padding: 120px 0;
  background: white;
}

.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--primary);
  color: white;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

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

.comparison-row:nth-child(even) {
  background: var(--background);
}

.comparison-cell {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-cell:first-child {
  justify-content: flex-start;
}

.feature-name {
  font-weight: 500;
}

.cabalot-col {
  background: rgba(59, 130, 246, 0.05);
}

.comparison-header .cabalot-col {
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 8px;
  font-weight: 600;
}

.comparison-logo {
  width: 24px;
  height: 24px;
}

.other-col {
  color: var(--text-primary);
  font-weight: 500;
}

.comparison-header .other-col {
  color: rgba(255, 255, 255, 0.9);
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  font-weight: bold;
}

.cross {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--error);
  color: white;
  border-radius: 50%;
  font-weight: bold;
}

.partial {
  padding: 4px 12px;
  background: rgba(245, 158, 11, 0.2);
  color: #b45309;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Testimonials */
.testimonials-section {
  padding: 120px 0;
  background: var(--background);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  padding: 32px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
}

.author-location {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Drivers Section */
.drivers-section {
  padding: 120px 0;
  background: var(--gradient-primary);
  color: white;
}

.drivers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.drivers-section .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.drivers-section .section-title {
  color: white;
}

.drivers-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.7;
}

.drivers-benefits {
  margin-bottom: 40px;
}

.drivers-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drivers-benefits li:last-child {
  border-bottom: none;
}

.benefit-icon {
  font-size: 1.25rem;
  line-height: 1.5;
  min-width: 24px;
  text-align: center;
}

.drivers-benefits strong {
  display: block;
  margin-bottom: 4px;
}

.drivers-benefits span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

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

.drivers-section .btn-primary:hover {
  background: var(--background);
}

.drivers-image {
  display: flex;
  justify-content: center;
}

.driver-card-preview {
  perspective: 1000px;
}

.earnings-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  min-width: 300px;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: var(--transition);
}

.earnings-card:hover {
  transform: rotateY(0) rotateX(0);
}

.earnings-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.earnings-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.earnings-bar {
  height: 8px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 12px;
}

.earnings-fill {
  width: 75%;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
}

.earnings-jobs {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Download Section */
.download-section {
  padding: 120px 0;
  background: white;
  text-align: center;
}

.download-title {
  margin-bottom: 16px;
}

.download-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.store-button:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.store-icon {
  width: 32px;
  height: 32px;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

.store-name {
  font-size: 1.25rem;
  font-weight: 600;
}

.download-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.qr-code {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  border: 2px solid var(--primary);
}

.download-qr span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background: var(--primary);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
    padding-top: 24px;
  }

  .hero-image {
    order: 2;
  }

  .hero-subtitle {
    margin: 0 auto 40px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .floating-card {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card.featured {
    grid-column: span 2;
    grid-row: auto;
  }

  .step {
    grid-template-columns: auto 1fr;
  }

  .step-image {
    display: none;
  }

  .drivers-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .drivers-image {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 24px;
    gap: 16px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Fix spacing between badge and title */
  .hero-badge {
    margin-bottom: 16px;
  }

  .hero-title {
    margin-bottom: 16px;
  }

  /* Fix hero image overlapping wave */
  .hero-image {
    margin-bottom: 60px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 300px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .trust-badges {
    gap: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.featured {
    grid-column: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Fix comparison table on mobile - horizontal scroll */
  .comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-header,
  .comparison-row {
    min-width: 500px;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

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

  .phone-mockup {
    width: 240px;
    height: 500px;
  }

  .step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }
}
