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

/* 
  ============================================
  GUIDE DE MODIFICATION DES COULEURS
  ============================================
  
  Pour changer les couleurs du site, modifiez uniquement les valeurs ci-dessous.
  Toutes les couleurs du site utilisent ces variables.
  
  COULEUR PRINCIPALE (primary):
  - Bleu actuel: #2563eb
  - Pour du vert: #10b981
  - Pour du rouge: #ef4444
  - Pour du violet: #8b5cf6
  
  Les couleurs -dark et -light doivent être des variantes de la couleur principale.
  Utilisez un outil comme https://coolors.co pour générer des variantes.
*/

:root {
  /* COULEURS PRINCIPALES - Modifiez ici pour changer tout le site */
  --primary: #2563eb; /* Couleur principale (boutons, liens, accents) */
  --primary-dark: #1e40af; /* Version foncée de la couleur principale */
  --primary-light: #60a5fa; /* Version claire de la couleur principale */

  /* COULEURS DE BASE - Ne pas modifier sauf besoin spécifique */
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --card-foreground: #0f172a;
  --accent: #f1f5f9;
  --accent-foreground: #0f172a;
  --destructive: #ef4444;
  --ring: #2563eb; /* Doit correspondre à --primary */
}

/* 
  ============================================
  EXEMPLES DE PALETTES DE COULEURS
  ============================================
  
  BLEU (actuel):
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #60a5fa;
  
  VERT:
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-light: #34d399;
  
  VIOLET:
  --primary: #8b5cf6;
  --primary-dark: #7c3aed;
  --primary-light: #a78bfa;
  
  ROUGE:
  --primary: #ef4444;
  --primary-dark: #dc2626;
  --primary-light: #f87171;
  
  ORANGE:
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --primary-light: #fbbf24;
*/

