/* =============================================
   SABINE TECHNOLOGY — application.css
   Page-specific styles for the Application page
   ============================================= */

/* =============================================
   SHARED SECTION BASE
   ============================================= */
.app-section {
  padding: 70px 0 80px;
}

.app-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Two-column grid: text left, image right (default) */
.app-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Flip: image left, text right */
.app-two-col--img-left {
  grid-template-columns: 1fr 1fr;
}

/* Text-heavy: text takes ~60%, image ~40% */
.app-two-col--text-heavy {
  grid-template-columns: 1fr 420px;
  gap: 60px;
}

/* =============================================
   SECTION BACKGROUNDS
   ============================================= */

/* Section 1 — muted lavender-grey */
.app-section--grey {
  background: #bbb8cc;
}

/* Section 2 — steel blue */
.app-section--blue {
  background: #84b8d4;
}

/* Section 3 — sage green */
.app-section--green {
  background: #a8c49e;
  padding-bottom: 90px;
}

/* =============================================
   HEADINGS
   ============================================= */
.app-heading {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.25;
  margin-bottom: 18px;
}

/* =============================================
   BODY TEXT
   ============================================= */
.app-text p {
  font-family: 'Lato', sans-serif;
  font-size: 0.97rem;
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 28px;
}

.app-text p:last-child {
  margin-bottom: 0;
}

/* =============================================
   BULLET LIST (Section 2)
   ============================================= */
.app-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-bullets li {
  font-family: 'Lato', sans-serif;
  font-size: 0.97rem;
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}

.app-bullets li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  line-height: 1.55;
  color: #1a1a2e;
}

/* =============================================
   IMAGES
   ============================================= */
.app-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}

/* Image in section 3 — pinned to top, doesn't stretch with text */
.app-image--top {
  align-self: start;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .app-container {
    padding: 0 24px;
  }

  .app-two-col,
  .app-two-col--img-left,
  .app-two-col--text-heavy {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* On mobile, put image after text for img-left layout */
  .app-two-col--img-left .app-image {
    order: 2;
  }
  .app-two-col--img-left .app-text {
    order: 1;
  }
}