/* CookAlert AI - Static CSS Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* CSS Custom Properties */
:root {
  /* CookAlert Warm Palette */
  --background: hsl(30, 100%, 97%);
  --foreground: hsl(0, 0%, 7%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 7%);
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(0, 0%, 7%);

  /* Vibrant Orange Primary */
  --primary: hsl(24, 100%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);

  /* Warm Cream Secondary */
  --secondary: hsl(30, 100%, 97%);
  --secondary-foreground: hsl(0, 0%, 7%);

  --muted: hsl(30, 20%, 92%);
  --muted-foreground: hsl(220, 9%, 46%);

  --accent: hsl(24, 100%, 95%);
  --accent-foreground: hsl(24, 100%, 35%);

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

  --border: hsl(30, 20%, 88%);
  --input: hsl(30, 20%, 88%);
  --ring: hsl(24, 100%, 55%);

  --radius: 1rem;

  /* Custom tokens */
  --gradient-hero: linear-gradient(135deg, hsl(24, 100%, 55%) 0%, hsl(35, 100%, 60%) 100%);
  --gradient-card: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(30, 50%, 98%) 100%);
  --shadow-soft: 0 4px 20px -4px hsla(24, 100%, 55%, 0.15);
  --shadow-card: 0 8px 32px -8px hsla(0, 0%, 0%, 0.08);
  --shadow-glow: 0 0 60px -12px hsla(24, 100%, 55%, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

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

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

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

/* 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: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hero {
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

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

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

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

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

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

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.logo span:first-child {
  font-size: 1.5rem;
}

.logo-img {
  height: 2.5rem;
  width: auto;
  border-radius: 0.375rem;
}

.footer-brand .logo-img {
  height: 2.25rem;
}

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

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

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

.nav-cta {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
}

.mobile-menu.open {
  display: block;
  animation: fadeIn 0.3s ease;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--muted-foreground);
}

.mobile-menu a:hover {
  color: var(--foreground);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 1rem;
}

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

  .nav-cta {
    display: block;
  }

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

  .logo-img {
    height: 3.5rem;
    border-radius: 0.5rem;
  }

  .footer-brand .logo-img {
    height: 3rem;
  }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-bg-circle:first-child {
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: hsla(24, 100%, 55%, 0.1);
}

.hero-bg-circle:last-child {
  bottom: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: var(--accent);
}

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

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

.hero h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

.hero p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  z-index: 10;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  animation: float 3s ease-in-out infinite;
}

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

.hero-image-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gradient-hero);
  opacity: 0.2;
  filter: blur(60px);
  transform: scale(1.1);
}

/* Placeholder for hero image */
.hero-image-placeholder {
  aspect-ratio: 16/10;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 10rem 0 8rem;
  }

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

  .hero p {
    font-size: 1.25rem;
  }

  .hero-buttons {
    flex-direction: row;
  }
}

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

  .hero-text {
    text-align: left;
  }

  .hero p {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 4rem;
  }
}

/* Social Proof */
.social-proof {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: hsla(30, 20%, 92%, 0.3);
}

