/* layout.css */
/* Page-level layout structure — container, section spacing, main element */
/* No component internals. No section-specific styles. */

/* ============================================================
   MAIN
   ============================================================ */

main {
  overflow-x: visible;
}

/* ============================================================
   CONTAINER
   ============================================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-12);
  }
}

/* ============================================================
   PAGE SECTIONS — VERTICAL SPACING
   Mobile first — scale up at tablet and desktop
   Hero excluded — full viewport height, handled in hero.css
   ============================================================ */

.services,
.reviews,
.trial,
.faq,
.journey,
.footer {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .services,
  .reviews,
  .trial,
  .faq,
  .journey,
  .footer {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }
}

@media (min-width: 1024px) {
  .services,
  .reviews,
  .trial,
  .faq,
  .journey,
  .footer {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }
}

/* ============================================================
   SECTION HEADINGS — CENTERED
   ============================================================ */

.section__heading {
  text-align: center;
  margin-bottom: var(--space-8);
}

@media (min-width: 1024px) {
  .section__heading {
    margin-bottom: var(--space-12);
  }
}

.hero {
  overflow-x: hidden;
}