/* ============================================
   MA POPOTE - Landing Page Styles
   Premium French food assistant landing page.
   Editorial, warm, magazine-quality aesthetic.
   ============================================ */


/* ============================================
   1. NAVIGATION (Fixed Top)
   ============================================ */

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  background-color: transparent;
  transition:
    background-color var(--transition-slow),
    box-shadow var(--transition-slow),
    backdrop-filter var(--transition-slow);
}

.landing-nav.scrolled {
  background-color: rgba(245, 240, 225, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.landing-nav .nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.landing-nav .nav-logo img {
  height: 36px;
  width: auto;
}

.landing-nav .nav-logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  line-height: 1;
}

.landing-nav .nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.landing-nav .nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.landing-nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.landing-nav .nav-links a:hover {
  color: var(--accent-primary);
}

.landing-nav .nav-links a:hover::after {
  width: 100%;
}

.landing-nav .nav-cta {
  flex-shrink: 0;
}

.landing-nav .nav-mobile-toggle {
  display: none;
  width: var(--touch-target);
  height: var(--touch-target);
  border: none;
  background: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: var(--text-xl);
  align-items: center;
  justify-content: center;
}

/* Mobile nav overlay */
.landing-nav .nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-height);
  background-color: var(--bg-primary);
  flex-direction: column;
  padding: var(--space-xl);
  gap: var(--space-lg);
  z-index: calc(var(--z-fixed) + 10);
}

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

.landing-nav .nav-mobile-menu a {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  text-decoration: none;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition-fast);
}

.landing-nav .nav-mobile-menu a:hover {
  color: var(--accent-primary);
}


/* Scroll offset for fixed navbar */
.landing-features,
.landing-pricing,
.landing-testimonials,
.landing-faq,
.landing-how-it-works {
  scroll-margin-top: var(--header-height);
}

/* ============================================
   2. HERO SECTION
   ============================================ */

.landing-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-3xl)) var(--space-xl) var(--space-3xl);
  overflow: hidden;

  /* Warm gradient mesh background */
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(198, 123, 92, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 75% 60%, rgba(202, 138, 4, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 90% 80% at 50% 50%, rgba(181, 101, 29, 0.04) 0%, transparent 80%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-warm) 50%, var(--bg-primary) 100%);
}

.landing-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.landing-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.375rem 1rem;
  background-color: var(--accent-cta-light);
  color: var(--accent-cta);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  animation: fadeInDown var(--transition-slow) ease forwards;
}

.landing-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-lg) 0;
  animation: fadeInUp 0.5s ease 0.1s both;
}

.landing-hero .hero-title em {
  font-style: italic;
  color: var(--accent-primary);
}

.landing-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-normal);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-xl) 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.5s ease 0.2s both;
}

.landing-hero .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.5s ease 0.3s both;
}

.landing-hero .hero-actions .btn-primary {
  font-size: var(--text-lg);
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px rgba(202, 138, 4, 0.3);
}

.landing-hero .hero-actions .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(202, 138, 4, 0.4);
  transform: translateY(-2px);
}

.landing-hero .hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  animation: fadeIn 0.5s ease 0.5s both;
}

.landing-hero .hero-social-proof .hero-avatars {
  display: flex;
}

.landing-hero .hero-social-proof .hero-avatars .avatar {
  margin-left: -8px;
  border: 2px solid var(--bg-primary);
}

.landing-hero .hero-social-proof .hero-avatars .avatar:first-child {
  margin-left: 0;
}

.landing-hero .hero-social-proof .hero-proof-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  text-align: left;
}

.landing-hero .hero-social-proof .hero-proof-text strong {
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
}

/* Decorative floating elements */
.landing-hero .hero-decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  font-size: 3rem;
}

.landing-hero .hero-decoration:nth-child(1) {
  top: 15%;
  left: 8%;
  animation: bounce 4s ease-in-out infinite;
}

