/* ==============================
   FLOW PAGE STYLES
   ============================== */

/* --- Page Hero (Content Header) --- */
.tt-page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--color-blue-gray) 0%, var(--color-light-yellow) 100%);
  text-align: center;
}

.tt-page-hero__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-black);
  margin-top: 8px;
  margin-bottom: 16px;
}

.tt-page-hero__desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.7;
}

/* --- Service Flow Section --- */
.tt-flow-services {
  padding: 80px 0 100px;
  background: var(--color-white);
}

.tt-flow-services__cards {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
}

/* Service card base (reused from top) */
.tt-service-card--flow {
  width: 520px;
}

/* Flow Detail (day-of steps within service card) */
.tt-flow-detail {
  width: 100%;
  padding-top: 24px;
  border-top: 2px dashed var(--color-light-blue);
}

.tt-flow-detail__heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-main);
  margin-bottom: 20px;
  text-align: center;
}

.tt-flow-detail--green .tt-flow-detail__heading {
  color: var(--color-green);
}

.tt-flow-detail__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tt-flow-detail__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--color-blue-gray);
  border-radius: 16px;
}

.tt-flow-detail--green .tt-flow-detail__item {
  background: #F0FAF9;
}

.tt-flow-detail__step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-main);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-english);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.tt-flow-detail--green .tt-flow-detail__step {
  background: var(--color-green);
}

.tt-flow-detail__content {
  flex: 1;
}

.tt-flow-detail__title {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 4px;
}

.tt-flow-detail__desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-black);
  opacity: 0.8;
  line-height: 1.5;
}

/* ==============================
   RESPONSIVE: Tablet (768px)
   ============================== */
@media (max-width: 768px) {
  .tt-page-hero {
    padding: 100px 0 40px;
  }

  .tt-page-hero__title {
    font-size: 28px;
  }

  .tt-flow-services__cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .tt-service-card--flow {
    width: 100%;
  }

  .tt-service-card--flow {
    padding: 24px;
  }
}

/* ==============================
   RESPONSIVE: Mobile (480px)
   ============================== */
@media (max-width: 480px) {
  .tt-page-hero {
    padding: 80px 0 32px;
  }

  .tt-page-hero__title {
    font-size: 24px;
  }

  .tt-flow-detail__item {
    padding: 12px;
    gap: 12px;
  }
}
