/* ============================================
   MyPantry Marketing Website - CSS
   ============================================ */

/* Import Google Font - Inter (matching Flutter app) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ============================================
   CSS Custom Properties (Color Scheme)
   ============================================ */
:root {
  /* Primary Colors (from Flutter app) */
  --primary: #4CAF50;
  --primary-dark: #1B5E20;
  --primary-light: #81C784;
  --primary-lighter: #C8E6C9;

  /* Accent Colors */
  --accent: #66BB6A;
  --accent-light: #A5D6A7;

  /* Neutral Colors */
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --black: #000000;

  /* Status Colors */
  --success: #4CAF50;
  --warning: #FF9800;
  --error: #F44336;
  --info: #2196F3;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
  --gradient-hero: linear-gradient(135deg, #1B5E20 0%, #4CAF50 50%, #81C784 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(27, 94, 32, 0.9) 0%, rgba(76, 175, 80, 0.8) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.18);

  /* Border Radius (matching Flutter app) */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Global Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
}

p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: var(--space-sm);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary-dark);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-menu a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 1rem;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--primary);
  background: var(--gray-100);
}

.language-switcher {
  display: flex;
  gap: var(--space-xs);
}

.lang-btn {
  background: none;
  border: 2px solid var(--gray-300);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lang-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.lang-btn.active {
  background: var(--gradient-primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.mobile-menu-btn:hover {
  color: var(--primary);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  color: var(--white);
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(27, 94, 32, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.hero-text {
  text-align: left;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  background: var(--gray-50);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-4px);
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.stat {
  text-align: center;
  min-width: 80px;
}

/* Hero Image & Phone Mockup */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 300px;
  animation: float 3s ease-in-out infinite;
}

.phone-frame {
  position: relative;
  width: 100%;
  padding-bottom: 200%;
  background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 12px solid #2C2C2C;
}

.phone-screen {
  position: absolute;
  top: 20px;
  left: 12px;
  right: 12px;
  bottom: 20px;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.app-preview {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #E8F5E9 0%, #C8E6C9 100%);
  position: relative;
}

.app-preview::before {
  content: '🏠';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  opacity: 0.3;
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.hero-wave svg path {
  fill: var(--white);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Wave SVG */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-divider .shape-fill {
  fill: var(--white);
}

/* ============================================
   Features Section
   ============================================ */
.features {
  padding: var(--space-3xl) var(--space-md);
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--primary-dark);
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  color: var(--gray-600);
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-200);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: inline-block;
  transition: transform var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   Why MyPantry Section
   ============================================ */
.why-section {
  padding: var(--space-3xl) var(--space-md);
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.why-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.why-text {
  /* This is the left column with text content */
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.why-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border-left: 4px solid var(--primary);
}

.why-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-lighter);
  border-radius: var(--radius-md);
}

.why-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: var(--space-xs);
}

.why-item p {
  color: var(--gray-600);
  font-size: 1rem;
  margin: 0;
}

.why-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-card {
  width: 100%;
  max-width: 500px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: 0 20px 60px rgba(76, 175, 80, 0.3);
  animation: float 4s ease-in-out infinite;
}

.stats-header {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--white);
  text-align: center;
}

.stats-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.stats-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

.stats-item:last-child {
  margin-bottom: 0;
}

.stats-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.stats-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stats-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ============================================
   Download Section
   ============================================ */
.download-section {
  padding: var(--space-3xl) var(--space-md);
  background: var(--white);
  text-align: center;
}

.download-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.download-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--gray-900);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  border: 2px solid var(--gray-900);
}

.download-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.download-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.download-icon svg {
  width: 100%;
  height: 100%;
}

.download-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.download-label {
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 400;
}

.download-store {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.download-note {
  margin-top: var(--space-lg);
  color: var(--gray-600);
  font-size: 0.95rem;
  font-style: italic;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.95);
  padding: var(--space-2xl) var(--space-md) var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.logo-icon {
  font-size: 1.75rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-section h4 {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-base);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-size: 0.95rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet Landscape & Small Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .hero-content {
    gap: var(--space-xl);
    padding: var(--space-xl) var(--space-md);
  }

  .why-content {
    gap: var(--space-xl);
  }

  .phone-mockup {
    max-width: 250px;
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  /* Hero Section */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .hero-text {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .phone-mockup {
    max-width: 280px;
  }

  /* Why Section */
  .why-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .why-image {
    order: -1;
  }

  /* Features Grid */
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

/* Mobile Landscape & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
  /* Navigation */
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
    gap: var(--space-md);
    align-items: stretch;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: var(--space-md);
    text-align: center;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--gray-200);
  }

  .language-switcher {
    justify-content: center;
    padding-top: var(--space-md);
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: var(--space-3xl);
  }

  .hero-content {
    padding: var(--space-lg) var(--space-md);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-stats {
    gap: var(--space-lg);
  }

  .phone-mockup {
    max-width: 220px;
  }

  /* Features */
  .features {
    padding: var(--space-2xl) var(--space-md);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .feature-card {
    padding: var(--space-lg);
  }

  /* Why Section */
  .why-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .why-list {
    gap: var(--space-md);
  }

  .why-item {
    padding: var(--space-md);
  }

  .stats-card {
    max-width: 100%;
  }

  /* Download */
  .download-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .download-btn {
    width: 100%;
    max-width: 320px;
  }

  /* Footer */
  .footer {
    padding: var(--space-xl) var(--space-md) var(--space-md);
  }

  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Mobile Portrait (max-width: 576px) */
@media (max-width: 576px) {
  /* Typography */
  h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* Navigation */
  .nav-container {
    padding: var(--space-sm);
  }

  .nav-logo {
    font-size: 1.25rem;
  }

  /* Hero */
  .hero-stats {
    gap: var(--space-md);
  }

  .stat {
    min-width: 70px;
  }

  .stat-number {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .phone-mockup {
    max-width: 180px;
  }

  /* Language Switcher */
  .language-switcher {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .lang-btn {
    flex: 1;
    justify-content: center;
  }

  /* Features */
  .feature-icon {
    font-size: 2.5rem;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  /* Why Section */
  .why-icon {
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
  }

  .why-item h4 {
    font-size: 1.125rem;
  }

  .why-item p {
    font-size: 0.95rem;
  }

  .stats-icon {
    font-size: 2rem;
  }

  .stats-value {
    font-size: 1.75rem;
  }

  .stats-label {
    font-size: 0.85rem;
  }

  /* Download */
  .download-icon {
    width: 32px;
    height: 32px;
  }

  .download-label {
    font-size: 0.7rem;
  }

  .download-store {
    font-size: 1rem;
  }

  /* Footer */
  .footer-brand .logo {
    font-size: 1.25rem;
  }

  .footer-section h4 {
    font-size: 1rem;
  }
}

/* Extra Small Devices (max-width: 375px) */
@media (max-width: 375px) {
  .hero-buttons {
    width: 100%;
  }

  .btn {
    max-width: 100%;
  }

  .download-btn {
    max-width: 100%;
    padding: 0.875rem 1.25rem;
  }

  .feature-card {
    padding: var(--space-md);
  }
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.text-center {
  text-align: center;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