.landing-hero .hero-decoration:nth-child(2) {
  top: 25%;
  right: 10%;
  animation: bounce 4.5s ease-in-out 0.5s infinite;
}

.landing-hero .hero-decoration:nth-child(3) {
  bottom: 20%;
  left: 12%;
  animation: bounce 3.5s ease-in-out 1s infinite;
}

.landing-hero .hero-decoration:nth-child(4) {
  bottom: 15%;
  right: 8%;
  animation: bounce 5s ease-in-out 0.3s infinite;
}

/* Scroll indicator */
.landing-hero .hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-tertiary);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: fadeIn 0.5s ease 0.8s both;
}

.landing-hero .hero-scroll-indicator::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--text-tertiary), transparent);
  animation: pulse 2s ease-in-out infinite;
}


/* ============================================
   3. FEATURES SECTION
   ============================================ */

.landing-features {
  padding: var(--space-4xl) var(--space-xl);
  background-color: var(--bg-primary);
}

.landing-features .features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.landing-features .features-header .section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.landing-features .features-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-md) 0;
}

.landing-features .features-header p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.landing-features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: var(--container-xl);
  margin: 0 auto;
}

.landing-features .feature-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  transition:
    transform var(--transition-spring),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.landing-features .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary-light);
}

.landing-features .feature-card .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background-color: var(--accent-primary-light);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
  transition: background-color var(--transition-base);
}

.landing-features .feature-card:hover .feature-icon {
  background-color: var(--accent-primary);
  color: var(--text-on-accent);
}

.landing-features .feature-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--leading-snug);
}

.landing-features .feature-card p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}


/* ============================================
   4. HOW IT WORKS
   ============================================ */

.landing-how-it-works {
  padding: var(--space-4xl) var(--space-xl);
  background-color: var(--bg-warm);
}

.landing-how-it-works .hiw-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.landing-how-it-works .hiw-header .section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.landing-how-it-works .hiw-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-md) 0;
}

.landing-how-it-works .hiw-header p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.landing-how-it-works .hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: var(--container-lg);
  margin: 0 auto;
  position: relative;
}

.landing-how-it-works .hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 280px;
  position: relative;
  padding: 0 var(--space-lg);
}

/* Connecting line between steps */
.landing-how-it-works .hiw-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -10%;
  width: 20%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-primary) 0%,
    var(--accent-cta) 100%
  );
  opacity: 0.3;
}

.landing-how-it-works .hiw-step .step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-cta));
  color: var(--text-on-accent);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(198, 123, 92, 0.25);
}

.landing-how-it-works .hiw-step .step-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.landing-how-it-works .hiw-step h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin: 0 0 var(--space-sm) 0;
}

.landing-how-it-works .hiw-step p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}


/* ============================================
   5. PRICING SECTION
   ============================================ */

.landing-pricing {
  padding: var(--space-4xl) var(--space-xl);
  background-color: var(--bg-primary);
}

.landing-pricing .pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.landing-pricing .pricing-header .section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.landing-pricing .pricing-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-md) 0;
}

.landing-pricing .pricing-header p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Toggle for annual/monthly */
.landing-pricing .pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.landing-pricing .pricing-toggle span {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.landing-pricing .pricing-toggle span.active {
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
}

.landing-pricing .pricing-toggle .pricing-save-badge {
  padding: 0.125rem 0.5rem;
  background-color: var(--accent-success-light);
  color: var(--accent-success);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-full);
}

.landing-pricing .pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: var(--container-lg);
  margin: 0 auto;
  align-items: stretch;
}

/* Override pricing-card featured for landing page context */
.landing-pricing .pricing-cards .pricing-card.featured {
  border-color: var(--accent-cta);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(202, 138, 4, 0.15);
}


/* ============================================
   6. TESTIMONIALS
   ============================================ */

.landing-testimonials {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-warm);
  overflow: hidden;
}