body {
  font-family: "Varela Round", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hidden {
  display: none !important;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  /* Updated shadow color to match blue theme */
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

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

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

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

.btn-white:hover {
  background-color: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.btn-white-primary:hover {
  background-color: #f9fafb;
}

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

.btn-white-cta:hover {
  background-color: #f9fafb;
  transform: translateY(-2px);
}

.btn-outline-cta {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-cta:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-app-store,
.btn-google-play {
  background-color: #1f2937;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-app-store:hover,
.btn-google-play:hover {
  background-color: #111827;
  transform: translateY(-2px);
}

.app-button-label {
  font-size: 0.75rem;
  opacity: 0.8;
  margin: 0;
}

.app-button-store {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  text-decoration: none;
}

.logo-text {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
}

.menu-icon,
.close-icon {
  width: 24px;
  height: 24px;
}

.nav-mobile {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-link-mobile {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 0;
  transition: color 0.3s ease;
}

.nav-link-mobile:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 800;
}

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

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.search-box {
  background-color: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-input-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--muted);
}

.input-icon {
  color: var(--muted-foreground);
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
}

.btn-search {
  width: 100%;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

@media (min-width: 1024px) {
  .hero {
    padding: 6rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .search-box {
    flex-direction: row;
  }

  .btn-search {
    width: auto;
    white-space: nowrap;
  }
}

/* Geometric Decorations */
.geometric-decoration {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  opacity: 0.1;
  pointer-events: none;
}

.geometric-decoration.small {
  width: 150px;
  height: 150px;
}

.geometric-decoration.medium {
  width: 250px;
  height: 250px;
}

.geometric-decoration.large {
  width: 400px;
  height: 400px;
}

.geometric-decoration.top-right {
  top: -100px;
  right: -100px;
}

.geometric-decoration.top-left {
  top: -100px;
  left: -100px;
}

.geometric-decoration.bottom-left {
  bottom: -100px;
  left: -100px;
}

.geometric-decoration.bottom-right {
  bottom: -100px;
  right: -100px;
}

.geometric-decoration.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.geometric-decoration.opacity-20 {
  opacity: 0.2;
}

/* Trusted By Section */
.trusted-by {
  padding: 3rem 0;
  background-color: var(--muted);
}

.trusted-by-title {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

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

.partner-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.partner-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--muted-foreground);
}

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

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

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

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--border);
}

/* Features Section */
.features {
  position: relative;
  padding: 5rem 0;
}

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

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

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  color: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background-color: var(--muted);
}

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

.step-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.2;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Stats Section */
.stats {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

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

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

.stat-value-large {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label-large {
  font-size: 1rem;
  opacity: 0.9;
}

/* Become Driver Section */
.become-driver {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  overflow: hidden;
}

.animated-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.2);
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.15);
  bottom: -150px;
  right: -150px;
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.become-driver-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
}

.become-driver-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.become-driver-title {
  font-size: 2.5rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.become-driver-description {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.6;
}

.become-driver-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.driver-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.driver-stat-value {
  font-size: 2rem;
  font-weight: 700;
}

.driver-stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

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

.benefit-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  color: var(--foreground);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-green {
  border-left: 4px solid #2563eb;
}

.benefit-blue {
  border-left: 4px solid #3b82f6;
}

.benefit-purple {
  border-left: 4px solid #8b5cf6;
}

.benefit-orange {
  border-left: 4px solid #f59e0b;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background-color: var(--muted);
  color: var(--primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .become-driver-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .become-driver-title {
    font-size: 3rem;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--muted);
}

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

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  color: var(--primary);
  opacity: 0.2;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.testimonial-text {
  color: var(--foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

/* Pricing Section */
.pricing {
  position: relative;
  padding: 5rem 0;
}

.pricing-grid {
  display: grid;
  gap: 3rem;
}

.pricing-comparison {
  background-color: white;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.comparison-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  color: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.comparison-subtitle {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.comparison-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.comparison-item {
  padding: 1.5rem;
  background-color: var(--muted);
  border-radius: 1rem;
}

.comparison-route {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

.savings-badge {
  background-color: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.875rem;
}

.comparison-prices {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}

.price-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.price-value {
  font-size: 1.25rem;
  font-weight: 700;
}

.price-value.old {
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.price-value.new {
  color: var(--primary);
}

.price-divider {
  width: 1px;
  height: 40px;
  background-color: var(--border);
}

.pricing-benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefits-card,
.cta-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
}

.benefits-title,
.cta-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.cta-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* Safety Badges Section */
.safety-badges {
  padding: 5rem 0;
  background-color: var(--muted);
}

.safety-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  /* Updated background to use blue instead of green */
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.safety-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.safety-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.safety-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.safety-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.safety-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Blog Section */
.blog-section {
  padding: 5rem 0;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.blog-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  /* Updated background to use blue instead of green */
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.btn-desktop {
  display: none;
}

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

.blog-card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background-color: var(--primary);
  color: white;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap 0.3s ease;
}

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

.blog-footer {
  text-align: center;
}

@media (min-width: 768px) {
  .btn-desktop {
    display: inline-flex;
  }

  .blog-footer {
    display: none;
  }
}

/* App Download Section */
.app-download {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  overflow: hidden;
}

.app-download-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.app-download-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.app-download-title span {
  color: #fbbf24;
}

.app-download-description {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.app-feature {
  display: flex;
  gap: 1rem;
}

.app-feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-feature-title {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.app-feature-description {
  font-size: 0.875rem;
  opacity: 0.8;
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.app-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
  .app-download-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .app-download-title {
    font-size: 3rem;
  }
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: var(--muted);
}

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

.faq-item {
  background-color: white;
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  transition: background-color 0.3s ease;
}

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

.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;
}

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.faq-footer {
  text-align: center;
  margin-top: 3rem;
}

.faq-footer-text {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
}

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

.cta-section-description {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cta-section-title {
    font-size: 3rem;
  }
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  font-size: 1.875rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--primary);
}

.contact-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.contact-value:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-legal {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--primary);
}

.footer-separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}
