/*
  CinemaNinja Modern Website Stylesheet
  Light/Dark theme with modern design principles
*/

:root {
  --primary-color: #f59e0b;
  --secondary-color: #3b82f6;
  --background-color: #ffffff;
  --background-secondary: #f9fafb;
  --card-background: #ffffff;
  --card-border: #e5e7eb;
  --border-color: #e5e7eb;
  --text-color: #111827;
  --text-secondary: #6b7280;
  --text-muted: #6b7280;
  --muted-color: #9ca3af;
  --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);
}

[data-theme="dark"] {
  --primary-color: #fbbf24;
  --secondary-color: #60a5fa;
  --background-color: #0f172a;
  --background-secondary: #1e293b;
  --card-background: #1e293b;
  --card-border: #334155;
  --border-color: #334155;
  --text-color: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #cbd5e1;
  --muted-color: #94a3b8;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.7);
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  transition: all 0.3s ease;
}

[data-theme="dark"] header {
  background: rgba(15, 23, 42, 0.8);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.theme-toggle:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

.theme-toggle:active {
  transform: scale(0.95);
}

.button.small {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.button.small:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--background-color);
}

/* Scrolling posters background */
.posters-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.35;
  filter: blur(0px);
}

[data-theme="dark"] .posters-background {
  opacity: 0.25;
}

.poster-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}

.poster-row:nth-child(2) {
  animation: scroll-right 45s linear infinite;
}

.poster-row:nth-child(3) {
  animation: scroll-left 50s linear infinite;
}

.poster-row img {
  height: 200px;
  width: 135px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center,
    rgba(255, 255, 255, 0.85) 30%,
    rgba(255, 255, 255, 0.7) 70%,
    rgba(255, 255, 255, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}

[data-theme="dark"] .hero::before {
  background: radial-gradient(circle at center,
    rgba(15, 23, 42, 0.85) 30%,
    rgba(15, 23, 42, 0.7) 70%,
    rgba(15, 23, 42, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.3));
  margin-bottom: 2rem;
}

.hero-tagline {
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--text-color);
  letter-spacing: -0.02em;
}

.tagline-highlight {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 650px;
}

.ninja-text {
  color: var(--primary-color);
  font-weight: 700;
}

.hero-cta {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

.cta-arrow {
  font-size: 1.75rem;
  animation: bounce 1.5s ease-in-out infinite;
}

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

@keyframes pulse-glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
  }
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--text-color);
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero p {
  color: var(--text-secondary);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 500px;
}

.buttons-container {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.store-badge {
  display: inline-block;
  transition: all 0.3s ease;
  filter: drop-shadow(var(--shadow-md));
  height: 54px;
}

.store-badge:hover {
  transform: translateY(-3px);
  filter: drop-shadow(var(--shadow-lg));
}

.store-badge img {
  height: 54px;
  width: auto;
  display: block;
}

.hero-subtext {
  color: var(--muted-color);
  font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  position: relative;
  width: 300px;
  height: 610px;
  background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
  border-radius: 45px;
  padding: 14px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: phoneFloat 4s ease-in-out infinite;
}

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

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 28px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  border-radius: 35px;
  overflow: hidden;
  position: relative;
}

.screenshot-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.screenshot.active {
  opacity: 1;
  z-index: 1;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: var(--primary-color);
  width: 24px;
  border-radius: 4px;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 2rem;
  background: var(--background-color);
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--card-background);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-icon {
  font-size: 3rem;
  margin: 1rem 0;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.step p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 4rem 2rem;
  background: var(--background-secondary);
  border-top: 1px solid var(--card-border);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--card-background);
  border-radius: 16px;
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Modern Features Section */
.features-modern {
  padding: 5rem 2rem;
  background: var(--background-color);
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.features-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-color);
  letter-spacing: -0.02em;
}