.landing-testimonials .testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
  padding: 0 var(--space-xl);
}

.landing-testimonials .testimonials-header .section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.landing-testimonials .testimonials-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  line-height: var(--leading-tight);
  margin: 0;
}

.landing-testimonials .testimonials-track {
  display: flex;
  gap: var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--space-sm) var(--space-xl);
}

.landing-testimonials .testimonials-track::-webkit-scrollbar {
  display: none;
}

.landing-testimonials .testimonial-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background-color: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: box-shadow var(--transition-base);
}

.landing-testimonials .testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.landing-testimonials .testimonial-card .testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--accent-cta);
  font-size: var(--text-lg);
}

.landing-testimonials .testimonial-card .testimonial-quote {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
  margin: 0;
  flex: 1;
  font-style: italic;
}

.landing-testimonials .testimonial-card .testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--accent-primary);
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 4px;
}

.landing-testimonials .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.landing-testimonials .testimonial-card .testimonial-author .avatar {
  width: 44px;
  height: 44px;
}

.landing-testimonials .testimonial-card .testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.landing-testimonials .testimonial-card .testimonial-author-info .testimonial-name {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
}

.landing-testimonials .testimonial-card .testimonial-author-info .testimonial-role {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}


/* ============================================
   7. FAQ SECTION
   ============================================ */

.landing-faq {
  padding: var(--space-4xl) var(--space-xl);
  background-color: var(--bg-primary);
}

.landing-faq .faq-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.landing-faq .faq-header .section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.landing-faq .faq-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-md) 0;
}

.landing-faq .faq-header p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.landing-faq .faq-list {
  max-width: 740px;
  margin: 0 auto;
}

/* Leverages .accordion, .accordion-item, etc. from components.css */
.landing-faq .accordion {
  border: none;
  background: none;
  gap: var(--space-sm);
  display: flex;
  flex-direction: column;
}

.landing-faq .accordion .accordion-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

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

.landing-faq .accordion .accordion-item.open {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-sm);
}

.landing-faq .accordion .accordion-item:last-child {
  border-bottom: 1px solid var(--border);
}

.landing-faq .accordion .accordion-item.open:last-child {
  border-bottom-color: var(--accent-primary);
}

.landing-faq .accordion .accordion-trigger {
  padding: var(--space-lg) var(--space-xl);
  font-size: var(--text-lg);
  background-color: transparent;
}

.landing-faq .accordion .accordion-content-inner {
  padding: 0 var(--space-xl) var(--space-lg) var(--space-xl);
}


/* ============================================
   8. CTA BANNER
   ============================================ */

.landing-cta-banner {
  padding: var(--space-4xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;

  /* Warm gradient background */
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(198, 123, 92, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(202, 138, 4, 0.1) 0%, transparent 70%),
    linear-gradient(135deg, #3D2E1F 0%, #2D2014 50%, #3D2E1F 100%);
}

.landing-cta-banner .cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.landing-cta-banner h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--text-inverse);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-md) 0;
}

.landing-cta-banner p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(245, 240, 225, 0.7);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-xl) 0;
}

.landing-cta-banner .btn-primary {
  font-size: var(--text-lg);
  padding: 0.875rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px rgba(202, 138, 4, 0.4);
}

.landing-cta-banner .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(202, 138, 4, 0.5);
  transform: translateY(-2px);
}


/* ============================================
   9. FOOTER
   ============================================ */

.landing-footer {
  background-color: #2D2014;
  color: var(--text-inverse);
  padding: var(--space-3xl) var(--space-xl) var(--space-xl);
}

.landing-footer .footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-3xl);
  max-width: var(--container-xl);
  margin: 0 auto;
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(245, 240, 225, 0.1);
}

.landing-footer .footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  text-decoration: none;
}

.landing-footer .footer-brand .footer-logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--text-inverse);
}

