/* --- Responsive Styles --- */

/* Tablet */
@media (max-width: 1024px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-content {
    flex-direction: column;
    gap: 64px;
    text-align: center;
  }

  .waitlist-form {
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    max-width: 448px;
    height: auto;
    aspect-ratio: 448 / 600;
  }

  .how-it-works-content {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .steps {
    width: 100%;
    max-width: 500px;
    flex: none;
  }

  .step {
    width: 100%;
  }

  .space-images,
  .publish-space-component,
  .booking-request-component,
  .success-component,
  .payout-component,
  .lady-at-home-component {
    width: 100%;
    max-width: 500px;
  }

  .feature-cards {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .title {
    font-size: 40px;
    letter-spacing: -2.04px;
  }

  .subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .waitlist-form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .waitlist-form input,
  .waitlist-form select,
  .waitlist-form button {
    flex: 1 0 auto;
    min-width: 0;
    border-radius: 16px;
  }

  .waitlist-form input,
  .waitlist-form select {
    box-shadow: 0px 1.5px 4px -1px rgba(10, 9, 11, 0.07);
    border-color: var(--global-neutral-grey-500);
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 0px;
  }

  .how-it-works .container,
  .features .container,
  .faq .container,
  .final-cta .container {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .how-it-works-content,
  .feature-cards {
    width: 100%;
    gap: 32px;
  }

  .how-it-works-content .step.active {
    background-color: var(--global-base-white);
    box-shadow: 0px 16px 24px -6px rgba(10, 9, 11, 0.08), 0px 0px 3px -1px rgba(10, 9, 11, 0.04);
  }

  .how-it-works-content .space-images {
    grid-template-columns: 1fr;
    max-width: none;
    width: 100%;
  }

  .how-it-works-content .image-card {
    height: 240px;
  }

  .lady-at-home-component {
    min-height: 450px;
    flex: none;
    background-position: center 40%;
    border-radius: 24px;
  }

  .success-component,
  .publish-space-component,
  .booking-request-component,
  .payout-component {
    border-radius: 40px;
  }

  .cta-content {
    padding: 80px 16px;
  }

  .cta-content h2,
  .cta-content p {
    width: 100%;
  }

  .faq-item {
    padding: 16px 20px;
  }

  .final-cta-content {
    gap: 24px;
  }

  footer .container {
    padding: 40px 16px;
    gap: 32px;
    flex-direction: column;
  }

  .navbar-content {
    display: flex;
    padding: 24px 0;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
  }

  .logo {
    width: 175px;
    height: 32px;
  }

  .hero-content {
    text-align: left;
  }

  .tagline {
    align-self: stretch;
    font-size: 14px;
    font-weight: 550;
    line-height: 20px;
    letter-spacing: -0.02px;
  }
} 