.features-header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.features-grid-modern {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card-modern {
  background: var(--card-background);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  box-shadow: var(--shadow-sm);
}

.feature-card-modern.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.feature-icon-modern {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.feature-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.feature-desc-modern {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: var(--background-color);
  overflow: hidden;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.testimonials h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.testimonials-scroll-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.testimonials-scroll {
  display: flex;
  gap: 1.5rem;
  animation: scroll-testimonials 40s linear infinite;
  width: fit-content;
}

.testimonials-scroll:hover {
  animation-play-state: paused;
}

@keyframes scroll-testimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  background: var(--card-background);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 1.75rem;
  min-width: 380px;
  max-width: 380px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.stars {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  min-height: 50px;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 2rem;
  background: var(--background-secondary);
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.faq-container h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  text-align: left;
}

.faq-item {
  background: var(--card-background);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Section */
.cta-modern {
  padding: 5rem 2rem;
  background: linear-gradient(135deg,
    rgba(245, 158, 11, 0.08),
    rgba(59, 130, 246, 0.08));
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-container h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-color);
  letter-spacing: -0.02em;
}

.cta-container p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.benefit {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.cta-container .buttons-container {
  justify-content: center;
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--background-secondary);
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-top: 1px solid var(--card-border);
}

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

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1rem;
}

.footer-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  padding: 0.25rem 0;
}

.footer-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.footer-separator {
  color: var(--text-secondary);
  font-weight: 400;
}

.footer p + p {
  margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

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

  .hero p {
    max-width: 100%;
    font-size: 1.1rem;
  }

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

  .phone-mockup {
    order: -1;
  }

  .phone-frame {
    width: 260px;
    height: 530px;
  }

  .features-header h2,
  .cta-container h2 {
    font-size: 2rem;
  }

  .features-grid-modern {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  header {
    padding: 0.75rem 1rem;
  }

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

  .logo-image {
    width: 36px;
    height: 36px;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .button.small {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }

  .hero {
    padding: 5rem 1rem 2rem;
    min-height: auto;
  }

  .hero-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
  }

  .hero-tagline {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .hero-cta {
    font-size: 1.25rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .cta-arrow {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-subtext {
    font-size: 0.8rem;
  }

  .buttons-container {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .store-badge {
    height: 48px;
  }

  .store-badge img {
    height: 48px;
  }

  .phone-frame {
    width: 220px;
    height: 450px;
  }

  /* How It Works - Mobile: 2 columns */
  .how-it-works {
    padding: 2.5rem 1rem;
  }

  .how-it-works h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .step {
    padding: 1.25rem 0.75rem;
  }

  .step-icon {
    font-size: 1.75rem;
    margin: 0.4rem 0;
  }

  .step h3 {
    font-size: 0.95rem;
  }

  .step p {
    font-size: 0.8rem;
  }

  .testimonials h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .testimonial-card {
    min-width: 300px;
    max-width: 300px;
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .author-name {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
    top: -12px;
  }

  /* Stats - Mobile */
  .stats-section {
    padding: 2.5rem 1rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1.25rem 0.75rem;
  }

  .stat-icon {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
  }

  .stat-number {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  /* Features - Mobile: 2 columns */
  .features-modern {
    padding: 2.5rem 1rem;
  }

  .features-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .features-header p {
    font-size: 0.9rem;
  }

  .features-header {
    margin-bottom: 1.5rem;
  }

  .features-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .feature-card-modern {
    padding: 1.25rem 1rem;
  }

  .feature-icon-modern {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .feature-title-modern {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .feature-desc-modern {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  /* Testimonials - Mobile: 2 columns */
  .testimonials {
    padding: 2.5rem 1rem;
  }

  .testimonials h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .testimonial-card {
    padding: 1.25rem 1rem;
  }

  .stars {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .testimonial-text {
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }

  .author-avatar {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .author-name {
    font-size: 0.85rem;
  }

  .author-location {
    font-size: 0.75rem;
  }

  /* FAQ - Mobile: 2 columns, show 4 FAQs */
  .faq-section {
    padding: 2.5rem 1rem;
  }

  .faq-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .faq-item {
    padding: 1rem;
  }

  .faq-item h3 {
    font-size: 0.92rem;
    margin-bottom: 0.4rem;
  }

  .faq-item p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* Hide less critical FAQs on mobile */
  .faq-item:nth-child(3),
  .faq-item:nth-child(5),
  .faq-item:nth-child(6) {
    display: none;
  }

  /* CTA - Mobile */
  .cta-modern {
    padding: 2.5rem 1rem;
  }

  .cta-container h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }

  .cta-container p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .cta-benefits {
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
  }

  .benefit {
    font-size: 0.88rem;
  }

  /* Footer - Mobile */
  .footer {
    padding: 2rem 1rem;
    font-size: 0.85rem;
  }
}