.landing-footer .footer-brand .footer-logo img {
  height: 32px;
  width: auto;
}

.landing-footer .footer-brand .footer-tagline {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(245, 240, 225, 0.6);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-lg) 0;
  max-width: 300px;
}

.landing-footer .footer-brand .footer-social {
  display: flex;
  gap: var(--space-sm);
}

.landing-footer .footer-brand .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(245, 240, 225, 0.08);
  color: rgba(245, 240, 225, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  text-decoration: none;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.landing-footer .footer-brand .footer-social a:hover {
  background-color: var(--accent-primary);
  color: var(--text-on-accent);
  transform: translateY(-2px);
}

.landing-footer .footer-column h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text-inverse);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 var(--space-lg) 0;
}

.landing-footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.landing-footer .footer-column ul li a {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(245, 240, 225, 0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.landing-footer .footer-column ul li a:hover {
  color: var(--accent-primary);
}

/* Newsletter input in footer */
.landing-footer .footer-newsletter {
  margin-top: var(--space-xl);
}

.landing-footer .footer-newsletter .newsletter-form {
  display: flex;
  gap: var(--space-sm);
}

.landing-footer .footer-newsletter .newsletter-form input {
  flex: 1;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-inverse);
  background-color: rgba(245, 240, 225, 0.08);
  border: 1px solid rgba(245, 240, 225, 0.15);
  border-radius: var(--radius-md);
  padding: 0.625rem 1rem;
  outline: none;
  transition:
    border-color var(--transition-base),
    background-color var(--transition-base);
}

.landing-footer .footer-newsletter .newsletter-form input::placeholder {
  color: rgba(245, 240, 225, 0.4);
}

.landing-footer .footer-newsletter .newsletter-form input:focus {
  border-color: var(--accent-primary);
  background-color: rgba(245, 240, 225, 0.12);
}

.landing-footer .footer-newsletter .newsletter-form button {
  padding: 0.625rem 1.25rem;
  background-color: var(--accent-cta);
  color: var(--text-on-accent);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.landing-footer .footer-newsletter .newsletter-form button:hover {
  background-color: var(--accent-cta-hover);
  transform: translateY(-1px);
}

.landing-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  max-width: var(--container-xl);
  margin: var(--space-xl) auto 0;
}

.landing-footer .footer-bottom .footer-copyright {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245, 240, 225, 0.4);
}

.landing-footer .footer-bottom .footer-legal {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.landing-footer .footer-bottom .footer-legal a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245, 240, 225, 0.4);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.landing-footer .footer-bottom .footer-legal a:hover {
  color: rgba(245, 240, 225, 0.8);
}


/* ============================================
   RESPONSIVE: Tablet (768px)
   ============================================ */

@media (max-width: 1023px) {
  /* Nav */
  .landing-nav .nav-links {
    display: none;
  }

  .landing-nav .nav-mobile-toggle {
    display: flex;
  }

  /* Features: 2 columns */
  .landing-features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing: stack */
  .landing-pricing .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .landing-pricing .pricing-cards .pricing-card.featured {
    transform: scale(1);
  }

  /* How it works */
  .landing-how-it-works .hiw-steps {
    gap: var(--space-xl);
  }

  .landing-how-it-works .hiw-step:not(:last-child)::after {
    display: none;
  }

  /* Footer */
  .landing-footer .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .landing-footer .footer-brand {
    grid-column: 1 / -1;
  }

  /* Testimonial cards */
  .landing-testimonials .testimonial-card {
    flex: 0 0 300px;
  }
}


/* ============================================
   RESPONSIVE: Mobile (375px)
   ============================================ */

