/*
 * SinavBox Landing Page Responsive Styles
 * Mobile-first responsive design
 */

/* ===== TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  :root {
    --text-5xl: 42px;
    --text-4xl: 36px;
    --text-3xl: 28px;
  }
  
  .container {
    padding: 0 var(--space-xl);
  }
  
  .hero__container {
    gap: var(--space-4xl);
  }
  
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
  
  .how-it-works__steps::before {
    display: none;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
  
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4xl);
  }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
  :root {
    --text-5xl: 32px;
    --text-4xl: 28px;
    --text-3xl: 24px;
    --text-lg: 16px;
    --space-8xl: 80px;
    --space-6xl: 60px;
  }
  
  /* Navigation */
  .landing-nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: var(--space-2xl);
    flex-direction: column;
    gap: var(--space-xl);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }
  
  .landing-nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .landing-nav__toggle {
    display: block;
  }
  
  .landing-nav__actions {
    gap: var(--space-md);
  }
  
  /* Hero */
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero__container {
    grid-template-columns: 1fr;
    gap: var(--space-4xl);
  }
  
  .hero__content {
    text-align: center;
  }
  
  .hero__title {
    font-size: var(--text-4xl);
  }
  
  .hero__subtitle {
    max-width: 100%;
  }
  
  .hero__ctas {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .hero__ctas .btn {
    width: 100%;
  }
  
  .hero__trust {
    justify-content: center;
  }
  
  .hero__illustration {
    order: -1;
  }
  
  /* Features */
  .features {
    padding: var(--space-6xl) 0;
  }
  
  .features__grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: var(--space-3xl);
  }
  
  /* How It Works */
  .how-it-works {
    padding: var(--space-6xl) 0;
  }
  
  .how-it-works__steps {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
  
  .step__number {
    width: 56px;
    height: 56px;
    font-size: var(--text-2xl);
  }
  
  /* Social Proof */
  .social-proof {
    padding: var(--space-6xl) 0;
  }
  
  .stats {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .stat-card__value {
    font-size: var(--text-4xl);
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  
  .logos__grid {
    gap: var(--space-2xl);
  }
  
  /* CTA */
  .cta {
    padding: var(--space-6xl) 0;
  }
  
  .cta__title {
    font-size: var(--text-4xl);
  }
  
  .cta__buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .cta__buttons .btn {
    width: 100%;
  }
  
  .cta__trust {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  /* Footer */
  .footer {
    padding: var(--space-4xl) 0 var(--space-2xl);
  }
  
  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
  
  .footer__brand {
    max-width: 100%;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-xl);
    text-align: center;
  }
  
  .footer__bottom-right {
    flex-direction: column;
    gap: var(--space-md);
  }
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
  :root {
    --text-5xl: 28px;
    --text-4xl: 24px;
    --space-2xl: 16px;
    --space-3xl: 24px;
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
  
  .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-sm);
  }
  
  .btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-base);
  }
  
  .hero__title {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .feature-card {
    padding: var(--space-2xl);
  }
  
  .stat-card {
    padding: var(--space-2xl) var(--space-xl);
  }
}
