/* ===================================
   MOODIGO - ADHD-FRIENDLY DESIGN
   Minimal, Visual, Stress-Free
   =================================== */

/* --- CSS Variables --- */
:root {
  /* Colors - Luxury Cute Palette */
  --primary: #8b5cf6;
  --primary-light: #a78bfa;
  --primary-dark: #7c3aed;
  --accent: #ec4899;
  --accent-light: #f472b6;
  --accent-yellow: #fbbf24;
  --accent-teal: #14b8a6;

  --bg-white: #ffffff;
  --bg-light: #faf5ff;
  --bg-cream: #fef3f2;
  --bg-accent: #f5f3ff;
  --bg-gradient-1: linear-gradient(135deg, #faf5ff 0%, #fef3f2 100%);
  --bg-gradient-2: linear-gradient(135deg, #f5f3ff 0%, #fef3f2 100%);
  --bg-gradient-purple: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);

  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --text-light: #9ca3af;

  --border-light: #f3e8ff;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-gradient-1);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
}

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

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

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* --- Header --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-xl);
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
  position: sticky;
  top: var(--spacing-md);
  z-index: 100;
  gap: var(--spacing-xl);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bg-gradient-purple);
  transition: width 0.3s ease;
}

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

.nav-link:hover::after {
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.3));
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: rotate(10deg) scale(1.1);
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.btn-app-store-header {
  padding: 0.75rem 1.75rem;
  background: var(--bg-gradient-purple);
  color: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  font-family: var(--font-display);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-app-store-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-app-store-header:hover::before {
  left: 100%;
}

.btn-app-store-header:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

/* --- Hero Section --- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  padding: var(--spacing-3xl) var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  min-height: 80vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.badge {
  display: inline-block;
  width: fit-content;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(139, 92, 246, 0.3);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-gray);
  max-width: 560px;
  font-family: var(--font-body);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 1.125rem 2.5rem;
  background: var(--bg-gradient-purple);
  color: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.0625rem;
  font-family: var(--font-display);
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.35);
  margin-top: var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.45);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 650px;
  object-fit: contain;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: translateY(-10px) rotate(-2deg);
}

/* --- Feature Sections --- */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  padding: var(--spacing-3xl) var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-section.reverse {
  direction: rtl;
}

.feature-section.reverse > * {
  direction: ltr;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.feature-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.feature-content p {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--text-gray);
  font-family: var(--font-body);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1rem;
  color: var(--text-gray);
}

.feature-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.feature-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.feature-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.feature-image img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.feature-image img:hover {
  transform: scale(1.03) rotate(1deg);
}

/* --- Calendar Sync Section --- */
.sync-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  padding: var(--spacing-3xl) var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.sync-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.sync-content h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.sync-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-gray);
}

.sync-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  min-height: 400px;
}

.sync-image img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

/* --- Why Section --- */
.why-section {
  padding: var(--spacing-3xl) var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.why-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-card {
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(139, 92, 246, 0.15);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 200px;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bg-gradient-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.95);
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.why-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-gray);
  text-align: center;
  margin: 0;
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: var(--spacing-3xl) var(--spacing-lg);
  max-width: 1200px;
  margin: var(--spacing-3xl) auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(139, 92, 246, 0.15);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials-section h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 900;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.testimonials-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: flex;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: var(--spacing-lg);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
  border: 2px solid rgba(139, 92, 246, 0.1);
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  min-width: 350px;
  max-width: 350px;
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25);
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 1);
}

.quote-mark {
  font-size: 4.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: var(--spacing-sm);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
}

.stars {
  color: #fbbf24;
  font-size: 1.125rem;
  letter-spacing: 0.125rem;
}

/* --- FAQ Section --- */
.faq-section {
  padding: var(--spacing-3xl) var(--spacing-lg);
  max-width: 900px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

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

.faq-question::after {
  content: "▼";
  font-size: 0.875rem;
  color: var(--text-gray);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin: 0;
}

/* --- Final CTA Section --- */
.final-cta-section {
  padding: var(--spacing-3xl) var(--spacing-lg);
  max-width: 900px;
  margin: 0 auto var(--spacing-3xl);
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  color: white;
}

.final-cta-section h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--spacing-md);
}

.final-cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-final-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 2.5rem;
  background: white;
  color: var(--primary);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-final-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* --- Footer --- */
.footer {
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  border-top: 1px solid var(--border-light);
  background: var(--bg-white);
}

.footer p {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: var(--spacing-sm);
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.875rem;
  color: var(--text-gray);
}

.footer-links a {
  color: var(--text-gray);
  transition: color 0.2s ease;
}

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

/* ===================================
   RESPONSIVE DESIGN (Mobile-First)
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero,
  .feature-section,
  .sync-section {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .feature-section.reverse {
    direction: ltr;
  }

  .hero {
    min-height: auto;
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .feature-section,
  .sync-section {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .hero-image,
  .feature-image,
  .sync-image {
    order: -1;
  }

  .hero-image img,
  .feature-image img {
    max-height: 500px;
  }

  .sync-image {
    min-height: 300px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .header {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .nav-menu {
    display: none;
  }

  .logo-img {
    width: 2rem;
    height: 2rem;
  }

  .logo-text {
    font-size: 1.125rem;
  }

  .btn-app-store-header {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .hero,
  .feature-section,
  .sync-section,
  .why-section,
  .testimonials-section,
  .faq-section,
  .final-cta-section {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .testimonials-grid {
    flex-direction: column;
    overflow-x: visible;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .faq-question {
    font-size: 1rem;
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
  }

  .btn-final-cta {
    width: 100%;
    padding: 1rem 2rem;
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-primary-large {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .feature-content h2 {
    font-size: 1.75rem;
  }

  .feature-content p {
    font-size: 1rem;
  }

  .hero-image img,
  .feature-image img {
    max-height: 400px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .why-section h2,
  .testimonials-section h2,
  .faq-section h2,
  .final-cta-section h2 {
    font-size: 1.75rem;
  }

  .testimonials-subtitle,
  .final-cta-subtitle {
    font-size: 1rem;
  }

  .why-description,
  .cta-section p {
    font-size: 1rem;
  }

  .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.875rem;
  }

  .footer {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .feature-content h2 {
    font-size: 1.5rem;
  }

  .why-section h2,
  .testimonials-section h2,
  .faq-section h2,
  .final-cta-section h2 {
    font-size: 1.5rem;
  }

  .testimonial-card {
    padding: var(--spacing-md);
  }

  .quote-mark {
    font-size: 3rem;
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

/* Focus States */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --text-dark: #000000;
    --text-gray: #4a4a4a;
    --border-light: #333333;
  }
}
