/* ============================================================
   Phước Nghiệp Luận — Page Styles
   Design: Figma node 490-15632
   ============================================================ */

/* ============================================================
   NAVBAR
   ============================================================ */
.pnl-page .navbar {
  background: rgba(244, 241, 232, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-height: 80px;
  padding-top: 0;
  padding-bottom: 0;
}

.pnl-page .navbar .logo-icon {
  height: 52px;
  width: auto;
}

.pnl-page .navbar .nav-link {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bt-text) !important;
  padding: 10px 14px !important;
  border-radius: 20px;
  white-space: nowrap;
  transition: background 0.2s;
}

.pnl-page .navbar .nav-link:hover {
  background: rgba(6, 98, 47, 0.08);
}

.pnl-page .navbar .nav-link.active {
  background: linear-gradient(183.846deg, rgba(6, 98, 47, 0) 16.428%, rgba(6, 98, 47, 0.2) 90.452%);
  border-bottom: 2px solid var(--bt-teal-light);
  border-radius: 20px;
}

.pnl-page .navbar .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.pnl-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: url('/assets/img/pnl-hero-bg.png') center center / cover no-repeat;
}

.pnl-hero-content {
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px) clamp(16px, 10%, 240px);
  max-width: 68%;
}

.pnl-hero-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 9.5vw, 8.5rem);
  line-height: 0.95;
  background: linear-gradient(181.779deg, rgb(0, 168, 139) 10.007%, rgb(1, 117, 98) 23.366%, rgb(2, 68, 59) 72.234%, rgb(3, 20, 17) 111.47%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.pnl-hero-subtitle {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1rem, 1.75vw, 1.375rem);
  line-height: 1.55;
  color: var(--bt-text);
  margin-bottom: 12px;
}

.pnl-hero-desc {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 2;
  color: var(--bt-text);
  margin: 0;
}

@media (max-width: 991px) {
  .pnl-hero-content {
    max-width: 75%;
    padding-left: clamp(16px, 8%, 64px);
  }
}

@media (max-width: 575px) {
  .pnl-hero {
    background-position: 75% center;
  }
  .pnl-hero-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* ============================================================
   FORM SECTION
   ============================================================ */
.pnl-form {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: url('/assets/img/pnl-form-bg.png') center center / cover no-repeat;
}

.pnl-form-lotus {
  position: absolute;
  top: 0;
  left: 50%;
  width: 380px;
  height: 260px;
  transform: translateX(-50%);
  background-image: url('/assets/img/lotus2.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0.5;
}

.pnl-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    4.305deg,
    rgba(0, 168, 139, 0.80) -10%,
    rgba(1, 117, 98,  0.87)  15%,
    rgba(2,  68,  59, 0.91)  55%,
    rgba(3,  20,  17, 0.95) 100%
  );
  z-index: 1;
}

.pnl-form .container-xl {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  padding-bottom: 64px;
}

/* Left panel */
.pnl-form-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-right: 32px;
  text-align: center;
}

.pnl-form-logo {
  width: 168px;
  height: auto;
  margin-bottom: 4px;
}

.pnl-form-calligraphy {
  font-family: var(--font-title); /* SVN-Hottroof Semhesta */
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1;
  background: linear-gradient(180deg, #fad573 0%, #e8a820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  padding: 55px 0 25px;
}

.pnl-form-subtitle {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

.pnl-form-desc {
  font-family: var(--font-ui);
  font-style: italic;
  font-size: 0.9375rem;
  color: rgba(255, 244, 221, 0.9);
  line-height: 2;
  margin: 0;
  max-width: 480px;
  text-align: center;
}

.pnl-form-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #edc071;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  transition: opacity 0.2s;
  line-height: 1.5;
}

.pnl-form-more:hover {
  opacity: 0.8;
  color: #edc071;
}

/* ============================================================
   FORM CARD
   ============================================================ */
.pnl-form-card {
  background: #f9f5ed;
  border: 3.98px solid #de9f17;
  border-radius: 30px;
  padding: 28px 26px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pnl-form-title {
  font-family: var(--font-title); /* SVN-Hottroof Semhesta */
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1;
  text-align: center;
  background: linear-gradient(180deg, #fad573 0%, #f0ae40 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 20px;
}

.pnl-form-field {
  margin-bottom: 12px;
}

.pnl-form-label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.125rem;
  background: linear-gradient(180deg, #fad573 0%, #f0ae40 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  display: block;
  line-height: 1.4;
}

/* Input wrapper (for icon-in-input) */
.pnl-form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.pnl-form-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bt-teal-mid);
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 1;
}

.pnl-form-icon-right {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bt-teal-mid);
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 1;
}

