/* ===================================================
   SECTION: HERO (STORYTELLING) - CẬP NHẬT
   =================================================== */
.hero {
  /* Tăng padding dọc (py) để phần content rộng rãi hơn */
  padding: 100px 0; 
  background-color: #ffffff;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px; /* Tăng gap giữa 2 cột */
  align-items: center;
}

/* Content Left */
.hero__content {
  /* Thêm py cho content block để thoáng hơn nữa */
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero__wordmark {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-sun) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px; /* Tăng khoảng cách */
}

.hero__title {
  /* Tăng cỡ chữ tiêu đề lớn và rõ hơn */
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px; /* Tăng khoảng cách */
  line-height: 1.25; /* Điều chỉnh line-height */
}

.hero__desc {
  font-size: 16px; /* Tăng nhẹ cỡ chữ */
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 520px;
  margin-bottom: 40px; /* Tăng khoảng cách */
}

/* Actions */
.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px; /* Tăng khoảng cách lớn hơn trước phần Facts */
}

/* Tùy chỉnh nút */
.hero__actions .btn-primary {
  background-color: var(--color-secondary);
}

.hero__actions .btn-primary:hover {
  background-color: #2e8b43;
  color: #ffffff;
}

.hero__actions .btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.hero__actions .btn-secondary:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* Facts - CẬP NHẬT: Thêm line phân biệt */
.hero__facts {
  display: flex;
  justify-content: space-between; /* Rải đều ra 2 bên */
  align-items: center;
  width: 100%;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

.hero__fact {
  display: flex;
  flex-direction: column;
  align-items: center; /* Căn giữa nội dung từng item */
  text-align: center;
  flex: 1; /* Chia đều chiều rộng cho 4 cột */
  border-left: 1px solid #e5e7eb; /* Đường kẻ giữa các item */
}

/* Reset line cho item đầu tiên */
.hero__fact:first-child {
  border-left: none; /* Bỏ đường kẻ cột đầu tiên */
}

.hero__fact:last-child {
  padding-right: 0;
}

.hero__fact-value {
  font-size: 36px; /* Tăng từ 28px -> 36px */
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.hero__fact-label {
  font-size: 15px; /* Tăng từ 13px -> 15px */
  font-weight: 500;
  color: #4b5563; /* Màu xám đậm hơn chút cho rõ chữ */
}

/* Media Right */
.hero__media {
  display: flex;
  justify-content: center;
}

.hero__photo {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ===================================================
   RESPONSIVE (MOBILE & TABLET)
   =================================================== */

/* Tablet & Mobile chung (< 991px) */
@media (max-width: 991px) {
  .hero {
    padding: 40px 0;
  }

  .hero__grid {
    grid-template-columns: 1fr; /* Chuyển thành 1 cột */
    gap: 32px;
  }

  .hero__wordmark {
    font-size: 38px;
    margin-bottom: 12px;
  }

  .hero__title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .hero__desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

/* Mobile nhỏ (< 576px) - Xử lý theo hình chụp */
@media (max-width: 576px) {
  /* Cho nút xếp dọc trên mobile cho đẹp và không bị tràn */
  .hero__actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  /* Chuyển 4 fact thành lưới 2x2 để hiển thị đủ 90' */
  .hero__facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
    padding-top: 24px;
  }

  .hero__fact {
    border-left: none; /* Bỏ border cũ */
    padding: 0 10px;
  }

  /* Tạo vạch phân cách đứng cho cột 2 và 4 */
  .hero__fact:nth-child(even) {
    border-left: 1px solid #e5e7eb;
  }

  .hero__fact-value {
    font-size: 28px; /* Thu nhỏ số lại một chút cho vừa màn hình */
  }

  .hero__fact-label {
    font-size: 13px;
  }
}


/* ===================================================
   SECTION: ESSENCE
   =================================================== */
.essence {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 100px 0;
  overflow: hidden;
}

.essence__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Media Block (Trái) */
.essence__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.essence__photo {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Creative Badges */
.essence__badge {
  position: absolute;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  animation: badgeFloat 4s ease-in-out infinite alternate;
  z-index: 2;
}

/* Phân rã nhịp animation cho các badge sinh động hơn */
.essence__badge:nth-child(2) { animation-delay: 0s; }
.essence__badge:nth-child(3) { animation-delay: 1s; }
.essence__badge:nth-child(4) { animation-delay: 2s; }
.essence__badge:nth-child(5) { animation-delay: 3s; }

@keyframes badgeFloat {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-8px) scale(1.03);
  }
}

.essence__title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
}

/* Thêm điểm nhấn gạch chân gradient dưới tiêu đề */
.essence__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-sun));
  border-radius: 2px;
  margin-top: 16px;
}