.social-proof p {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.social-proof-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.social-proof-logos span {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsla(220, 9%, 46%, 0.5);
  transition: color 0.2s;
}

.social-proof-logos span:hover {
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .social-proof-logos {
    gap: 3rem;
  }
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header.left-aligned {
  text-align: left;
}

.section-header h2 {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.section-header p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.section-header.left-aligned p {
  margin-left: 0;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

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

.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Feature Card */
.feature-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

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

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

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

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

@media (min-width: 768px) {
  .feature-card {
    padding: 2rem;
  }
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  background: hsla(30, 20%, 92%, 0.3);
}

.how-it-works-grid {
  display: grid;
  gap: 2rem;
}

.how-it-works-step {
  position: relative;
  text-align: center;
}

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.how-it-works-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.how-it-works-step p {
  color: var(--muted-foreground);
  max-width: 20rem;
  margin: 0 auto;
}

.step-connector {
  display: none;
  position: absolute;
  top: 2rem;
  left: 60%;
  width: 80%;
  height: 2px;
  background: var(--border);
}

@media (min-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .step-connector {
    display: block;
  }

  .how-it-works-step:last-child .step-connector {
    display: none;
  }
}

/* Screenshots */
.screenshots {
  padding: 5rem 0;
  background: hsla(30, 20%, 92%, 0.3);
  overflow: hidden;
}

.carousel {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.carousel-viewport {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--card);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, var(--accent), var(--muted));
  padding: 2rem;
}

.carousel-slide-content {
  text-align: center;
}

.carousel-slide-icon {
  width: 12rem;
  height: 12rem;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.carousel-slide-caption {
  font-size: 1.125rem;
  font-weight: 500;
}

.carousel-slide-alt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.carousel-btn:hover {
  box-shadow: var(--shadow-glow);
}

.carousel-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: hsla(220, 9%, 46%, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.carousel-dot.active {
  width: 1.5rem;
  background: var(--primary);
}

.carousel-dot:hover {
  background: hsla(220, 9%, 46%, 0.5);
}

.carousel-dot.active:hover {
  background: var(--primary);
}

@media (min-width: 768px) {
  .carousel-slide-icon {
    width: 16rem;
    height: 16rem;
    font-size: 6rem;
  }
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.testimonial-card blockquote {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-info p:first-child {
  font-weight: 600;
}

.testimonial-info p:last-child {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-card blockquote {
    font-size: 1.25rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: var(--foreground);
  color: var(--background);
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.125rem;
  opacity: 0.7;
  max-width: 36rem;
  margin: 1rem auto 2rem;
}

.cta-section .btn-hero {
  animation: pulseGlow 2s ease-in-out infinite;
}

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

  .cta-section p {
    font-size: 1.25rem;
  }
}

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

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

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

.footer-brand p {
  opacity: 0.7;
  max-width: 20rem;
  margin-top: 1rem;
}

.footer-links h4,
.footer-legal h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-legal a {
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-links a:hover,
.footer-legal a:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(255, 255%, 255%, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  opacity: 0.5;
  font-size: 0.875rem;
}

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

.footer-social a {
  opacity: 0.5;
  transition: opacity 0.2s;
  text-transform: capitalize;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Pricing Page */
.pricing-section {
  padding: 8rem 0 5rem;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing-toggle span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.pricing-toggle span.active {
  color: var(--foreground);
}

.pricing-toggle-btn {
  position: relative;
  width: 3.5rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: var(--muted);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.pricing-toggle-btn.active {
  background: var(--primary);
}

.pricing-toggle-knob {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--card);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.pricing-toggle-btn.active .pricing-toggle-knob {
  transform: translateX(1.75rem);
}

.save-badge {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  margin-left: 0.5rem;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-section {
    padding: 10rem 0 7rem;
  }

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

/* Pricing Card */
.pricing-card {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.pricing-card.popular {
  box-shadow: var(--shadow-glow);
  border: 2px solid var(--primary);
}

.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-price-amount {
  font-size: 3rem;
  font-weight: 700;
}

.pricing-price-period {
  color: var(--muted-foreground);
}

.pricing-savings {
  font-size: 0.875rem;
  color: var(--primary);
  margin-top: 0.5rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.pricing-features svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-features span {
  color: var(--muted-foreground);
}

.pricing-card .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 2rem;
  }
}

/* FAQ Page */
.faq-section {
  padding: 8rem 0 5rem;
}

.faq-section .container {
  max-width: 48rem;
}

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

.faq-item {
  background: var(--card);
  border-radius: 1rem;
  padding: 0 1.5rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

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

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

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 10rem 0 7rem;
  }
}

/* Contact Page */
.contact-section {
  padding: 8rem 0 5rem;
}

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

.contact-about {
  color: var(--muted-foreground);
}

.contact-about p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.contact-values {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-value h3 {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-value p {
  font-size: 1rem;
}

.contact-form-wrapper {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.contact-form-wrapper h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--background);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(24, 100%, 55%, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

.contact-email {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-email a {
  color: var(--primary);
  font-weight: 500;
}

.contact-email a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 10rem 0 7rem;
  }

  .contact-form-wrapper {
    padding: 2.5rem;
  }
}

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

/* Features Page Extended */
.features-page {
  padding: 8rem 0 5rem;
}

.features-detail {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.feature-detail-item {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.feature-detail-item.reverse .feature-detail-text {
  order: 1;
}

.feature-detail-text h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.feature-detail-text > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-bullet-dot {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-bullet-dot span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
}

@media (min-width: 768px) {
  .features-page {
    padding: 10rem 0 7rem;
  }

  .feature-detail-item {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .feature-detail-text h3 {
    font-size: 2rem;
  }
}

/* Special Feature Sections */
.feature-section {
  padding: 5rem 0;
}

.feature-section.alt-bg {
  background: hsla(24, 100%, 95%, 0.3);
}

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

.feature-section-header .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-section-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* Kids Meals Grid */
.kids-meals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.kids-meals-grid .category-card {
  background: var(--background);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s;
}

.kids-meals-grid .category-card:hover {
  box-shadow: var(--shadow-soft);
}

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

/* Gym Meals Grid */
.gym-meals-grid {
  display: grid;
  gap: 1.5rem;
}

.gym-meal-card {
  background: linear-gradient(to bottom right, hsla(24, 100%, 55%, 0.05), hsla(24, 100%, 55%, 0.1));
  border: 1px solid hsla(24, 100%, 55%, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}

.gym-meal-card:hover {
  border-color: hsla(24, 100%, 55%, 0.4);
}

.gym-meal-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.gym-meal-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

@media (min-width: 1024px) {
  .gym-meals-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Regional Cuisines Grid */
.cuisines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.cuisine-card {
  background: var(--background);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s;
}

.cuisine-card:hover {
  box-shadow: var(--shadow-soft);
}

.cuisine-card .flag {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.cuisine-card h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cuisine-card ul {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.cuisine-card ul li {
  transition: color 0.2s;
}

.cuisine-card:hover ul li {
  color: var(--foreground);
}

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

@media (min-width: 1024px) {
  .cuisines-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Safe Buddy Section */
.safe-buddy-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.buddy-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.buddy-type {
  background: linear-gradient(to bottom right, hsla(24, 100%, 55%, 0.1), var(--accent));
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-card);
}

.buddy-type .emoji {
  font-size: 1.5rem;
}

.buddy-type span:last-child {
  font-weight: 500;
}

.buddy-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.buddy-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.buddy-feature-dot {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: hsla(24, 100%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.buddy-feature-dot span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
}

@media (min-width: 768px) {
  .safe-buddy-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Teaser Link */
.teaser-link {
  margin-top: 4rem;
  text-align: center;
}

.teaser-link p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.teaser-link a {
  color: var(--primary);
  font-weight: 600;
}

.teaser-link a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px hsla(24, 100%, 55%, 0.3); }
  50% { box-shadow: 0 0 40px hsla(24, 100%, 55%, 0.5); }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