.pnl-form-input-wrap .pnl-form-input {
  padding-left: 42px;
}

.pnl-form-date-wrap .pnl-form-input {
  padding-left: 18px;
  padding-right: 42px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

.pnl-form-input,
.pnl-form-select {
  background: rgba(101, 101, 101, 0.13);
  border: 2.55px solid #de9f17;
  border-radius: 34px;
  height: 48px;
  padding: 5px 18px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--bt-text);
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pnl-form-input:focus,
.pnl-form-select:focus {
  border-color: var(--bt-gold);
  box-shadow: 0 0 0 3px rgba(218, 157, 40, 0.2);
  background: rgba(101, 101, 101, 0.08);
}

.pnl-form-input::placeholder {
  color: rgba(0, 94, 82, 0.5);
}

/* Date input color fix */
.pnl-form-input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.6;
  cursor: pointer;
}

/* Custom select arrow */
.pnl-form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23de9f17' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
  background-color: rgba(101, 101, 101, 0.13);
}

/* Submit button */
.pnl-btn-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(180deg, #f5cc5a 0%, #de9f17 55%, #c8870a 100%);
  border: none;
  border-radius: 34px;
  height: 52px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1.0625rem;
  color: #4a2800;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.12s;
  box-shadow: 0 3px 12px rgba(218, 157, 40, 0.45);
  margin-top: 4px;
  overflow: visible;
}

.pnl-btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.pnl-btn-frame {
  position: absolute;
  inset: -8px -14px;
  width: calc(100% + 28px);
  height: calc(100% + 16px);
  object-fit: fill;
  pointer-events: none;
  z-index: 1;
}

.pnl-btn-submit span {
  position: relative;
  z-index: 2;
}

/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */
.pnl-section-dark {
  /* background: linear-gradient(
    3.917deg,
    rgb(0, 168, 139)  21.928%,
    rgb(1, 117, 98)    8.882%,
    rgb(2, 68, 59)    53.995%,
    rgb(3, 20, 17)    90.218%
  ); */
  /* border-radius: 10.054px; */
  background: linear-gradient(7deg, #00A88B -18.89%, #017562 16.13%, #02443B 67.41%, #031411 108.59%);
  padding: 72px 0;
}

.pnl-section-title {
  font-family: var(--font-section); /* VN-Brenza */
  font-size: clamp(1.375rem, 2.8vw, 2.25rem);
  color: #fff;
  margin-bottom: 44px;
  line-height: 1.35;
}

.pnl-section-title-gold {
  font-family: var(--font-section);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  background: linear-gradient(90deg, #fad573 0%, #f0ae40 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.35;
}

.pnl-section-body {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

/* Xem Thêm button */
.pnl-btn-xem-them {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #fad573 0%, #de9f17 100%);
  color: #3d2000;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: opacity 0.2s;
  border: none;
  white-space: nowrap;
}

.pnl-btn-xem-them:hover {
  opacity: 0.88;
  color: #3d2000;
}

/* ============================================================
   OVERVIEW SECTION
   ============================================================ */
.pnl-overview-img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--bt-gold);
  object-fit: cover;
  aspect-ratio: 1 / 1;
  display: block;
}

.pnl-overview-title {
  font-family: var(--font-section);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* ============================================================
   HỆ SINH THÁI VĂN HÓA SỐ SECTION
   ============================================================ */
.pnl-ecosystem {
  background: var(--bt-bg);
  padding: 72px 0;
}

.pnl-ecosystem-main-img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  max-height: 565px;
  display: block;
}

.pnl-ecosystem-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  color: #005e52;
  line-height: 1.28;
  margin-bottom: 28px;
}

.pnl-ecosystem-body {
  font-family: var(--font-ui);
  font-size: 1.125rem;
  color: #005e52;
  line-height: 2;
  margin-bottom: 20px;
}

.pnl-eco-card {
  background: #f9f5ed;
  border: 1.5px solid #da9d28;
  border-radius: 11px;
  box-shadow: 0 3px 3px rgba(247,239,22,0.25);
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: center;
  padding: 18px 10px;
  min-height: 196px;
}