.essence__desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85); /* Tăng độ tương phản chữ desc */
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .essence {
    padding: 60px 0;
  }

  .essence__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .essence__title {
    font-size: 28px;
  }

  .essence__desc {
    font-size: 16px;
  }

  .essence__badge {
    padding: 6px 14px;
    font-size: 11px;
  }
}

/* ===================================================
   RESPONSIVE BADGES TRÊN MOBILE
   =================================================== */
@media (max-width: 576px) {
  .essence__media {
    position: relative;
    display: block; /* Giữ nguyên layout chứa ảnh */
  }

  /* Thu nhỏ badge & giảm padding để vừa khung hình */
  .essence__badge {
    position: absolute !important; /* Bắt buộc nằm trong hình */
    padding: 4px 10px !important;
    font-size: 10px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  /* Cấu hình lại vị trí 4 góc tránh che khuôn mặt */
  .essence__badge:nth-child(2) { /* VOICE */
    top: 6% !important;
    left: 4% !important;
  }

  .essence__badge:nth-child(3) { /* FACE & EYES */
    top: 6% !important;
    right: 4% !important;
  }

  .essence__badge:nth-child(4) { /* BODY */
    bottom: 6% !important;
    left: 4% !important;
  }

  .essence__badge:nth-child(5) { /* PERFORMANCE */
    bottom: 6% !important;
    right: 4% !important;
  }
}


/* ===================================================
   SECTION: OUTCOMES (LAYOUT ĐƯỜNG KẺ THEO MẪU)
   =================================================== */
.outcomes {
  padding: 80px 0;
  background-color: #ffffff;
}

.outcomes__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 48px;
  text-align: center;
}

.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px; /* Gap ngang 60px, gap dọc dùng border điều chỉnh */
}

/* Định dạng từng dòng item */
.outcome {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid #e5e7eb; /* Đường kẻ ngang mỏng phía trên */
}

.outcome__num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}

.outcome__body {
  flex: 1;
}

.outcome__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.outcome__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-light);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .outcomes {
    padding: 50px 0;
  }

  .outcomes__title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .outcomes__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .outcome {
    padding: 20px 0;
  }

  .outcome__num {
    font-size: 28px;
    min-width: 36px;
  }
}

/* ===================================================
   SECTION: ROADMAP / LEVELS
   =================================================== */
.levels {
  padding: 100px 0;
  background-color: #f4f7fa;
}

.levels__head {
  text-align: center; /* Căn giữa toàn bộ nội dung tiêu đề */
  margin-bottom: 50px;
}

.eyebrow {
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
}

.levels__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 12px;
}

.levels__desc {
  font-size: 16px;
  color: var(--color-text-light);
  margin: 0;
}

/* Timeline Layout */
.levels__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Đường vạch nối trục lộ trình phía sau */
.levels__list::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-sun), var(--color-primary-light), var(--color-primary));
  z-index: 1;
}

.level {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.level:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.level__num {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
}

.level__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.level__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.level__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-light);
  margin: 0;
}

/* Responsive Mobile & Tablet */
@media (max-width: 991px) {
  .levels__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .levels__list::before {
    display: none; /* Bỏ vạch ngang trên tablet */
  }
}

@media (max-width: 576px) {
  .levels {
    padding: 60px 0;
  }

  .levels__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .level {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  .level__num {
    margin-bottom: 0;
    font-size: 32px;
  }
}


/* ===================================================
   SECTION: STORIES
   =================================================== */
.stories {
  padding: 100px 0;
  background-color: #fff;
}

/* Mở rộng max-width và tăng gap giữa 2 cột */
.stories__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; /* Tăng gap từ 40px lên 80px cho thoáng */
  align-items: center;
  max-width: 1040px;
  margin: 0 auto 80px;
}

/* Eyebrow Dot */
.eyebrow-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.eyebrow-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 50%;
}

