/* ===== Responsive Breakpoints ===== */

/* Large desktop */
@media (max-width: 1200px) {
  .wd-container,
  .wd-header-inner,
  .wd-hero-inner,
  .wd-steps-grid,
  .wd-stats-content,
  .wd-cities-grid,
  .wd-testimonials-grid,
  .wd-faq-content,
  .wd-footer-inner,
  .wd-footer-bottom {
    max-width: 960px;
  }

  .wd-footer-inner {
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 1.5rem;
  }
}

/* Tablet landscape */
@media (max-width: 992px) {
  .wd-container,
  .wd-header-inner,
  .wd-hero-inner,
  .wd-steps-grid,
  .wd-stats-content,
  .wd-cities-grid,
  .wd-testimonials-grid,
  .wd-faq-content,
  .wd-footer-inner,
  .wd-footer-bottom {
    max-width: 720px;
  }

  /* Grid responsive classes */
  .wd-col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .wd-col-md-12 { flex: 0 0 100%; max-width: 100%; }

  /* Hero */
  .wd-hero-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .wd-hero-ctas {
    max-width: 400px;
    margin: 0 auto;
  }

  .wd-hero-bullets {
    display: inline-block;
    text-align: left;
  }

  .wd-hero-image {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Stats */
  .wd-stats-content {
    flex-direction: column;
    text-align: center;
  }

  .wd-stats-text {
    max-width: 100%;
  }

  .wd-stats-grid {
    justify-items: center;
    max-width: 500px;
    margin: 0 auto;
  }

  .wd-stat-item {
    text-align: center;
  }

  /* Testimonials */
  .wd-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Cities */
  .wd-cities-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  /* FAQ */
  .wd-faq-content {
    flex-direction: column;
  }

  .wd-contact-widget {
    width: 100%;
    position: static;
  }

  /* Footer */
  .wd-footer-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .wd-footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .wd-container,
  .wd-header-inner,
  .wd-hero-inner,
  .wd-steps-grid,
  .wd-stats-content,
  .wd-cities-grid,
  .wd-testimonials-grid,
  .wd-faq-content,
  .wd-footer-inner,
  .wd-footer-bottom {
    max-width: 540px;
  }

  /* Grid responsive classes */
  .wd-col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .wd-col-sm-12 { flex: 0 0 100%; max-width: 100%; }

  /* Header - show mobile toggle, hide desktop nav */
  .wd-mobile-toggle {
    display: flex;
  }

  .wd-nav {
    display: none;
  }

  /* Hero */
  .wd-hero {
    padding-top: calc(var(--wd-header-height) + 2rem);
    padding-bottom: 3rem;
  }

  .wd-hero-content h1 {
    font-size: 2rem;
  }

  /* How it works */
  .wd-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .wd-step-card {
    width: auto;
  }

  .wd-step-image {
    width: 120px;
    height: 120px;
  }

  /* Testimonials */
  .wd-testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Footer */
  .wd-footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

  /* Sections */
  .wd-section {
    padding: var(--wd-section-padding-sm);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .wd-container,
  .wd-header-inner,
  .wd-hero-inner,
  .wd-steps-grid,
  .wd-stats-content,
  .wd-cities-grid,
  .wd-testimonials-grid,
  .wd-faq-content,
  .wd-footer-inner,
  .wd-footer-bottom {
    max-width: 100%;
    padding: 0 1rem;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }

  .wd-section {
    padding: 2.5rem 0;
  }

  /* Hero */
  .wd-hero-content h1 {
    font-size: 1.75rem;
  }

  .wd-hero-subtitle {
    font-size: 1rem;
  }

  .wd-hero-ctas {
    max-width: 100%;
  }

  .wd-hero-ctas-row {
    flex-direction: column;
  }

  /* How it works */
  .wd-steps-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }

  /* Stats */
  .wd-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .wd-stat-number {
    font-size: 1.75rem;
  }

  /* Cities */
  .wd-cities-grid {
    grid-template-columns: 1fr;
  }

  .wd-city-card-image {
    height: 200px;
  }

  /* Footer */
  .wd-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wd-footer-social {
    justify-content: center;
  }

  /* Contact widget */
  .wd-contact-widget-inner {
    padding: 1.5rem;
  }
}