.pnl-eco-card-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.125rem;
  color: #005e52;
  text-align: center;
  margin: 0;
}

.pnl-eco-card-img {
  max-width: 70%;
  height: 113px;
  object-fit: contain;
}

/* ============================================================
   OVERVIEW CARDS (new 3-card layout)
   ============================================================ */
.pnl-overview-card {
  /* background: linear-gradient(1.33deg, rgb(0,168,139) 33.7%, rgb(1,117,98) 24%, rgb(2,68,59) 108.4%, rgb(3,20,17) 176.3%); */
  background: linear-gradient(2deg, #00A88B -33.71%, #017562 23.98%, #02443B 108.44%, #031411 176.26%);
  border: 1.085px solid #da9d28;
  border-radius: 16px;
  overflow: hidden;
  height: 348px;
}

.pnl-overview-card-img-wrap {
  height: 181px;
  overflow: hidden;
}

.pnl-overview-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pnl-overview-card-body {
  padding: 16px 20px;
}

.pnl-overview-card-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.22rem;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.pnl-overview-card-desc {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   THIÊN PHÚC CHÍNH STRIP SECTION
   ============================================================ */
.pnl-strip-section {
  padding: 40px 0;
  /* background: #fff; */
}

.pnl-strip-card {
  position: relative;
  border: 1.187px solid #da9d28;
  border-radius: 20px;
  overflow: hidden;
  min-height: 374px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.pnl-strip-side {
  position: absolute;
  top: 0;
  height: 100%;
  width: 320px;
  overflow: hidden;
  pointer-events: none;
}

.pnl-strip-side--left { left: 0; }
.pnl-strip-side--right { right: 0; width: 360px; }

.pnl-strip-bg-img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.pnl-strip-bg-img--flip {
  transform: scaleX(-1);
}

.pnl-strip-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 32px 20px;
}

.pnl-strip-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.pnl-strip-label {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 4.3rem);
  color: #000;
  white-space: nowrap;
}

.pnl-strip-value {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 5rem);
  background: linear-gradient(181deg, rgb(250,22,22) 10%, rgb(82,2,2) 114%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.pnl-strip-value--lg {
  font-size: clamp(3rem, 7vw, 7.2rem);
}

/* ============================================================
   LUẬN GIẢI TỪ GỐC RỄ SECTION
   ============================================================ */
.pnl-lggr-section {
  background: var(--bt-bg);
  padding: 72px 0;
}

.pnl-lggr-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.875rem);
  color: #005e52;
  line-height: 1.23;
  margin-bottom: 24px;
}

.pnl-lggr-subtitle {
  font-family: var(--font-ui);
  font-style: italic;
  font-size: 1.25rem;
  color: #005e52;
  line-height: 1.75;
  max-width: 900px;
  margin: 0 auto 44px;
}

.pnl-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 1137px;
  margin: 0 auto;
}

.pnl-acc-item {
  background: #fff4dd;
  border: 1px solid #00a88b;
  border-radius: 8px;
  overflow: hidden;
}

.pnl-acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 53px;
  padding: 13px 16px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.25rem;
  color: #005e52;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.pnl-acc-btn:hover {
  background: rgba(0,168,139,0.07);
}

.pnl-acc-body {
  padding: 12px 16px 20px;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: #005e52;
  line-height: 1.65;
}

/* ============================================================
   NHÀ SÁNG LẬP SECTION
   ============================================================ */
.pnl-founder-section {
  background: var(--bt-bg);
  padding: 72px 0;
}

.pnl-founder-title {
  font-family: var(--font-title);
  font-size: 243.84px;
  /* font-weight: 700; */
  /* font-size: clamp(2rem, 3.5vw, 2.75rem); */
  color: #005e52;
  margin-bottom: 40px;
}

.pnl-founder-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #e8f5f0;
  min-height: 375px;
}

/* .pnl-founder-card--center {
  min-height: 480px;
} */

.pnl-founder-photo-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 20px;
  background: #e8f5f0;
}

.pnl-founder-photo {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bt-gold);
}

.pnl-founder-photo-wrap--lg .pnl-founder-photo {
  width: 175px;
  height: 175px;
}

.pnl-founder-gradient {
  position: relative;
  z-index: 1;
  padding: 20px;
  text-align: center;
  /* background: linear-gradient(4.3deg, rgb(0,168,139) 18.9%, rgb(1,117,98) 16.1%, rgb(2,68,59) 67.4%, rgb(3,20,17) 108.6%); */
  background: linear-gradient(2deg, #00A88B -33.71%, #017562 23.98%, #02443B 108.44%, #031411 176.26%);
}

.pnl-founder-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 4px;
}