/* Khối con số 48 */
.stories__number-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.stories__number {
  font-size: 80px; /* Con số 48 siêu to nổi bật */
  font-weight: 900;
  color: var(--color-secondary);
  line-height: 0.9;
  letter-spacing: -2px;
}

.stories__number-label {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.25;
}

/* Tăng nhẹ cỡ chữ mô tả */
.stories__desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 500px;
}

.stories__media {
  position: relative;
  display: flex;
  justify-content: center; /* Đã căn giữa theo ý anh */
}

.stories__photo {
  width: 280px;
  height: 280px;
  border-radius: 50%; /* Bo tròn dạng hình xịn xò */
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 4px solid #ffffff;
}

.stories__callout {
  position: absolute;
  top: 10px;
  right: 20px;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  max-width: 180px;
  z-index: 2;
}

.stories__callout::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 20px;
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: var(--color-primary) transparent;
}

/* ===================================================
   5 BƯỚC PROCESS FLOW
   =================================================== */
.stories__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  max-width: var(--container-max); /* Mở rộng tối đa chiều rộng khung */
  margin: 0 auto;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

/* Icon to nổi bật hơn */
.step__icon {
  width: 72px; /* Tăng từ 64px -> 72px */
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px; /* Tăng icon emoji */
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 4px solid #ffffff;
  transition: transform var(--transition-fast);
}

.step:hover .step__icon {
  transform: scale(1.15);
}

.step__title {
  font-size: 18px; /* Tăng từ 16px -> 18px */
  font-weight: 700;
  margin-bottom: 8px;
}
.step__sub {
  font-size: 14px; /* Tăng từ 13px -> 14px */
  color: #4b5563; /* Màu xám đậm hơn chút cho rõ chữ */
  line-height: 1.5;
  max-width: 220px; /* Khung rộng hơn cho chữ không bị bó hẹp */
}

/* Connector Căn chỉnh lại theo kích thước icon 72px */
.step__connector {
  position: absolute;
  top: 36px; /* 72px / 2 */
  right: 50%;
  width: 100%;
  height: 2px;
  border-top: 2px dashed #cbd5e1;
  z-index: -1;
}

/* Responsive */
@media (max-width: 991px) {
  .stories__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }

  .stories__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 20px;
  }

  .step__connector {
    display: none;
  }
}

@media (max-width: 576px) {
  .stories__steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }

  .step__icon {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .step__sub {
    max-width: 100%;
  }
}


/* ===================================================
   SECTION: LESSON (LIGHT & CREATIVE TIMELINE)
   =================================================== */
.lesson {
  padding: 100px 0;
  background-color: #f8fafc; /* Nền xám sáng vô cùng dịu mắt */
}

/* Header căn giữa */
.lesson__head {
  text-align: center;
  margin: 0 auto 60px;
}

.lesson__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.3;
  margin: 12px 0;
}

.lesson__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
}

/* Timeline Layout */
.lesson__timeline {
  max-width: 1000px; /* Cập nhật max-width 1000px theo ý anh */
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Đường trục dọc nối các bước (căn chính giữa cọc số) */
.lesson__timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 70px; /* 140px / 2 để dải nét đứt nằm đúng tâm cột số */
  width: 2px;
  border-left: 2px dashed #cbd5e1;
  z-index: 1;
}

.timeline__item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 140px 1fr; /* Cột 1: Meta số/thời gian, Cột 2: Nội dung */
  gap: 32px;
  align-items: center;
}

/* Khối số & Thời gian */
.timeline__meta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--phase-color);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--phase-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 8px;
}

.timeline__time-badge {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  background: #e2e8f0;
  padding: 3px 10px;
  border-radius: 20px;
}

/* Card Nội Dung */
.timeline__card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 36px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden; /* Cắt tràn các hình khối */
}

.timeline__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 5px;
  background: var(--phase-color);
  border-radius: 0 4px 4px 0;
}

.timeline__card:hover {
  transform: translateX(6px);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.07);
}

.timeline__card-content {
  flex: 1;
  z-index: 2; /* Đảm bảo chữ nổi lên trên khối mờ */
  padding-right: 20px;
}

.timeline__card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.timeline__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--phase-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.timeline__tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--phase-color);
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.timeline__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
}

/* List hoạt động */
.timeline__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timeline__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text-body);
}

.timeline__list li svg {
  color: var(--phase-color);
  flex-shrink: 0;
}

