/* ==========================================================================
   Business Ready Theme - Responsive Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tablet (1100px and below)
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }

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

  /* Header */
  .mobile-menu-toggle {
    display: flex;
    order: 3;
  }

  .main-nav {
    order: 4;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    width: 100%;
    gap: 0;
    background-color: var(--color-white);
    padding: var(--spacing-md) 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .header-cta {
    order: 2;
  }

  /* Hero Section */
  .hero-section {
    padding: var(--spacing-xl) 0;
  }

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

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-features {
    font-size: 16px;
  }

  /* Grids */
  .steps-grid,
  .benefits-grid,
  .included-grid,
  .target-grid,
  .guarantees-grid,
  .examples-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Mobile (480px and below)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  /* Typography */
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }

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

  /* Container */
  .container {
    padding: 0 var(--spacing-sm);
  }

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

  .btn-large {
    padding: 14px 32px;
    font-size: 16px;
  }

  /* Spacing */
  .hero-section,
  .steps-section,
  .benefits-section,
  .included-section,
  .target-section,
  .guarantees-section,
  .examples-section,
  .faq-section,
  .order-section,
  .privacy-page {
    padding: var(--spacing-lg) 0;
  }

  /* Header */
  .logo img {
    max-height: 40px;
  }

  .logo-text {
    font-size: 20px;
  }

  .header-cta .btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  /* Hero */
  .hero-features li {
    font-size: 16px;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  /* Form */
  .order-form {
    padding: var(--spacing-md);
  }

  .form-group input[type="text"],
  .form-group input[type="tel"],
  .form-group input[type="email"] {
    padding: 10px 12px;
    font-size: 14px;
  }
}

/* --------------------------------------------------------------------------
   Large Screens (1400px and above)
   -------------------------------------------------------------------------- */
@media (min-width: 1400px) {
  :root {
    --container-width: 1320px;
  }

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

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

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .site-footer,
  .hero-cta,
  .order-section,
  .mobile-menu-toggle {
    display: none;
  }

  * {
    background: white !important;
    color: black !important;
  }
}