.pnl-founder-name--lg {
  font-size: 2rem;
}

.pnl-founder-role {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.pnl-founder-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--bt-gold), transparent);
  margin: 8px auto;
  width: 70%;
}

.pnl-founder-quote-wrap {
  padding: 8px 4px 0;
}

.pnl-founder-quote-open,
.pnl-founder-quote-close {
  font-size: 1.75rem;
  color: var(--bt-gold);
  font-family: serif;
  line-height: 1;
  display: block;
}

.pnl-founder-quote {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  margin: 4px 0;
}

/* ============================================================
   KIẾN THỨC SECTION
   ============================================================ */
.pnl-kienthuc-section {
  padding: 72px 0;
}

.pnl-kienthuc-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #fff;
  text-shadow: 0 4px 4px rgba(0,0,0,0.2);
  margin-bottom: 36px;
}

.pnl-kt-feature-img {
  width: 100%;
  height: 365px;
  object-fit: cover;
  border-radius: 9px;
  display: block;
}

.pnl-kt-feature-body {
  margin-top: 18px;
}

.pnl-kt-feature-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 12px;
}

.pnl-kt-feature-desc {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin: 0;
}

.pnl-kt-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pnl-kt-list-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  margin: 0;
}

.pnl-kt-xem-them {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.pnl-kt-xem-them:hover {
  color: var(--bt-gold-bright);
}

.pnl-kt-article {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(219,224,236,0.3);
  padding: 24px 0;
}

.pnl-kt-thumb {
  width: 165px;
  min-width: 165px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.pnl-kt-article-title {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}

.pnl-kt-article-meta {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: #ffcf45;
}

/* ============================================================
   ĐỐI TÁC SECTION
   ============================================================ */
.pnl-doi-tac-section {
  /* background: #fff; */
  padding: 60px 0 80px;
}

.pnl-doi-tac-title {
  font-family: var(--font-title);
  /* font-size: clamp(5rem, 18vw, 17.92rem); */
  font-size: 286.771px;
  line-height: 0.75;
  /* height: 187px; */
  overflow: hidden;
  background: linear-gradient(181.555deg, rgb(0,168,139) 10%, rgb(1,117,98) 23%, rgb(2,68,59) 72%, rgb(3,20,17) 111%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
}

.pnl-doi-tac-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.25);
  height: 164px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}

.pnl-doi-tac-logo {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.pnl-bookmark-cards {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  align-items: stretch;
}

.pnl-bookmark-card {
  flex: 1;
  min-width: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 117, 98, 0.9) 0%,
    rgba(2, 68, 59, 0.95) 60%,
    rgba(3, 20, 17, 1) 100%
  );
  border: 1.5px solid var(--bt-gold);
  border-radius: 10px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px 4px;
}

.pnl-bookmark-text {
  font-family: var(--font-title);
  font-size: 0.8rem;
  color: #e8c878;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
}

/* Article cards */
.pnl-article-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pnl-article-card {
  border: 1px solid var(--bt-gold);
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(
    0.576deg,
    rgb(0, 168, 139)  33.709%,
    rgb(1, 117, 98)   23.976%,
    rgb(2, 68, 59)   108.44%,
    rgb(3, 20, 17)   176.26%
  );
  display: flex;
  min-height: 160px;
}

.pnl-article-img {
  width: 120px;
  min-width: 120px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.pnl-article-body {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
}

.pnl-article-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}