/* ===================================================
   CỘT PHẢI: KHỐI HÌNH HỌC NGHỆ THUẬT (ABSTRACT SHAPES)
   =================================================== */
.timeline__card-visual {
  position: relative;
  width: 220px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 20px;
  background: var(--phase-bg); /* Màu nền siêu nhẹ lấy từ var(--phase-bg) */
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  background: var(--phase-color);
  opacity: 0.18; /* Độ mờ vừa phải vô cùng dịu mắt */
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

/* Shape 1: Hình tròn */
.shape--circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  top: -20px;
  right: -20px;
}

/* Shape 2: Hình vuông bo góc */
.shape--square {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  bottom: -10px;
  left: 20px;
  transform: rotate(18deg);
}

/* Shape 3: Hình tam giác */
.shape--triangle {
  width: 55px;
  height: 55px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  top: 35px;
  right: 55px;
  transform: rotate(-15deg);
}

/* Đổi kiểu xếp hình khối cho từng Phase khác biệt */
.timeline__item:nth-child(2) .shape--circle {
  top: auto;
  bottom: -30px;
  right: 10px;
  width: 110px;
  height: 110px;
}

.timeline__item:nth-child(3) .shape--square {
  left: auto;
  right: -10px;
  top: 10px;
  transform: rotate(45deg);
}

/* Hiệu ứng Hover hình khối */
.timeline__card:hover .shape {
  opacity: 0.32;
}

.timeline__card:hover .shape--circle {
  transform: scale(1.12) translate(-6px, 6px);
}

.timeline__card:hover .shape--square {
  transform: rotate(30deg) scale(1.1);
}

.timeline__card:hover .shape--triangle {
  transform: rotate(0deg) scale(1.15);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 850px) {
  .timeline__card-visual {
    display: none; /* Tablet nhỏ & Mobile ẩn khối bên phải để tối ưu diện tích */
  }

  .timeline__card-content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .lesson {
    padding: 60px 0;
  }

  .lesson__timeline::before {
    left: 22px; /* Dời đường nét đứt sát lề trái */
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .timeline__meta {
    flex-direction: row;
    gap: 16px;
    justify-content: flex-start;
  }

  .timeline__num {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .timeline__card {
    padding: 20px 24px;
  }
}



/* ===================================================
   SECTION: PICTURES (FULL CONTAINER & CARDS LỚN)
   =================================================== */
.pictures {
  padding: 100px 0;
  background-color: #ffffff;
}

/* Grid chiếm trọn width container mặc định */
.pictures__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%; /* Dùng max-width mặc định của .container */
}

.pictures__title {
  font-size: 40px; /* Tăng kích thước tiêu đề */
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 18px;
}

.pictures__desc {
  font-size: 17px; /* Tăng cỡ chữ mô tả */
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 36px;
}

/* ---------------------------------------------------
   3 CARDS TRẢI FULL ĐỀU CỘT TRÁI (CHỮ & ICON TO)
   --------------------------------------------------- */
.pictures__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%; /* Bỏ max-width để trải dài đầy khung */
  margin-bottom: 36px;
}

.picture-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 18px; /* Tăng padding giúp card to hơn */
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.picture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.picture-card__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.picture-card__icon {
  font-size: 32px; /* Tăng icon to nổi bật */
  line-height: 1;
  margin-bottom: 12px;
}