@media (max-width: 767px) {
  /* Nav */
  .landing-nav {
    padding: var(--space-sm) var(--space-md);
  }

  .landing-nav .nav-cta {
    display: none;
  }

  /* Hero */
  .landing-hero {
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
    min-height: 90vh;
  }

  .landing-hero .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .landing-hero .hero-subtitle {
    font-size: var(--text-base);
  }

  .landing-hero .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .landing-hero .hero-actions .btn-primary,
  .landing-hero .hero-actions .btn-secondary {
    width: 100%;
  }

  .landing-hero .hero-social-proof {
    flex-direction: column;
  }

  .landing-hero .hero-social-proof .hero-proof-text {
    text-align: center;
  }

  .landing-hero .hero-decoration {
    display: none;
  }

  /* Features: 1 column */
  .landing-features {
    padding: var(--space-3xl) var(--space-md);
  }

  .landing-features .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .landing-features .features-header h2 {
    font-size: var(--text-2xl);
  }

  /* How it works: vertical */
  .landing-how-it-works {
    padding: var(--space-3xl) var(--space-md);
  }

  .landing-how-it-works .hiw-steps {
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
  }

  .landing-how-it-works .hiw-step {
    max-width: 100%;
    padding: 0;
  }

  .landing-how-it-works .hiw-step:not(:last-child)::after {
    display: none;
  }

  .landing-how-it-works .hiw-header h2 {
    font-size: var(--text-2xl);
  }

  /* Pricing */
  .landing-pricing {
    padding: var(--space-3xl) var(--space-md);
  }

  .landing-pricing .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .landing-pricing .pricing-header h2 {
    font-size: var(--text-2xl);
  }

  /* Testimonials */
  .landing-testimonials {
    padding: var(--space-3xl) 0;
  }

  .landing-testimonials .testimonials-header h2 {
    font-size: var(--text-2xl);
  }

  .landing-testimonials .testimonial-card {
    flex: 0 0 280px;
    padding: var(--space-lg);
  }

  .landing-testimonials .testimonials-track {
    padding: var(--space-sm) var(--space-md);
  }

  /* FAQ */
  .landing-faq {
    padding: var(--space-3xl) var(--space-md);
  }

  .landing-faq .faq-header h2 {
    font-size: var(--text-2xl);
  }

  .landing-faq .accordion .accordion-trigger {
    padding: var(--space-md);
    font-size: var(--text-base);
  }

  .landing-faq .accordion .accordion-content-inner {
    padding: 0 var(--space-md) var(--space-md) var(--space-md);
  }

  /* CTA Banner */
  .landing-cta-banner {
    padding: var(--space-3xl) var(--space-md);
  }

  .landing-cta-banner h2 {
    font-size: var(--text-2xl);
  }

  .landing-cta-banner .btn-primary {
    width: 100%;
  }

  /* Footer */
  .landing-footer {
    padding: var(--space-2xl) var(--space-md) var(--space-lg);
  }

  .landing-footer .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .landing-footer .footer-newsletter .newsletter-form {
    flex-direction: column;
  }

  .landing-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .landing-footer .footer-bottom .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}


/* ============================================
   HERO STATS BAR
   ============================================ */

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-xl);
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--accent-primary);
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

@media (max-width: 480px) {
  .hero-stats {
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
  }
  .hero-stat-number {
    font-size: var(--text-lg);
  }
}


/* ============================================
   APP PREVIEW SECTION
   ============================================ */

.landing-app-preview {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--bg-main);
}

.app-preview-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.app-preview-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-primary);
  margin: var(--space-sm) 0;
}

.app-preview-header p {
  font-size: var(--text-md);
  color: var(--text-secondary);
}

.app-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.app-preview-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.app-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.app-preview-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.app-preview-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.app-preview-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.app-preview-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xxs);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--accent-primary);
  text-decoration: none;
  transition: gap var(--transition-fast);
}

.app-preview-link:hover {
  gap: var(--space-xs);
}

@media (max-width: 768px) {
  .landing-app-preview {
    padding: var(--space-2xl) var(--space-md);
  }
  .app-preview-grid {
    grid-template-columns: 1fr;
  }
}
