/* CrowdMow Design System - Static CSS */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* CSS Variables - Design Tokens */
:root {
  /* Fresh grass-inspired palette */
  --background: hsl(120, 20%, 98%);
  --foreground: hsl(150, 30%, 12%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(150, 30%, 12%);
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(150, 30%, 12%);

  /* Primary: Vibrant grass green */
  --primary: hsl(142, 60%, 40%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-glow: hsl(142, 70%, 50%);

  /* Secondary: Warm earth tone */
  --secondary: hsl(35, 40%, 92%);
  --secondary-foreground: hsl(35, 50%, 20%);

  --muted: hsl(120, 15%, 94%);
  --muted-foreground: hsl(150, 15%, 45%);

  /* Accent: Golden amber */
  --accent: hsl(42, 95%, 55%);
  --accent-foreground: hsl(42, 80%, 15%);

  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);

  --border: hsl(120, 15%, 88%);
  --input: hsl(120, 15%, 88%);
  --ring: hsl(142, 60%, 40%);
  --radius: 0.75rem;

  /* Custom tokens */
  --lawn-green: hsl(142, 70%, 45%);
  --sky-blue: hsl(200, 80%, 55%);
  --sky: hsl(200, 80%, 55%);
  --earth-brown: hsl(35, 40%, 35%);
  --gold: hsl(42, 95%, 55%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
.font-display {
  font-family: 'Space Grotesk', system-ui, sans-serif;
}

/* Container */
.container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Gradients */
.bg-gradient-hero {
  background: linear-gradient(135deg, hsl(142, 60%, 40%) 0%, hsl(160, 55%, 45%) 100%);
}

.bg-gradient-sky {
  background: linear-gradient(180deg, hsl(200, 80%, 85%) 0%, hsl(200, 60%, 95%) 100%);
}

.text-gradient-hero {
  background: linear-gradient(135deg, hsl(142, 60%, 40%) 0%, hsl(160, 55%, 45%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, hsl(42, 95%, 55%) 0%, hsl(35, 90%, 50%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Backgrounds */
.bg-background { background-color: var(--background); }
.bg-foreground { background-color: var(--foreground); }
.bg-card { background-color: var(--card); }
.bg-muted { background-color: var(--muted); }
.bg-primary { background-color: var(--primary); }
.bg-sky { background-color: var(--sky); }

/* Text Colors */
.text-foreground { color: var(--foreground); }
.text-background { color: var(--background); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-sky { color: var(--sky); }
.text-gold { color: var(--gold); }
.text-destructive { color: var(--destructive); }
.fill-gold { fill: var(--gold); }

/* Grass Pattern */
.grass-pattern {
  background-image: radial-gradient(circle at 25% 25%, hsl(142, 60%, 40%, 0.1) 2%, transparent 2.5%),
                    radial-gradient(circle at 75% 75%, hsl(142, 60%, 40%, 0.08) 2%, transparent 2.5%);
  background-size: 60px 60px;
}

/* Shadows */
.shadow-sm { box-shadow: 0 2px 8px -2px hsl(150, 30%, 12%, 0.08); }
.shadow-md { box-shadow: 0 8px 24px -8px hsl(150, 30%, 12%, 0.12); }
.shadow-lg { box-shadow: 0 16px 48px -16px hsl(150, 30%, 12%, 0.15); }
.shadow-glow { box-shadow: 0 0 40px -10px hsl(142, 70%, 45%, 0.4); }
.shadow-gold { box-shadow: 0 8px 32px -8px hsl(42, 95%, 55%, 0.4); }

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse-soft { animation: pulse-soft 3s ease-in-out infinite; }
.animate-slide-up { animation: slide-up 0.6s ease-out forwards; }
.animate-fade-in { animation: fade-in 0.8s ease-out forwards; }
.animate-pulse { animation: pulse-soft 2s ease-in-out infinite; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 1rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

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

.btn-owner {
  background: linear-gradient(135deg, hsl(142, 60%, 40%) 0%, hsl(160, 55%, 45%) 100%);
  color: white;
  box-shadow: 0 4px 20px -4px hsl(142, 70%, 45%, 0.5);
}

.btn-mowernaut {
  background: var(--sky);
  color: white;
  box-shadow: 0 4px 20px -4px hsl(200, 80%, 55%, 0.5);
}

.btn-hero {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.2);
}

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

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

/* Only apply hover effects on devices that support hover */
@media (hover: hover) and (pointer: fine) {
  .btn-owner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px -4px hsl(142, 70%, 45%, 0.6);
  }

  .btn-mowernaut:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px -4px hsl(200, 80%, 55%, 0.6);
  }

  .btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px -4px rgba(0, 0, 0, 0.3);
  }

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

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

/* Active states for touch devices */
.btn-owner:active {
  transform: scale(0.98);
}

.btn-mowernaut:active {
  transform: scale(0.98);
}

.btn-hero:active {
  transform: scale(0.98);
}

.btn-outline:active {
  background: var(--muted);
}

.btn-hero-outline:active {
  background: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(251, 253, 251, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.logo:hover .logo-icon {
  transform: scale(1.1);
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  z-index: 51;
  position: relative;
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
  stroke: var(--foreground);
  stroke-width: 2.5;
}

.mobile-menu-btn .close-icon {
  display: none;
}

.mobile-menu-btn.open .hamburger-icon {
  display: none;
}

.mobile-menu-btn.open .close-icon {
  display: block;
}

/* Mobile Navigation Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--background);
  z-index: 45;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: 0.75rem;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(0, 0, 0, 0.05);
}

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

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

  .mobile-nav {
    display: none !important;
  }
}

/* Footer */
.footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 4rem 0;
}

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

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

.footer-section h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-section a:hover {
  opacity: 1;
}

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

/* Utility Classes */
.min-h-screen { min-height: 100vh; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-0 { z-index: 0; }
.overflow-hidden { overflow: hidden; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.w-full { width: 100%; }
.max-w-sm { max-width: 24rem; }
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.leading-tight { line-height: 1.25; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-12 { margin-top: 3rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-16 { padding-top: 4rem; }
.pt-32 { padding-top: 8rem; }
.pb-24 { padding-bottom: 6rem; }
.pt-8 { padding-top: 2rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.border { border: 1px solid var(--border); }
.border-2 { border: 2px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-primary { border-color: var(--primary); }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.blur-2xl { filter: blur(40px); }
.blur-3xl { filter: blur(64px); }
.object-cover { object-fit: cover; }
.h-full { height: 100%; }
.w-3 { width: 0.75rem; }
.h-3 { height: 0.75rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-7 { width: 1.75rem; }
.h-7 { height: 1.75rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-64 { width: 16rem; }
.h-64 { height: 16rem; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.top-20 { top: 5rem; }
.left-20 { left: 5rem; }
.bottom-20 { bottom: 5rem; }
.right-20 { right: 5rem; }
.-bottom-4 { bottom: -1rem; }
.-right-4 { right: -1rem; }
.-inset-4 { top: -1rem; right: -1rem; bottom: -1rem; left: -1rem; }
.-translate-y-1 { transform: translateY(-0.25rem); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.rotate-45 { transform: rotate(45deg); }
.transition-all { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s ease; }
.transition-shadow { transition: box-shadow 0.2s ease; }
.transition-transform { transition: transform 0.2s ease; }
.hover\:shadow-lg:hover { box-shadow: 0 16px 48px -16px hsl(150, 30%, 12%, 0.15); }
.hover\:shadow-md:hover { box-shadow: 0 8px 24px -8px hsl(150, 30%, 12%, 0.12); }
.hover\:shadow-glow:hover { box-shadow: 0 0 40px -10px hsl(142, 70%, 45%, 0.4); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:scale-110:hover { transform: scale(1.1); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }

/* Responsive Grid */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:flex-row { flex-direction: row; }
  .md\:text-left { text-align: left; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:text-7xl { font-size: 4.5rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:flex { display: flex; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Responsive Flex */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

/* Icon Styling */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Specific overrides */
.bg-primary\/10 { background-color: hsl(142, 60%, 40%, 0.1); }
.bg-primary\/20 { background-color: hsl(142, 60%, 40%, 0.2); }
.bg-sky\/10 { background-color: hsl(200, 80%, 55%, 0.1); }
.bg-sky\/20 { background-color: hsl(200, 80%, 55%, 0.2); }
.bg-card\/95 { background-color: rgba(255, 255, 255, 0.95); }
.bg-background\/80 { background-color: rgba(251, 253, 251, 0.8); }
.text-background\/70 { color: rgba(251, 253, 251, 0.7); }
.text-background\/80 { color: rgba(251, 253, 251, 0.8); }
.text-background\/50 { color: rgba(251, 253, 251, 0.5); }
.text-primary-foreground\/80 { color: rgba(255, 255, 255, 0.8); }
.text-primary-foreground\/90 { color: rgba(255, 255, 255, 0.9); }
.border-background\/20 { border-color: rgba(251, 253, 251, 0.2); }
.border-primary\/20 { border-color: hsl(142, 60%, 40%, 0.2); }
.border-sky\/20 { border-color: hsl(200, 80%, 55%, 0.2); }

/* Gradient backgrounds for sections */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.from-primary\/5 { --tw-gradient-from: hsl(142, 60%, 40%, 0.05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-primary\/10 { --tw-gradient-to: hsl(142, 60%, 40%, 0.1); }
.from-sky\/10 { --tw-gradient-from: hsl(200, 80%, 55%, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.from-foreground\/70 { --tw-gradient-from: hsla(150, 30%, 12%, 0.7); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.via-foreground\/50 { --tw-gradient-via: hsla(150, 30%, 12%, 0.5); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, transparent); }
.to-foreground\/80 { --tw-gradient-to: hsla(150, 30%, 12%, 0.8); }

/* Additional utilities */
.flex-1 { flex: 1 1 0%; }
.w-auto { width: auto; }

@media (min-width: 768px) {
  .md\:w-auto { width: auto; }
}

/* Prevent horizontal overflow on mobile */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Mobile text size adjustments */
@media (max-width: 767px) {
  .text-8xl { font-size: 4rem; }
  .text-9xl { font-size: 5rem; }

  /* Improve hero section on mobile */
  .text-5xl { font-size: 2.25rem; }
  .text-4xl { font-size: 1.5rem; }
  .text-xl { font-size: 1rem; }

  /* Better card sizing on mobile */
  .p-8 { padding: 1.25rem; }

  /* Adjust container padding on mobile */
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* Prevent any overflow clipping */
  .min-h-screen { overflow-x: hidden; }

  /* Fix section padding on mobile */
  .py-24 { padding-top: 3rem; padding-bottom: 3rem; }
  .pt-32 { padding-top: 6rem; }

  /* Section heading spacing */
  .mb-16 { margin-bottom: 2rem; }
  .mb-10 { margin-bottom: 1.5rem; }

  /* Features grid: 2 columns on mobile */
  .grid.md\:grid-cols-2.lg\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .grid.md\:grid-cols-2.lg\:grid-cols-4 .p-6 {
    padding: 1rem;
  }

  .grid.md\:grid-cols-2.lg\:grid-cols-4 .w-10 {
    width: 2rem;
    height: 2rem;
  }

  .grid.md\:grid-cols-2.lg\:grid-cols-4 .text-lg {
    font-size: 0.9375rem;
  }

  .grid.md\:grid-cols-2.lg\:grid-cols-4 .text-sm {
    font-size: 0.8125rem;
  }

  /* How It Works cards: tighter gap */
  .grid.md\:grid-cols-3 {
    gap: 1rem;
  }

  /* Reviews: horizontal scroll on mobile */
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
  }

  .reviews-grid::-webkit-scrollbar {
    height: 4px;
  }

  .reviews-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  .reviews-grid::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
  }

  .reviews-grid > * {
    min-width: 85%;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  /* CTA section: smaller text on mobile */
  .bg-gradient-hero .font-display.text-4xl {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .bg-gradient-hero .text-xl {
    font-size: 0.9375rem;
  }

  .bg-gradient-hero .mb-6 {
    margin-bottom: 1rem;
  }

  .bg-gradient-hero .mb-10 {
    margin-bottom: 1.5rem;
  }

  /* CTA buttons stack full-width on mobile */
  .bg-gradient-hero .flex.flex-col {
    gap: 0.75rem;
  }

  .bg-gradient-hero .btn-xl {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Hero cards: reduce spacing */
  .flex.flex-col.md\:flex-row.gap-6 {
    gap: 1rem;
  }

  /* Hero cards: smaller text */
  .flex.flex-col.md\:flex-row .text-2xl {
    font-size: 1.25rem;
  }

  .flex.flex-col.md\:flex-row .w-16 {
    width: 3rem;
    height: 3rem;
  }

  .flex.flex-col.md\:flex-row .w-8 {
    width: 1.5rem;
    height: 1.5rem;
  }

  /* Footer: better mobile layout */
  .footer {
    padding: 2.5rem 0;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}
