/* ============================================
   Responsive Styles
   ============================================ */

/* Tablet (640px - 1024px) */
@media (max-width: 1024px) {
  :root {
    --page-margin: 32px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 28px;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-grid {
    gap: var(--space-8);
  }

  .about-grid {
    gap: var(--space-8);
  }

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

  .export-stats {
    gap: var(--space-6);
  }
}

/* Mobile (< 640px) */
@media (max-width: 640px) {
  :root {
    --page-margin: 20px;
    --nav-height: var(--nav-height-mobile);
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .section {
    padding: var(--space-9) 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: var(--space-6);
  }

  /* Navigation */
  .nav-menu,
  .nav-actions .lang-switcher {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .navbar.scrolled .nav-toggle span {
    background-color: var(--color-text-primary);
  }

  .nav-toggle span {
    background-color: white;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + var(--space-8)) 0 var(--space-10);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: var(--space-5);
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: var(--space-6);
  }

  .hero-visual {
    display: none;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-intro {
    font-size: 16px;
  }

  .about-visual {
    display: none;
  }

  .feature-item {
    gap: var(--space-4);
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .about-export {
    padding: var(--space-6);
  }

  .export-stats {
    justify-content: center;
    gap: var(--space-8);
  }

  .stat-number {
    font-size: 28px;
  }

  /* Business */
  .business-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-bottom: var(--space-10);
  }

  .business-card {
    padding: var(--space-6);
  }

  .card-icon {
    width: 48px;
    height: 48px;
  }

  .card-icon svg {
    width: 24px;
    height: 24px;
  }

  .brands-grid {
    gap: var(--space-3);
  }

  .brand-tag {
    padding: var(--space-2) var(--space-4);
    font-size: 13px;
  }

  /* Contact */
  .contact {
    min-height: auto;
  }

  .contact-overlay {
    padding: var(--space-8) var(--page-margin);
    min-height: auto;
  }

  .contact-card {
    max-width: 100%;
    padding: var(--space-6);
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: var(--space-6);
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-5);
  }

  /* Modal */
  .modal-overlay {
    padding: var(--space-4);
    align-items: flex-end;
  }

  .modal {
    max-height: calc(100vh - var(--space-8));
    padding: var(--space-6);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .modal-header h3 {
    font-size: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .radio-group {
    flex-direction: column;
    gap: var(--space-3);
  }

  /* Buttons */
  .btn {
    height: 44px;
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Small Mobile (< 380px) */
@media (max-width: 380px) {
  h1 {
    font-size: 28px;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .export-stats {
    flex-direction: column;
    gap: var(--space-5);
  }

  .stat-item {
    text-align: left;
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }

  .stat-number {
    font-size: 24px;
  }
}

/* Large Desktop (> 1440px) */
@media (min-width: 1440px) {
  :root {
    --content-max-width: 1400px;
  }

  .hero-title {
    font-size: 72px;
  }
}
