:root {
  --primary: #5d12ce;
  --primary-glow: #bc92f9;
  --background: #f8f9fa;
  --text-main: #111827;
  --text-muted: #4b5563;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--background);
  line-height: 1.5;
}

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

ul {
  list-style: none;
}

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

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

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

.flex-col {
  flex-direction: column;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

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

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

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

.w-full {
  width: 100%;
}

.h-screen {
  height: 100vh;
}

.min-h-screen {
  min-height: 100vh;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Missing utilities */
.h-12 {
  height: 3rem;
}

.w-auto {
  width: auto;
}

.gap-2 {
  gap: 0.5rem;
}

/* Desktop Utilities */
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

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

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-right {
    text-align: right;
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* Header */
.site-header {
  background-color: var(--primary);
  color: white;
  position: relative;
  z-index: 50;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.site-header .h-20 {
  height: 5rem;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.nav-link:hover {
  color: white;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: white;
  font-weight: 500;
}

/* Header Component Visibility */
.desktop-nav {
  display: none;
}

.mobile-menu-trigger {
  display: block;
}

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

  .mobile-menu-trigger {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #5d12ce, #7c3aed, #5d12ce);
  position: relative;
  overflow: hidden;
  color: white;
  padding: 3rem 0;
}

.hero-circles div {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  position: absolute;
}

.circle-1 {
  top: -5rem;
  left: -5rem;
  width: 20rem;
  height: 20rem;
}

.circle-2 {
  top: 33%;
  right: -4rem;
  width: 15rem;
  height: 15rem;
  background: rgba(255, 255, 255, 0.1) !important;
}

.circle-3 {
  bottom: -4rem;
  left: 25%;
  width: 24rem;
  height: 24rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 3rem 1rem;
}

.hero-logo {
  width: 12rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.2));
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media(min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: white;
  color: var(--primary);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  display: inline-block;
  font-size: 1.125rem;
  transition: var(--transition);
}

.cta-wrapper {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Features/Concept */
.concept-section {
  background: white;
  padding: 3rem 0;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.concept-card {
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: left;
}

.concept-card.purple {
  background: linear-gradient(to bottom right, #faf5ff, #f3e8ff);
}

.concept-card.blue {
  background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
}

/* Cyclists Section */
.cyclists-section {
  background: linear-gradient(to bottom right, #faf5ff, #ffffff);
  padding: 3rem 0;
}

.section-header-icon {
  color: var(--primary);
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
}

.feature-box {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

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

.step-icon {
  background: #f3e8ff;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.points-box {
  background: linear-gradient(to right, #5d12ce, #7c3aed);
  border-radius: 1.5rem;
  padding: 2rem;
  color: white;
}

/* Stores Section */
.stores-section {
  background: linear-gradient(to bottom right, #eff6ff, #ffffff);
  padding: 3rem 0;
}

.process-list .item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.process-number {
  background: #dbeafe;
  color: var(--primary);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.benefits-box {
  background: linear-gradient(to right, #5d12ce, #7c3aed);
  border-radius: 1.5rem;
  padding: 2rem;
  color: white;
  text-align: center;
}

/* Improved Footer Styling */
.site-footer {
  background: var(--primary);
  color: white;
  padding-top: 5rem;
  font-size: 0.95rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-logo {
  height: 4.5rem;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 300px;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--white);
  opacity: 0.3;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
  width: 1.125rem;
  height: 1.125rem;
  opacity: 0.9;
}

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

.social-icon {
  background: rgba(255, 255, 255, 0.15);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  color: white;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  color: white;
}

.footer-bottom {
  margin-top: 5rem;
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.heart-icon {
  width: 1rem;
  height: 1rem;
  color: #ff4d4d;
  display: inline-block;
  vertical-align: middle;
  fill: #ff4d4d;
}

.mb-6 {
  margin-bottom: 1.5rem;
}