.pnl-article-desc {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

/* ============================================================
   MỆNH SỐ PHẠM SECTION  (background from .pnl-section-dark)
   ============================================================ */
.pnl-menh-img {
  width: 100%;
  border-radius: 16px;
  border: 2px solid rgba(218, 157, 40, 0.35);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* ============================================================
   SECTION TITLE VARIANTS (for light-bg sections)
   ============================================================ */
.pnl-section-title-dark {
  font-family: var(--font-section);
  font-size: clamp(1.375rem, 2.8vw, 2.25rem);
  color: var(--bt-text);
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 0;
}

.pnl-section-title-gold-light {
  font-family: var(--font-section);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(90deg, #c8870a 0%, #da9d28 50%, #c8870a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 0;
}

/* ============================================================
   ĐẠI VẬN – TIỂU VẬN SECTION
   ============================================================ */
.pnl-dai-van {
  background: var(--bt-bg);
  padding: 72px 0;
}

.pnl-dv-carousel {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  padding: 8px 0 24px;
}

.pnl-dv-card {
  flex-shrink: 0;
  border: 3px solid var(--bt-gold);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.pnl-dv-card--center {
  width: clamp(260px, 36%, 440px);
  height: clamp(460px, 50vw, 620px);
  border-width: 4px;
  z-index: 2;
}

.pnl-dv-card--side {
  width: clamp(200px, 27%, 340px);
  height: clamp(360px, 38vw, 480px);
  opacity: 0.88;
}

.pnl-dv-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 28px 20px;
  background-image: url('/assets/img/pnl-dai-van-bg.png');
  background-size: cover;
  background-position: center;
}

.pnl-dv-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 74, 64, 0.82) 0%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 0;
}

.pnl-dv-inner > * {
  position: relative;
  z-index: 1;
}

.pnl-dv-age {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  color: #edc071;
  margin: 0 0 4px;
  line-height: 1.2;
}

.pnl-dv-card--side .pnl-dv-age {
  font-size: clamp(1.125rem, 2.2vw, 2rem);
}

.pnl-dv-years {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(0.9375rem, 1.8vw, 1.375rem);
  color: #fff4dd;
  margin: 0 0 14px;
}

.pnl-dv-card--side .pnl-dv-years {
  font-size: clamp(0.8125rem, 1.5vw, 1rem);
}

.pnl-dv-badge {
  display: inline-block;
  background: transparent;
  border: 1.5px solid #1eb84f;
  border-radius: 24px;
  color: #1eb84f;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 4px 18px;
  margin-bottom: 20px;
}

.pnl-dv-card--side .pnl-dv-badge {
  font-size: 0.8125rem;
  padding: 3px 14px;
  margin-bottom: 14px;
}

.pnl-dv-desc {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: #fff4dd;
  line-height: 1.75;
  margin: 0;
}

.pnl-dv-card--side .pnl-dv-desc {
  font-size: 0.8125rem;
}

/* ============================================================
   LUẬN GIẢI CHUYÊN SÂU SECTION
   ============================================================ */
.pnl-luan-giai {
  background: var(--bt-bg);
  padding: 72px 0;
}

.pnl-luan-giai-subtitle {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--bt-text);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.pnl-mandala-img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 7px solid var(--bt-gold);
  box-shadow: 5px 5px 8px rgba(7, 90, 65, 0.4);
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.pnl-lg-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pnl-lg-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.pnl-lg-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  border: 4px solid var(--bt-gold);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(7, 90, 65, 0.3);
}

.pnl-lg-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pnl-lg-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--bt-teal);
  margin-bottom: 6px;
  line-height: 1.4;
}

.pnl-lg-desc {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: var(--bt-text);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   THÂN HỘ MỆNH SECTION
   ============================================================ */
.pnl-than-ho-section {
  padding: 40px 0;
}

.pnl-than-ho-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border-top: 6px solid #00a88b;
  box-shadow: 1.5px 6px 7px rgba(0, 0, 0, 0.25);
  background: linear-gradient(
    -0.16deg,
    rgb(0, 168, 139)  0%,
    rgb(1, 117, 98)  26.3%,
    rgb(2, 68, 59)   64.7%,
    rgb(3, 20, 17)   95.5%
  );
  padding: 52px 60px 340px;
}

/* Landscape background — absolutely at bottom of card */
.pnl-tho-landscape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 28%;
  pointer-events: none;
}

.pnl-tho-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Sage portrait — absolutely at top-right */
.pnl-tho-sage {
  position: absolute;
  top: 0;
  right: 0;
  width: 43%;
  pointer-events: none;
}

.pnl-tho-sage img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content — left column, z-index 2 over backgrounds */
.pnl-tho-content {
  position: relative;
  z-index: 2;
  max-width: 57%;
}