.picture-card__title {
  font-size: 15px; /* Tăng tiêu đề card từ 13px -> 15px */
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.picture-card__desc {
  font-size: 13px; /* Tăng chữ mô tả card từ 12px -> 13px */
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* ---------------------------------------------------
   PILL BADGE BÊN DƯỚI
   --------------------------------------------------- */
.pictures__pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f1f5f9;
  padding: 10px 22px;
  border-radius: 30px;
}

.pictures__pill-icon {
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.pictures__pill-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

/* ---------------------------------------------------
   MEDIA / ẢNH BÊN PHẢI
   --------------------------------------------------- */
.pictures__media {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 991px) {
  .pictures {
    padding: 70px 0;
  }

  .pictures__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .pictures__cards {
    grid-template-columns: 1fr; /* Mobile dồn thành 1 cột */
    gap: 14px;
  }

  .picture-card {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    padding: 18px 20px;
  }

  .picture-card__num,
  .picture-card__icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .pictures__title {
    font-size: 30px;
  }
}



/* ===================================================
   SECTION: BRIDGE (HÀNH TRÌNH DÀI HƠN)
   =================================================== */
.bridge {
  background-color: var(--color-primary, #002147); /* Nền xanh navy đậm */
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Eyebrow nhỏ màu vàng ở trên cùng */
.bridge .eyebrow--on-dark {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-sun, #f59e0b);
}

/* Khối các dòng chữ theo cấp độ */
.bridge__words {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  width: 100%;
}

.bridge__word {
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
}

.bridge__word:hover {
  transform: scale(1.03); /* Hiệu ứng hover nhẹ khi di chuột */
}

/* Dòng mô tả bên dưới */
.bridge__desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 768px) {
  .bridge {
    padding: 60px 16px;
  }

  .bridge__words {
    gap: 8px;
    margin-bottom: 24px;
  }

  .bridge__desc {
    font-size: 14px;
  }
}



/* ===================================================
   SECTION: PERFORMANCE (ẢNH TRÁI - CHỮ PHẢI)
   =================================================== */
.performance {
  padding: 100px 0;
  background-color: #ffffff;
}

.performance__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Khối văn bản bên phải */
.performance__text {
  max-width: 520px;
}

.performance__title {
  font-size: 38px;
  font-weight: 800;
  color: var(--color-primary, #0f172a);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.performance__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-light, #64748b);
  margin: 0;
}

/* Khối ảnh bên trái */
.performance__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3; /* Giữ tỷ lệ khung hình chuẩn không bị méo */
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 991px) {
  .performance {
    padding: 70px 0;
  }

  .performance__grid {
    grid-template-columns: 1fr; /* Tự động dồn thành 1 cột */
    gap: 36px;
  }

  .performance__text {
    max-width: 100%;
  }

  .performance__title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .performance {
    padding: 50px 0;
  }

  .performance__title {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .performance__desc {
    font-size: 15px;
  }

  .performance__photo {
    border-radius: 16px;
  }
}




/* ===================================================
   SECTION: FINAL CTA
   =================================================== */
.final-cta {
  position: relative;
  padding: 120px 0 140px;
  background-color: #ffffff;
  overflow: hidden; /* Cắt phần blob tràn ra ngoài */
  text-align: center;
}

/* Khối Blob xanh nền góc dưới bên trái */
.final-cta__blob {
  position: absolute;
  left: -80px;
  bottom: -60px;
  width: 380px;
  height: 280px;
  background-color: #dcfce7; /* Màu xanh lá nhạt mềm mại */
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  z-index: 1;
  pointer-events: none;
}

/* Container nội dung chính */
.final-cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
}

/* Pill Badge "STORYTELLING" */
.final-cta__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background-color: #ffffff;
  border: 1.5px solid var(--color-secondary, #22c55e);
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.08);
}

.final-cta__pill-star {
  color: var(--color-secondary, #22c55e);
  font-size: 14px;
  line-height: 1;
}

.final-cta__pill-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--color-secondary, #22c55e);
  text-transform: uppercase;
}

/* Tiêu đề chính */
.final-cta__title {
  font-size: 46px;
  font-weight: 900;
  color: var(--color-primary, #0f172a);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

/* Từ highlight + SVG gạch chân tự nhiên */
.final-cta__highlight {
  position: relative;
  display: inline-block;
  color: var(--color-secondary, #22c55e);
}

.final-cta__underline {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 14px;
  overflow: visible;
  pointer-events: none;
}

/* Mô tả */
.final-cta__desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-light, #64748b);
  max-width: 520px;
  margin: 0 0 36px 0;
}

/* Nút CTA chính */
.final-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary, #22c55e);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(34, 197, 94, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.final-cta .btn-primary:hover {
  background-color: #16a34a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px -5px rgba(34, 197, 94, 0.5);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 768px) {
  .final-cta {
    padding: 80px 20px 100px;
  }

  .final-cta__blob {
    width: 260px;
    height: 200px;
    left: -60px;
    bottom: -40px;
    opacity: 0.7;
  }

  .final-cta__title {
    font-size: 34px;
  }

  .final-cta__desc {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .final-cta .btn-primary {
    width: 100%;
    max-width: 320px;
    padding: 14px 28px;
    font-size: 15px;
  }
}