.pnl-tho-label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 2.5rem);
  background: linear-gradient(-0.433deg, rgb(218,157,40) 0%, rgb(199,150,44) 32%, rgb(252,242,141) 68%, rgb(255,207,69) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.pnl-tho-calligraphy {
  font-family: var(--font-thuphap);
  font-size: clamp(3.5rem, 9.5vw, 9.5rem);
  line-height: 1.05;
  letter-spacing: 2px;
  background: linear-gradient(-1.36deg, rgb(218,157,40) 0%, rgb(199,150,44) 32%, rgb(252,242,141) 68%, rgb(255,207,69) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.pnl-tho-text {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: clamp(0.875rem, 1.1vw, 1.0625rem);
  color: #edc071;
  line-height: 1.75;
  margin-bottom: 12px;
}

.pnl-tho-list {
  list-style: disc;
  padding-left: 20px;
  margin: 4px 0 8px;
}

.pnl-tho-list li {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: clamp(0.875rem, 1.1vw, 1.0625rem);
  color: #edc071;
  line-height: 1.75;
}

/* Decorative banner divider */
.pnl-tho-badge-wrap {
  position: relative;
  margin: 36px auto 20px;
  max-width: 640px;
}

.pnl-tho-badge-svg {
  width: 100%;
  height: 64px;
  display: block;
}

.pnl-tho-badge-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.125rem, 2vw, 2rem);
  background: linear-gradient(181.639deg, rgb(0,168,139) 10%, rgb(1,117,98) 23.4%, rgb(2,68,59) 72.2%, rgb(3,20,17) 111.5%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

/* 60 NĂM numbers */
.pnl-tho-num-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 640px;
  margin: 0 auto 20px;
}

.pnl-tho-sixty {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(5rem, 15vw, 12rem);
  line-height: 0.9;
  background: linear-gradient(-1.306deg, rgb(218,157,40) 0%, rgb(199,150,44) 32%, rgb(252,242,141) 68%, rgb(255,207,69) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pnl-tho-nam {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.3;
  padding-bottom: 0.5rem;
  background: linear-gradient(-1.005deg, rgb(218,157,40) 0%, rgb(199,150,44) 32%, rgb(252,242,141) 68%, rgb(255,207,69) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 991px) {
  .pnl-than-ho-card {
    padding: 36px 32px 180px;
  }
  .pnl-tho-content {
    max-width: 100%;
  }
  .pnl-tho-sage {
    width: 50%;
    opacity: 0.45;
  }
}

@media (max-width: 575px) {
  .pnl-tho-sage {
    display: none;
  }
  .pnl-than-ho-card {
    padding: 32px 20px 120px;
  }
}

/* ============================================================
   TÍNH SAO CHIẾU MỆNH SECTION
   ============================================================ */
.pnl-tinh-sao-section {
  background: #fbf3e8;
  border: 2.4px solid var(--bt-gold);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin: 40px auto;
  max-width: 1440px;
}

.pnl-tinh-sao-decorative {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pnl-tsao-deco {
  position: absolute;
  top: 0;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.pnl-tsao-deco--left {
  left: 0;
  width: 40%;
}

.pnl-tsao-deco--right {
  right: 0;
  width: 30%;
}

.pnl-tsao-deco--lotus {
  right: 8%;
  bottom: 0;
  top: auto;
  height: 55%;
  width: auto;
  transform: scaleY(-1);
}

.pnl-tinh-sao-badge {
  position: relative;
  z-index: 5;
  background: linear-gradient(
    4.305deg,
    rgb(0, 168, 139)   0%,
    rgb(1, 117, 98)   15%,
    rgb(2, 68, 59)    65%,
    rgb(3, 20, 17)   100%
  );
  color: #f8f1d4;
  font-family: var(--font-section);
  font-size: clamp(1.25rem, 2.8vw, 2.25rem);
  font-weight: 700;
  padding: 12px 48px;
  border-radius: 40px;
  white-space: nowrap;
}

.pnl-tinh-sao-compass {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.pnl-tsao-bg2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
}

.pnl-tsao-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 92%;
  width: auto;
  max-width: 900px;
  pointer-events: none;
  z-index: 2;
}

.pnl-tinh-sao-cards-wrap {
  position: relative;
  z-index: 10;
  padding: 24px 24px 48px;
}

.pnl-tinh-sao-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.pnl-tsao-card {
  background: #f9f5ed;
  border: 1.2px solid var(--bt-gold-bright);
  border-radius: 6px;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  flex: 1;
  max-width: 340px;
  box-shadow: inset 3px 3px 5px rgba(25, 72, 40, 0.3);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pnl-tsao-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 3px 3px 5px rgba(25, 72, 40, 0.3), 0 8px 20px rgba(2, 68, 59, 0.2);
}

.pnl-tsao-icon {
  width: 88px;
  height: 87px;
  background-image: url('/assets/img/pnl-tinh-sao-icon.png');
  background-size: 441px 294px;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.pnl-tsao-icon--1 { background-position: -41px -97px; }
.pnl-tsao-icon--2 { background-position: -177px -100px; }
.pnl-tsao-icon--3 { background-position: -315px -99px; }

.pnl-tsao-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--bt-text);
  text-align: center;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  /* background: linear-gradient(
    5.035deg,
    rgb(0, 168, 139)  13.068%,
    rgb(1, 117, 98)    4.1%,
    rgb(2, 68, 59)    55.793%,
    rgb(3, 20, 17)    97.082%
  ); */
  border-top: 4px solid var(--bt-gold);
  padding: 48px 0 28px;
}

.newsletter-title {
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1.1;
  background: linear-gradient(
    -81.6133deg,
    rgb(217, 157, 40)   7.2731%,
    rgb(197, 148, 44)  17.51%,
    rgb(252, 242, 141) 45.391%,
    rgb(255, 207, 69)  70.175%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.newsletter-sub {
  font-family: var(--font-ui);
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.email-input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  color: #fff;
  padding: 10px 16px;
  font-family: var(--font-ui);
  font-size: 1rem;
  width: 320px;
  max-width: 100%;
  outline: none;
  transition: box-shadow 0.2s;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
  box-shadow: 0 0 0 2px rgba(255, 207, 69, 0.5);
  border-color: var(--bt-gold-bright);
}

.subscribe-btn {
  background: var(--bt-gold-bright);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
}

.subscribe-btn:hover {
  background: #e5b800;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 32px 0;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  height: 68px;
  width: auto;
}

.footer-brand-text {
  font-family: var(--font-title);
  font-size: 3.8rem;
  line-height: 0.9;
  background: linear-gradient(
    -81.6133deg,
    rgb(217, 157, 40)   7.2731%,
    rgb(197, 148, 44)  17.51%,
    rgb(252, 242, 141) 45.391%,
    rgb(255, 207, 69)  70.175%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 380px;
}

.links-title {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 28px;
}

.links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.links-list a {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.links-list a:hover {
  color: var(--bt-gold-bright);
}

.footer-bottom {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.social-icons {
  height: 32px;
  width: auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
  .pnl-form-left {
    padding-right: 16px;
  }

  .pnl-dv-card--center {
    height: clamp(400px, 44vw, 540px);
  }

  .pnl-dv-card--side {
    height: clamp(320px, 34vw, 420px);
  }
}

@media (max-width: 991.98px) {
  .pnl-form-left {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .pnl-form-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .pnl-menh-img {
    max-width: 500px;
    margin: 0 auto;
  }

  .pnl-mandala-img {
    max-width: 320px;
    margin-bottom: 40px;
  }

  .pnl-dv-carousel {
    gap: 12px;
  }

  .footer-brand-text {
    font-size: 2.8rem;
  }
}

@media (max-width: 767.98px) {
  .pnl-form .container-xl {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .pnl-section-dark {
    padding: 48px 0;
  }

  .pnl-dai-van,
  .pnl-luan-giai {
    padding: 48px 0;
  }

  .pnl-article-card {
    flex-direction: column;
    min-height: unset;
  }

  .pnl-article-img {
    width: 100%;
    height: 180px;
    min-width: unset;
  }

  .pnl-dv-carousel {
    flex-direction: column;
    align-items: center;
  }

  .pnl-dv-card--side {
    width: 85%;
    height: 300px;
    opacity: 1;
  }

  .pnl-dv-card--center {
    width: 92%;
    height: 380px;
  }

  .pnl-bookmark-cards {
    flex-wrap: wrap;
  }

  .pnl-bookmark-card {
    min-width: 72px;
    min-height: 180px;
  }

  .pnl-lg-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pnl-tinh-sao-badge {
    font-size: 1.125rem;
    padding: 10px 28px;
  }

  .pnl-tinh-sao-decorative {
    height: 240px;
  }

  .pnl-tsao-card {
    min-width: 100%;
    max-width: 100%;
    padding: 20px 24px;
  }

  .email-input {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   POEM
   =========================================================== */
.pnl-poem {
    color: #000;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: var(--font-thuphap);
    font-size: 57.194px;
    font-style: normal;
    font-weight: 400;
    line-height: 77.672px; /* 135.805% */
    letter-spacing: 1.972px;
}