/**
 * VNPT TP.HỒ CHÍ MINH — PAGE STYLESHEET 2026
 * File: assets/css/pages.css
 * Định dạng giao diện chuyên biệt cho Trang chủ và các trang chức năng
 * Chuẩn thiết kế: VNPT MODERN TECH BLUE 2026
 */

/* ==========================================================================
   1. HERO VALUE PROPOSITION (TRANG CHỦ)
   ========================================================================== */
.vnpt-hero {
  position: relative;
  background: var(--vnpt-gradient-hero);
  border-bottom: 1px solid var(--vnpt-border);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}

.vnpt-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 184, 255, 0.12) 0%, rgba(0, 104, 255, 0) 70%);
  pointer-events: none;
}

.vnpt-hero__content {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.vnpt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--vnpt-bg-section-blue);
  border: 1px solid rgba(0, 104, 255, 0.18);
  color: var(--vnpt-primary-dark);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  box-shadow: 0 2px 8px rgba(0, 104, 255, 0.06);
}

.vnpt-hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 850;
  color: var(--vnpt-dark-navy);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
  text-wrap: balance;
}

.vnpt-hero__title span {
  background: var(--vnpt-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vnpt-hero__desc {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: var(--vnpt-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-6);
  max-width: 720px;
  margin-inline: auto;
}

.vnpt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.vnpt-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(220, 232, 247, 0.75);
}

.vnpt-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--vnpt-text-secondary);
}

.vnpt-hero__trust-item i {
  font-size: 1.15rem;
}

/* Khung bọc Slider Banner dưới Hero */
.vnpt-hero-slider-wrap {
  margin-top: calc(-1 * clamp(1.5rem, 3vw, 2.5rem));
  position: relative;
  z-index: 10;
}

.vnpt-hero-slider-container {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--vnpt-border);
  background: #ffffff;
}

/* ==============================================================
   SLIDER BANNER (MIGRATED FROM COMPONENT TO PAGES.CSS)
   ============================================================== */
.modern-slider.full-width-slider {
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: inherit;
  position: relative;
}

.modern-slider.full-width-slider .carousel-inner {
  aspect-ratio: 1920 / 650;
  width: 100%;
  max-height: 650px;
  background-color: var(--vnpt-bg-soft);
  border-radius: inherit;
  border: none;
}

.modern-slider.full-width-slider .carousel-item {
  aspect-ratio: 1920 / 650;
  width: 100%;
  height: 100%;
  max-height: 650px;
}

.slider-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1920 / 650;
  max-height: 650px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  min-width: 48px;
  opacity: 0.95;
}

.modern-control-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.control-icon-size {
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .modern-control-icon {
    width: 48px;
    height: 48px;
  }
  .control-icon-size {
    font-size: 1.4rem;
  }
}

@media (hover: hover) {
  .carousel-control-prev:hover .modern-control-icon,
  .carousel-control-next:hover .modern-control-icon {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 91, 170, 0.25) !important;
    color: var(--vnpt-primary-dark) !important;
  }
}

.modern-indicator {
  box-sizing: border-box !important;
  width: 32px !important;
  height: 44px !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background-clip: content-box !important;
  border: none !important;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.6) !important;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  width: 44px !important;
  background-color: var(--vnpt-primary) !important;
  box-shadow: 0 0 12px rgba(0, 104, 255, 0.7);
}

/* ==========================================================================
   HOMEPAGE EXPERIENCE LAYER
   Nhịp điệu và hierarchy riêng cho homepage; không tác động các template khác.
   ========================================================================== */
.vnpt-home-page {
  background: var(--vnpt-bg);
  overflow-x: clip;
}

/* ==========================================================================
   1. HERO SECTION 2 CỘT (MODERN TECH BLUE 2026 MOCKUP)
   ========================================================================== */
.vnpt-home-page .home-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  background:
    radial-gradient(circle at 18% 15%, rgba(34, 184, 255, 0.12), transparent 32%),
    radial-gradient(circle at 82% 28%, rgba(0, 104, 255, 0.09), transparent 35%),
    var(--vnpt-gradient-hero);
  border-bottom: 1px solid var(--vnpt-border);
}

.vnpt-home-page .home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 104, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 104, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 80%);
  pointer-events: none;
}

/* Hero Badge */
.vnpt-home-page .home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  margin-bottom: var(--space-4);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 104, 255, 0.18);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(0, 104, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vnpt-home-page .home-hero__badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vnpt-primary);
  box-shadow: 0 0 0 3px rgba(0, 104, 255, 0.25);
}

.vnpt-home-page .home-hero__badge-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--vnpt-primary-dark);
  text-transform: uppercase;
}

/* Hero Typography */
.vnpt-home-page .home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.2vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--vnpt-navy);
  margin-bottom: var(--space-4);
  text-wrap: balance;
}

.vnpt-home-page .home-hero__title .text-gradient-blue {
  background: linear-gradient(135deg, #0052cc 0%, #0068ff 55%, #168bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.vnpt-home-page .home-hero__desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--vnpt-text-secondary);
  max-width: 54ch;
  margin-bottom: var(--space-6);
}

/* Hero Actions */
.vnpt-home-page .home-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.vnpt-home-page .home-hero__actions .vnpt-btn--primary {
  min-height: 48px;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 104, 255, 0.28);
}

.vnpt-home-page .home-hero__actions .vnpt-btn--secondary {
  min-height: 48px;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--vnpt-primary-dark);
  border: 1px solid var(--vnpt-border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.vnpt-home-page .home-hero__actions .vnpt-btn--secondary:hover {
  background: var(--vnpt-bg-soft);
  border-color: var(--vnpt-primary);
  color: var(--vnpt-primary);
}

/* Hero Trust Indicators */
.vnpt-home-page .home-hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.vnpt-home-page .home-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--vnpt-text-secondary);
}

.vnpt-home-page .home-hero__trust-item i {
  font-size: 1rem;
}

/* Right Column: Visual Stage with Floating Glass Cards */
.vnpt-home-page .home-hero__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.vnpt-home-page .home-hero__visual-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 490px;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 14px 30px rgba(0, 75, 180, 0.12));
}

.vnpt-home-page .home-hero__specialist-img {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  border-radius: var(--radius-xl);
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* 6 Floating Glassmorphism Cards Grid (2 Cột x 3 Hàng) */
.vnpt-home-page .home-hero__glass-grid {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(138px, 160px));
  gap: 12px;
}

.vnpt-home-page .home-glass-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(7, 31, 70, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  color: var(--vnpt-text);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.vnpt-home-page .home-glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 104, 255, 0.15);
  border-color: rgba(0, 104, 255, 0.35);
}

.vnpt-home-page .home-glass-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 1.1rem;
}

.vnpt-home-page .home-glass-card__icon--blue    { background: linear-gradient(135deg, #168bff, #0068ff); }
.vnpt-home-page .home-glass-card__icon--cyan    { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.vnpt-home-page .home-glass-card__icon--indigo  { background: linear-gradient(135deg, #3a7bd5, #0052cc); }
.vnpt-home-page .home-glass-card__icon--azure   { background: linear-gradient(135deg, #2193b0, #6dd5ed); }
.vnpt-home-page .home-glass-card__icon--sky     { background: linear-gradient(135deg, #168bff, #082e6b); }
.vnpt-home-page .home-glass-card__icon--navy    { background: linear-gradient(135deg, #082e6b, #0047b9); }

.vnpt-home-page .home-glass-card__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.25;
}

.vnpt-home-page .home-glass-card__info strong {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--vnpt-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vnpt-home-page .home-glass-card__info small {
  font-size: 0.7rem;
  color: var(--vnpt-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Banner Slider Container (Dải khuyến mãi động) */
.vnpt-home-page .home-hero-slider-wrap {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.vnpt-home-page .home-hero-slider-container {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--vnpt-border);
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   2. QUICK ACCESS "BẠN ĐANG CẦN GÌ?" (8 SQUIRCLE CARDS MOCKUP)
   ========================================================================== */
.vnpt-home-page .home-quick-access {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: #ffffff;
}

.vnpt-home-page .home-quick-access__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.vnpt-home-page .home-quick-access__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--vnpt-navy);
  margin-bottom: 4px;
}

.vnpt-home-page .home-quick-access__subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--vnpt-text-muted);
  margin: 0;
}

.vnpt-home-page .home-quick-access__all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-primary-dark);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vnpt-home-page .home-quick-access__all-link:hover {
  background: #d8eaff;
  transform: translateX(2px);
}

/* Lưới 8 khối Quick Access Squircle */
.vnpt-home-page .home-quick-access__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: var(--space-3);
}

.vnpt-home-page .home-quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 10px 18px;
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 18px rgba(0, 68, 160, 0.04);
  text-decoration: none;
  color: var(--vnpt-text);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.vnpt-home-page .home-quick-card:hover {
  transform: translateY(-4px);
  background: var(--vnpt-bg-soft);
  border-color: rgba(0, 104, 255, 0.35);
  box-shadow: var(--shadow-card-hover);
}

.vnpt-home-page .home-quick-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-size: 1.35rem;
  color: #ffffff;
  transition: transform 0.22s ease;
}

.vnpt-home-page .home-quick-card:hover .home-quick-card__icon {
  transform: scale(1.08);
}

.vnpt-home-page .home-quick-card__icon--blue      { background: linear-gradient(135deg, #168bff, #0068ff); }
.vnpt-home-page .home-quick-card__icon--tv        { background: linear-gradient(135deg, #22b8ff, #0052cc); }
.vnpt-home-page .home-quick-card__icon--vina      { background: linear-gradient(135deg, #00b4db, #0083b0); }
.vnpt-home-page .home-quick-card__icon--ca        { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.vnpt-home-page .home-quick-card__icon--invoice   { background: linear-gradient(135deg, #36d1dc, #5b86e5); }
.vnpt-home-page .home-quick-card__icon--econtract { background: linear-gradient(135deg, #1f4037, #99f2c8); }
.vnpt-home-page .home-quick-card__icon--cloud     { background: linear-gradient(135deg, #0068ff, #082e6b); }
.vnpt-home-page .home-quick-card__icon--support   { background: linear-gradient(135deg, #0047b9, #168bff); }

.vnpt-home-page .home-quick-card__text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--vnpt-navy);
  margin-bottom: 3px;
  line-height: 1.3;
}

.vnpt-home-page .home-quick-card__text span {
  display: block;
  font-size: 0.74rem;
  color: var(--vnpt-text-muted);
  line-height: 1.3;
}

/* ==========================================================================
   3. HỆ SINH THÁI DỊCH VỤ VNPT (TABS PHÂN NHÓM & CARDS MOCKUP)
   ========================================================================== */
.vnpt-home-page .home-ecosystem {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--vnpt-bg-soft);
  border-top: 1px solid var(--vnpt-border);
}

.vnpt-home-page .home-ecosystem__header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.vnpt-home-page .home-ecosystem__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--vnpt-navy);
  margin-bottom: 4px;
}

.vnpt-home-page .home-ecosystem__subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--vnpt-text-muted);
  margin: 0;
}

/* Tabs phân nhóm đối tượng */
.vnpt-home-page .home-ecosystem__tabs-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(0, 68, 160, 0.05);
}

.vnpt-home-page .home-eco-tab {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: var(--vnpt-text-secondary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.22s ease;
}

.vnpt-home-page .home-eco-tab:hover {
  color: var(--vnpt-primary);
  background: var(--vnpt-bg-section-blue);
}

.vnpt-home-page .home-eco-tab.active {
  background: var(--vnpt-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 104, 255, 0.3);
}

/* Lưới thẻ dịch vụ sinh thái */
.vnpt-home-page .home-eco-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--space-4);
}

.vnpt-home-page .home-eco-card {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.vnpt-home-page .home-eco-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 104, 255, 0.35);
}

.vnpt-home-page .home-eco-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 1.3rem;
}

.vnpt-home-page .home-eco-card__icon--blue    { background: linear-gradient(135deg, #168bff, #0068ff); }
.vnpt-home-page .home-eco-card__icon--red     { background: linear-gradient(135deg, #ff4b2b, #ff416c); }
.vnpt-home-page .home-eco-card__icon--cyan    { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.vnpt-home-page .home-eco-card__icon--indigo  { background: linear-gradient(135deg, #3a7bd5, #0052cc); }
.vnpt-home-page .home-eco-card__icon--sky     { background: linear-gradient(135deg, #22b8ff, #082e6b); }
.vnpt-home-page .home-eco-card__icon--navy    { background: linear-gradient(135deg, #082e6b, #0047b9); }
.vnpt-home-page .home-eco-card__icon--azure   { background: linear-gradient(135deg, #2193b0, #6dd5ed); }

.vnpt-home-page .home-eco-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vnpt-navy);
  margin-bottom: 6px;
}

.vnpt-home-page .home-eco-card__tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vnpt-primary-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.vnpt-home-page .home-eco-card__desc {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--vnpt-text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.vnpt-home-page .home-eco-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--vnpt-primary);
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.vnpt-home-page .home-eco-card__link:hover {
  color: var(--vnpt-primary-dark);
  transform: translateX(3px);
}

/* ==========================================================================
   4. RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1399.98px) {
  .vnpt-home-page .home-quick-access__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .vnpt-home-page .home-eco-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .vnpt-home-page .home-hero {
    padding-top: 2.25rem;
    padding-bottom: 2.75rem;
  }
  .vnpt-home-page .home-hero__stage {
    min-height: auto;
    margin-top: 1.5rem;
    flex-direction: column;
  }
  .vnpt-home-page .home-hero__glass-grid {
    position: static;
    transform: none;
    margin-top: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 480px;
  }
  .vnpt-home-page .home-quick-access__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .vnpt-home-page .home-eco-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vnpt-home-page .home-ecosystem__header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .vnpt-home-page .home-ecosystem__tabs-wrap {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
  }
}

@media (max-width: 767.98px) {
  .vnpt-home-page .home-hero__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .vnpt-home-page .home-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .vnpt-home-page .home-hero__actions .vnpt-btn {
    width: 100%;
    justify-content: center;
  }
  .vnpt-home-page .home-hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .vnpt-home-page .home-hero__glass-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vnpt-home-page .home-quick-access__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vnpt-home-page .home-eco-grid {
    grid-template-columns: 1fr;
  }
}

.vnpt-home-news-section {
  margin-top: var(--space-8);
}

.vnpt-home-news-section .news-content-wrapper {
  min-width: 0;
}

.vnpt-home-news-section article > .d-flex {
  align-items: end !important;
  gap: var(--space-4);
  padding-bottom: var(--space-3) !important;
  border-bottom-color: var(--vnpt-border) !important;
}

.vnpt-home-news-section article > .d-flex h2 {
  color: var(--vnpt-text) !important;
  font-size: var(--text-2xl) !important;
  letter-spacing: -0.02em;
  text-transform: none !important;
}

.vnpt-home-news-section article > .d-flex h2 i {
  color: var(--vnpt-primary);
}

@media (prefers-reduced-motion: reduce) {
  .vnpt-home-page .vnp-hub-card:hover .vnp-hub-icon {
    transform: none;
  }
}

/* ==========================================================================
   2. ENTERPRISE DIGITAL SOLUTIONS (NỀN DARK TECH THEO AGENTS.MD)
   ========================================================================== */
.vnpt-enterprise-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}

.vnpt-enterprise-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(34, 184, 255, 0.4);
}

.vnpt-enterprise-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--vnpt-gradient-primary);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: var(--space-4);
  box-shadow: 0 8px 20px rgba(0, 104, 255, 0.25);
}

.vnpt-enterprise-card__title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--space-2);
}

.vnpt-enterprise-card__desc {
  color: rgba(234, 246, 255, 0.8);
  font-size: var(--text-sm);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: var(--space-4);
}

.vnpt-enterprise-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vnpt-cyan);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.2s ease;
}

.vnpt-enterprise-card:hover .vnpt-enterprise-card__link {
  gap: 10px;
}

/* ==========================================================================
   3. FREE DIGITAL UTILITIES (TIỆN ÍCH SỐ MIỄN PHÍ)
   ========================================================================== */
.vnpt-utility-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}

.vnpt-utility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 104, 255, 0.3);
}

.vnpt-utility-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.vnpt-utility-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--vnpt-bg-section-blue);
  border: 1px solid rgba(0, 104, 255, 0.15);
  display: grid;
  place-items: center;
  color: var(--vnpt-primary);
  font-size: 1.4rem;
}

.vnpt-utility-card__badge {
  font-size: 11px;
  font-weight: var(--font-weight-extrabold);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: #ecfdf5;
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.vnpt-utility-card__title {
  color: var(--vnpt-text);
  font-size: 1.15rem;
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--space-2);
}

.vnpt-utility-card__desc {
  color: var(--vnpt-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: var(--space-4);
}

.vnpt-utility-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vnpt-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  transition: gap 0.2s ease;
}

.vnpt-utility-card:hover .vnpt-utility-card__action {
  gap: 10px;
}

/* ==========================================================================
   4. WHY VNPT (TẠI SAO CHỌN VNPT TP.HCM)
   ========================================================================== */
.vnpt-pillar-card {
  height: 100%;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease;
}

.vnpt-pillar-card:hover {
  transform: translateY(-3px);
}

.vnpt-pillar-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-primary);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-4);
}

.vnpt-pillar-card__title {
  font-size: 1.1rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--vnpt-text);
  margin-bottom: var(--space-2);
}

.vnpt-pillar-card__desc {
  font-size: var(--text-sm);
  color: var(--vnpt-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   5. TIN TỨC & BÀI VIẾT (FULL WIDTH GRID THAY THẾ CHO SIDEBAR BỊ ÉP)
   ========================================================================== */
.vnpt-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .vnpt-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vnpt-news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vnpt-news-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.vnpt-news-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.vnpt-news-item__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--vnpt-bg-soft);
  overflow: hidden;
}

.vnpt-news-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.vnpt-news-item:hover .vnpt-news-item__thumb img {
  transform: scale(1.05);
}

.vnpt-news-item__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vnpt-news-item__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--vnpt-text-muted);
  margin-bottom: var(--space-2);
}

.vnpt-news-item__title {
  font-size: 1.05rem;
  font-weight: var(--font-weight-bold);
  color: var(--vnpt-text);
  line-height: 1.4;
  margin-bottom: var(--space-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vnpt-news-item__desc {
  font-size: var(--text-sm);
  color: var(--vnpt-text-secondary);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

/* ==========================================================================
   6. SERVICE PAGE TEMPLATE (CHUẨN VNPT MODERN TECH BLUE 2026)
   ========================================================================== */

/* Hero Dịch Vụ */
.vnpt-service-page {
  background: linear-gradient(180deg, #ffffff 0, #ffffff 38%, var(--vnpt-bg-soft) 38%, var(--vnpt-bg-soft) 100%);
}

.vnpt-service-page > .container.pt-3 {
  position: relative;
  z-index: 3;
}

.vnpt-service-page .vnpt-breadcrumb-wrap {
  margin-bottom: var(--space-3);
}

.vnpt-service-subnav {
  position: relative;
  z-index: 4;
  margin-top: calc(var(--space-5) * -1);
}

.vnpt-service-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  min-height: 60px;
  padding: 8px 14px;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(0, 68, 160, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.vnpt-service-page--enterprise .vnpt-service-subnav__inner {
  border-color: rgba(118, 207, 248, 0.28);
  background: rgba(7, 31, 70, 0.94);
  box-shadow: 0 12px 28px rgba(7, 31, 70, 0.22);
}

.vnpt-service-subnav__label {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--space-2);
  color: var(--vnpt-text-secondary);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-extrabold);
}

.vnpt-service-page--enterprise .vnpt-service-subnav__label {
  color: rgba(234, 246, 255, 0.88);
}

.vnpt-service-subnav__label i {
  color: var(--vnpt-primary);
  font-size: 1rem;
}

.vnpt-service-subnav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-width: 0;
}

.vnpt-service-subnav__links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  color: var(--vnpt-text-secondary);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  white-space: nowrap;
}

.vnpt-service-subnav__links a:hover {
  color: var(--vnpt-primary-dark);
  background: var(--vnpt-bg-section-blue);
}

.vnpt-service-subnav__links a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.vnpt-service-page--enterprise .vnpt-service-subnav__links a {
  color: rgba(234, 246, 255, 0.9);
}

.vnpt-service-page--enterprise .vnpt-service-subnav__links a:hover {
  color: #ffffff;
  background: rgba(34, 184, 255, 0.17);
}

.vnpt-service-hero {
  position: relative;
  background: var(--vnpt-gradient-hero);
  border-bottom: 1px solid var(--vnpt-border);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}

.vnpt-service-hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 104, 255, 0.08) 0%, rgba(0, 104, 255, 0) 70%);
  pointer-events: none;
}

.vnpt-service-hero__inner {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.vnpt-service-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--vnpt-bg-section-blue);
  border: 1px solid rgba(0, 104, 255, 0.18);
  color: var(--vnpt-primary-dark);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  box-shadow: 0 2px 8px rgba(0, 104, 255, 0.06);
}

.vnpt-service-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 850;
  color: var(--vnpt-dark-navy);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  text-wrap: balance;
}

.vnpt-service-hero__title span {
  background: var(--vnpt-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vnpt-service-hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--vnpt-text-secondary);
  line-height: 1.65;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.vnpt-service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.vnpt-service-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(220, 232, 247, 0.75);
}

.vnpt-service-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--vnpt-text-secondary);
}

/* Breadcrumb Dịch Vụ */
.vnpt-breadcrumb-wrap {
  margin-bottom: var(--space-6);
}

.vnpt-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  box-shadow: 0 2px 6px rgba(0, 68, 160, 0.04);
  font-size: var(--text-xs);
  margin: 0;
  list-style: none;
}

.vnpt-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vnpt-breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--vnpt-text-muted);
  font-weight: 400;
}

.vnpt-breadcrumb a {
  color: var(--vnpt-text-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.18s ease;
}

.vnpt-breadcrumb a:hover {
  color: var(--vnpt-primary);
}

.vnpt-breadcrumb li.active {
  color: var(--vnpt-primary);
  font-weight: var(--font-weight-bold);
}

/* Pricing Cards Dịch Vụ */
.vnpt-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: stretch;
}

.vnpt-pricing-grid.vnpt-pricing-grid--single {
  width: min(100%, 420px);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 640px) {
  .vnpt-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vnpt-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vnpt-pricing-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--vnpt-border);
  padding: var(--space-8) var(--space-6) var(--space-6);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.vnpt-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 104, 255, 0.35);
}

.vnpt-service-page .vnpt-pricing-card:focus-within {
  border-color: var(--vnpt-primary);
  box-shadow: var(--focus-ring), var(--shadow-card-hover);
}

.vnpt-pricing-card--hot {
  border: 2px solid var(--vnpt-primary);
  box-shadow: 0 12px 35px rgba(0, 104, 255, 0.14);
}

.vnpt-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  background: var(--vnpt-gradient-primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: var(--font-weight-extrabold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 104, 255, 0.35);
  white-space: nowrap;
}

.vnpt-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  animation: vnptPulse 1.6s infinite;
}

@keyframes vnptPulse {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.vnpt-pricing-header {
  text-align: center;
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--vnpt-border);
  margin-bottom: var(--space-5);
}

.vnpt-pricing-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-primary);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 0 auto var(--space-3);
  border: 1px solid rgba(0, 104, 255, 0.12);
}

.vnpt-pricing-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--vnpt-dark-navy);
  margin-bottom: var(--space-2);
}

.vnpt-speed-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: #ecfdf5;
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-extrabold);
}

.vnpt-pricing-price {
  text-align: center;
  margin-bottom: var(--space-5);
}

.vnpt-pricing-price__amount {
  font-size: clamp(1.9rem, 2.5vw, 2.3rem);
  font-weight: 850;
  color: var(--vnpt-primary-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.vnpt-pricing-price__unit {
  font-size: var(--text-xs);
  color: var(--vnpt-text-muted);
  font-weight: var(--font-weight-semibold);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vnpt-pricing-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.vnpt-pricing-promo {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  background: #fffbeb;
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #92400e;
  font-size: var(--text-xs);
  line-height: 1.55;
  font-weight: var(--font-weight-semibold);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.vnpt-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vnpt-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--vnpt-text-secondary);
  line-height: 1.5;
}

.vnpt-pricing-features li i {
  color: var(--vnpt-success);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.vnpt-pricing-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* Service Benefits */
.vnpt-benefit-card {
  height: 100%;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vnpt-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.vnpt-benefit-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-primary);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: var(--space-4);
}

.vnpt-benefit-card__title {
  font-size: 1.1rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--vnpt-text);
  margin-bottom: var(--space-2);
}

.vnpt-benefit-card__desc {
  font-size: var(--text-sm);
  color: var(--vnpt-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Suitable Audiences */
.vnpt-audience-card {
  height: 100%;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.vnpt-audience-card:hover {
  transform: translateY(-3px);
}

.vnpt-audience-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  color: var(--vnpt-primary-dark);
  margin-bottom: var(--space-3);
}

.vnpt-audience-title {
  font-size: 1.15rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--vnpt-text);
  margin-bottom: var(--space-2);
}

.vnpt-audience-desc {
  font-size: var(--text-sm);
  color: var(--vnpt-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: var(--space-4);
}

.vnpt-audience-plan {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: var(--vnpt-bg-soft);
  font-size: var(--text-xs);
  color: var(--vnpt-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Comparison Table */
.vnpt-table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--vnpt-border);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.vnpt-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  text-align: left;
}

.vnpt-comparison-table th,
.vnpt-comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--vnpt-border);
  vertical-align: middle;
}

.vnpt-comparison-table th {
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-dark-navy);
  font-weight: var(--font-weight-extrabold);
  white-space: nowrap;
}

.vnpt-comparison-table tbody tr:hover {
  background: var(--vnpt-bg-soft);
}

.vnpt-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Registration Steps */
.vnpt-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .vnpt-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vnpt-step-item {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.vnpt-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vnpt-gradient-primary);
  color: #ffffff;
  font-weight: 850;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  margin: 0 auto var(--space-4);
  box-shadow: 0 4px 12px rgba(0, 104, 255, 0.25);
}

.vnpt-step-title {
  font-size: 1.1rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--vnpt-text);
  margin-bottom: var(--space-2);
}

.vnpt-step-desc {
  font-size: var(--text-sm);
  color: var(--vnpt-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Service FAQ */
.vnpt-faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 860px;
  margin-inline: auto;
}

.vnpt-faq-item {
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  box-shadow: 0 2px 8px rgba(0, 68, 160, 0.04);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.vnpt-faq-item:hover {
  border-color: rgba(0, 104, 255, 0.3);
}

.vnpt-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--vnpt-text);
  cursor: pointer;
  gap: 16px;
}

.vnpt-faq-question i {
  color: var(--vnpt-primary);
  font-size: 1.1rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.vnpt-faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.vnpt-faq-answer {
  padding: 0 24px 20px;
  font-size: var(--text-sm);
  color: var(--vnpt-text-secondary);
  line-height: 1.7;
}

/* Modal Đăng ký nhanh */
.vnpt-service-modal .modal-content {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--vnpt-border);
  overflow: hidden;
  box-shadow: var(--shadow-floating);
}

.vnpt-service-modal__banner {
  background: var(--vnpt-gradient-dark);
  color: #ffffff;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.vnpt-service-modal__banner::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 184, 255, 0.2) 0%, rgba(34, 184, 255, 0) 70%);
}

.vnpt-service-modal__form {
  padding: var(--space-8);
  background: #ffffff;
}

.service-consents {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-top: var(--space-2);
  padding: 14px 16px;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-md);
  background: var(--vnpt-bg-soft);
  color: var(--vnpt-text-secondary);
  font-size: var(--text-xs);
  line-height: 1.55;
}

.service-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.service-consent input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--vnpt-primary);
}

.service-consent a {
  color: var(--vnpt-primary);
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
}

/* ==========================================================================
   7. ENTERPRISE SOLUTION TEMPLATE (CHUẨN VNPT MODERN TECH BLUE 2026)
   ========================================================================== */

/* Enterprise Hero */
.vnpt-ent-hero {
  position: relative;
  background: var(--vnpt-gradient-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  color: #ffffff;
}

.vnpt-ent-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(rgba(34, 184, 255, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(8, 46, 107, 0.4), rgba(7, 31, 70, 0.8));
  background-size: 28px 28px, 100% 100%;
  pointer-events: none;
}

.vnpt-ent-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 104, 255, 0.22) 0%, rgba(0, 104, 255, 0) 70%);
  pointer-events: none;
}

.vnpt-ent-hero__inner {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.vnpt-ent-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: rgba(34, 184, 255, 0.12);
  border: 1px solid rgba(34, 184, 255, 0.35);
  color: var(--vnpt-cyan);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.vnpt-ent-hero__title {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 850;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  text-wrap: balance;
}

.vnpt-ent-hero__title span {
  background: linear-gradient(135deg, #22b8ff 0%, #ffffff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vnpt-ent-hero__desc {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: rgba(234, 246, 255, 0.85);
  line-height: 1.65;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.vnpt-ent-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.vnpt-ent-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.vnpt-ent-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: rgba(234, 246, 255, 0.88);
}

.vnpt-ent-hero__trust-item i {
  font-size: 1.15rem;
}

.vnpt-service-page--enterprise .vnpt-section-header {
  max-width: 760px;
  margin-inline: auto;
}

.vnpt-service-page--enterprise .vnpt-enterprise-overview-heading {
  margin-bottom: var(--space-5);
}

.vnpt-service-page--enterprise .vnpt-overview-box {
  position: relative;
  overflow: hidden;
  border-color: rgba(0, 104, 255, 0.18);
}

.vnpt-service-page--enterprise .vnpt-overview-box::after {
  position: absolute;
  right: -96px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(22, 139, 255, 0.14);
  border-radius: 50%;
  content: '';
  pointer-events: none;
}

.vnpt-service-page--enterprise .vnpt-overview-box > * {
  position: relative;
  z-index: 1;
}

/* Pain Points (Thách thức doanh nghiệp) */
.vnpt-pain-card {
  height: 100%;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vnpt-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(239, 68, 68, 0.3);
}

.vnpt-pain-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.18);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: var(--space-4);
}

.vnpt-pain-card__title {
  font-size: 1.15rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--vnpt-text);
  margin-bottom: var(--space-2);
}

.vnpt-pain-card__desc {
  font-size: var(--text-sm);
  color: var(--vnpt-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Solution Overview Box */
.vnpt-overview-box {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--vnpt-border);
  box-shadow: var(--shadow-card);
  padding: var(--space-8);
  margin-bottom: var(--space-8);
}

/* Infrastructure Cards (Hạ tầng Tier 3) */
.vnpt-infra-card {
  height: 100%;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease;
}

.vnpt-infra-card:hover {
  transform: translateY(-3px);
}

.vnpt-infra-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-primary);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: var(--space-4);
  border: 1px solid rgba(0, 104, 255, 0.15);
}

/* Compliance Badges (Chứng chỉ bảo mật & Pháp lý) */
.vnpt-compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .vnpt-compliance-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vnpt-compliance-item {
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 68, 160, 0.04);
}

.vnpt-compliance-item i {
  font-size: 2rem;
  color: var(--vnpt-primary);
  margin-bottom: var(--space-2);
  display: inline-block;
}

.vnpt-compliance-item h4 {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-extrabold);
  color: var(--vnpt-text);
  margin-bottom: 4px;
}

.vnpt-compliance-item p {
  font-size: var(--text-xs);
  color: var(--vnpt-text-muted);
  margin: 0;
}

/* Enterprise Implementation Flow (4 bước) */
.vnpt-ent-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .vnpt-ent-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vnpt-ent-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vnpt-ent-step {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  box-shadow: var(--shadow-card);
}

.vnpt-ent-step__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-extrabold);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-primary);
  margin-bottom: var(--space-3);
}

.vnpt-ent-step__title {
  font-size: 1.05rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--vnpt-text);
  margin-bottom: var(--space-2);
}

.vnpt-ent-step__desc {
  font-size: var(--text-sm);
  color: var(--vnpt-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Enterprise Lead Box on Page */
.vnpt-lead-box {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--vnpt-border);
  box-shadow: var(--shadow-card-hover);
  padding: clamp(2rem, 4vw, 3rem);
}

.vnpt-service-page--enterprise .vnpt-lead-box {
  background:
    radial-gradient(circle at 100% 0, rgba(34, 184, 255, 0.12), transparent 28%),
    #ffffff;
  border-color: rgba(0, 104, 255, 0.2);
}

.vnpt-enterprise-lead__intro {
  max-width: 640px;
  margin: 0 auto var(--space-6);
  text-align: center;
}

.vnpt-enterprise-lead__intro h3 {
  margin-bottom: var(--space-2);
  color: var(--vnpt-dark-navy);
}

.vnpt-enterprise-lead__intro p {
  max-width: 58ch;
  margin-inline: auto;
}

.vnpt-service-page--enterprise .vnpt-lead-box .form-label {
  margin-bottom: var(--space-2);
  color: var(--vnpt-text-secondary) !important;
}

.vnpt-service-page--enterprise .vnpt-lead-box .form-control {
  min-height: 48px;
  border-color: var(--vnpt-border);
  background: rgba(255, 255, 255, 0.92);
}

.vnpt-service-page--enterprise .vnpt-lead-box textarea.form-control {
  min-height: 100px;
}

.vnpt-service-page--enterprise .vnpt-lead-box .form-control:focus {
  border-color: var(--vnpt-primary);
  box-shadow: var(--focus-ring);
}

@media (hover: hover) {
  .vnpt-service-page--enterprise .vnpt-ent-step:hover,
  .vnpt-service-page--enterprise .vnpt-infra-card:hover,
  .vnpt-service-page--enterprise .vnpt-compliance-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 104, 255, 0.28);
    box-shadow: var(--shadow-card-hover);
  }
}

@media (max-width: 767.98px) {
  .vnpt-service-subnav {
    margin-top: calc(var(--space-4) * -1);
  }

  .vnpt-service-subnav__inner {
    display: block;
    min-height: 0;
    padding: 10px 12px;
    border-radius: var(--radius-md);
  }

  .vnpt-service-subnav__label {
    margin: 0 0 6px 4px;
  }

  .vnpt-service-subnav__links {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .vnpt-service-subnav__links a {
    flex: 0 0 auto;
    min-height: 40px;
  }

  .vnpt-service-page .vnpt-service-hero__trust,
  .vnpt-service-page .vnpt-ent-hero__trust {
    gap: var(--space-3);
  }

  .vnpt-service-page .vnpt-faq-question {
    min-height: 56px;
    padding: 14px 16px;
    font-size: var(--text-base);
  }

  .vnpt-service-page .vnpt-faq-answer {
    padding: 0 16px 16px;
  }

  .vnpt-service-page--enterprise .vnpt-overview-box {
    padding: var(--space-6);
    margin-bottom: var(--space-6);
  }

  .vnpt-service-page--enterprise .vnpt-lead-box {
    padding: var(--space-6) var(--space-4);
    border-radius: var(--radius-xl);
  }
}

/* ==========================================================================
   UTILITY TOOLS & MINI SAAS WORKSPACES (PHASE 7 - VNPT 2026)
   ========================================================================== */

/* 1. Tiện ích số liên quan (Related Digital Tools) */
.vnpt-related-tools {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--vnpt-bg-soft);
  border-top: 1px solid var(--vnpt-border);
}

.vnpt-related-tools__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.vnpt-related-tools__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
}

.vnpt-related-tools__title {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: var(--vnpt-text);
  margin-bottom: var(--space-2);
}

.vnpt-related-tools__desc {
  font-size: var(--text-sm);
  color: var(--vnpt-text-secondary);
  line-height: 1.65;
  margin: 0;
}

.vnpt-related-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .vnpt-related-tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vnpt-tool-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.vnpt-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--vnpt-electric-blue);
  color: inherit;
}

.vnpt-tool-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.vnpt-tool-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-primary);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  border: 1px solid rgba(0, 104, 255, 0.15);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.vnpt-tool-card:hover .vnpt-tool-card__icon {
  background: var(--vnpt-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.vnpt-tool-card__badge {
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--vnpt-bg-light-blue);
  color: var(--vnpt-primary-dark);
}

.vnpt-tool-card__title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--vnpt-text);
  margin-bottom: var(--space-2);
}

.vnpt-tool-card__desc {
  font-size: var(--text-sm);
  color: var(--vnpt-text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-4);
}

.vnpt-tool-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--vnpt-primary);
  margin-top: auto;
}

.vnpt-tool-card:hover .vnpt-tool-card__action i {
  transform: translateX(4px);
  transition: transform 0.2s ease;
}

/* 2. Utility Consultation CTA Banner */
.vnpt-utility-cta {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  background: var(--vnpt-gradient-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.vnpt-utility-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 184, 255, 0.18) 0%, rgba(8, 46, 107, 0) 70%);
  pointer-events: none;
}

.vnpt-utility-cta__box {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.vnpt-utility-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: var(--vnpt-cyan);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
  backdrop-filter: blur(8px);
}

.vnpt-utility-cta__title {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 850;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: var(--space-3);
}

.vnpt-utility-cta__desc {
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto var(--space-6);
}

.vnpt-utility-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

/* 3. Markdown Converter Styles (.mdc-page) */
.mdc-page {
  background: var(--vnpt-bg-soft);
  color: var(--vnpt-text);
  overflow: hidden;
  min-height: 100vh;
}

.mdc-page [hidden] {
  display: none !important;
}

.mdc-hero {
  position: relative;
  background: var(--vnpt-gradient-dark);
  color: #ffffff;
  padding: 1.5rem 0 clamp(3.5rem, 6vw, 5.5rem);
  overflow: hidden;
}

.mdc-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 184, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.mdc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: var(--space-8);
  margin-top: var(--space-6);
}

.mdc-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-xs);
  margin-bottom: var(--space-2);
}

.mdc-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.mdc-breadcrumb a:hover {
  text-decoration: underline;
}

.mdc-breadcrumb i {
  font-size: 0.65rem;
  opacity: 0.7;
}

.mdc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: var(--vnpt-cyan);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
}

.mdc-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 850;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-3);
}

.mdc-hero-lead {
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 680px;
  margin: 0;
}

.mdc-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.mdc-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #ffffff;
}

.mdc-trust-row i {
  color: var(--vnpt-cyan);
}

.mdc-hero-art {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
}

.mdc-hero-art::before,
.mdc-hero-art::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(34, 184, 255, 0.25);
  border-radius: 50%;
}

.mdc-hero-art::before { width: 230px; height: 230px; transform: rotate(20deg); }
.mdc-hero-art::after { width: 170px; height: 170px; transform: rotate(-30deg); }

.mdc-hero-core {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  font-size: 2.2rem;
  color: #ffffff;
}

.mdc-file-orbit {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 72px;
  padding: 8px 6px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.mdc-file-orbit i { font-size: 1.45rem; }
.mdc-file-orbit--docx { top: 12px; left: 6%; color: #93c5fd; transform: rotate(-10deg); }
.mdc-file-orbit--pdf { right: 6%; bottom: 18px; color: #fca5a5; transform: rotate(10deg); }
.mdc-file-orbit--md { left: 14%; bottom: 10px; color: #86efac; transform: rotate(8deg); }

/* Tool Card (Mini SaaS Workspace) */
.mdc-tool-section {
  position: relative;
  z-index: 2;
  margin-top: -3.2rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.mdc-tool-card {
  max-width: 1020px;
  margin: 0 auto;
  padding: clamp(1.4rem, 3.5vw, 2.5rem);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-2xl);
  background: #ffffff;
  box-shadow: var(--shadow-card-hover);
}

.mdc-tool-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.mdc-section-kicker {
  display: inline-block;
  color: var(--vnpt-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.mdc-tool-heading h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 800;
  color: var(--vnpt-text);
  margin-bottom: 4px;
}

.mdc-tool-heading p {
  font-size: var(--text-sm);
  color: var(--vnpt-text-muted);
  margin: 0;
}

.mdc-local-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: #ecfdf5;
  border: 1px solid rgba(22, 163, 74, 0.25);
  color: #15803d;
  font-size: var(--text-xs);
  font-weight: 800;
}

.mdc-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  padding: var(--space-8) var(--space-4);
  border: 2px dashed #93c5fd;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #f8faff, #f0f7ff);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: var(--space-3);
}

.mdc-dropzone:hover,
.mdc-dropzone:focus-visible,
.mdc-dropzone.is-dragover {
  border-color: var(--vnpt-primary);
  background: #eaf4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 104, 255, 0.1);
  outline: none;
}

.mdc-dropzone-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  background: var(--vnpt-gradient-primary);
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: var(--space-3);
  box-shadow: 0 8px 18px rgba(0, 104, 255, 0.24);
}

.mdc-dropzone strong {
  font-size: 1.1rem;
  color: var(--vnpt-text);
  font-weight: 800;
}

.mdc-dropzone span {
  color: var(--vnpt-text-secondary);
  font-size: var(--text-sm);
  margin-top: 4px;
}

.mdc-dropzone u {
  color: var(--vnpt-primary);
  font-weight: 700;
}

.mdc-dropzone small {
  display: block;
  max-width: 480px;
  margin-top: var(--space-2);
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.mdc-format-note {
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.mdc-file-panel {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-md);
  background: #f8faff;
  margin-bottom: var(--space-4);
}

.mdc-file-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: var(--radius-md);
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-primary);
  font-size: 1.35rem;
}

.mdc-file-panel.is-pdf .mdc-file-icon {
  background: #fef2f2;
  color: #ef4444;
}

.mdc-file-meta {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mdc-file-meta strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--text-sm);
  color: var(--vnpt-text);
}

.mdc-file-meta span {
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.mdc-icon-button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #edf2f7;
  color: var(--vnpt-text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.mdc-icon-button:hover {
  background: #fee2e2;
  color: #dc2626;
}

.mdc-actions,
.mdc-result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.mdc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--text-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mdc-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.mdc-btn:not(:disabled):hover {
  transform: translateY(-2px);
}

.mdc-btn-primary {
  background: var(--vnpt-gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 104, 255, 0.25);
}

.mdc-btn-primary:not(:disabled):hover {
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 104, 255, 0.35);
}

.mdc-btn-secondary {
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-primary-dark);
  border-color: rgba(0, 104, 255, 0.2);
}

.mdc-btn-ghost {
  background: #fffbeb;
  color: #b45309;
  border-color: #fde68a;
}

.mdc-btn-light {
  background: #f1f5f9;
  color: #475569;
  border-color: #e2e8f0;
}

.mdc-progress {
  margin-top: var(--space-4);
}

.mdc-progress-head {
  display: flex;
  justify-content: space-between;
  color: var(--vnpt-text-secondary);
  font-size: var(--text-xs);
  font-weight: 700;
}

.mdc-progress-track {
  height: 8px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: #e2e8f0;
}

.mdc-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--vnpt-primary), var(--vnpt-cyan));
  transition: width 0.2s ease;
}

.mdc-status {
  margin-top: var(--space-3);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: #f1f5f9;
  color: var(--vnpt-text-secondary);
  font-size: var(--text-sm);
}

.mdc-status.is-error {
  background: #fef2f2;
  color: #b91c1c;
}

.mdc-status.is-success {
  background: #ecfdf5;
  color: #15803d;
}

.mdc-result {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--vnpt-border);
}

.mdc-result-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.mdc-result-head h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--vnpt-text);
  margin-bottom: 2px;
}

.mdc-result-head p {
  font-size: var(--text-xs);
  color: var(--vnpt-text-muted);
  margin: 0;
}

.mdc-result textarea {
  display: block;
  width: 100%;
  min-height: 380px;
  margin-top: var(--space-4);
  padding: var(--space-4);
  border: 1px solid #1e293b;
  border-radius: var(--radius-lg);
  outline: none;
  background: #0f172a;
  color: #e2e8f0;
  font: 400 0.86rem/1.7 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  resize: vertical;
}

.mdc-result textarea:focus {
  border-color: var(--vnpt-cyan);
  box-shadow: 0 0 0 3px rgba(34, 184, 255, 0.2);
}

.mdc-output-footer {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-2);
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.mdc-output-footer i {
  color: var(--vnpt-success);
}

/* Feature grid */
.mdc-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  max-width: 1020px;
  margin: var(--space-6) auto 0;
}

.mdc-feature-card {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.mdc-feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: var(--radius-md);
  font-size: 1.35rem;
}

.mdc-feature-icon--blue { background: #e0f2fe; color: #0284c7; }
.mdc-feature-icon--red { background: #fee2e2; color: #dc2626; }
.mdc-feature-icon--violet { background: #ede9fe; color: #7c3aed; }

.mdc-feature-card h3 {
  margin: 0 0 4px;
  color: var(--vnpt-text);
  font-size: 0.96rem;
  font-weight: 800;
}

.mdc-feature-card p {
  margin: 0;
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
  line-height: 1.55;
}

/* Instructions & FAQ */
.mdc-info-section {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: #ffffff;
  border-top: 1px solid var(--vnpt-border);
}

.mdc-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 1020px;
  margin: 0 auto;
}

.mdc-info-section h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: var(--vnpt-text);
  line-height: 1.25;
  margin: 4px 0 var(--space-3);
}

.mdc-info-lead {
  color: var(--vnpt-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.mdc-step-list {
  display: grid;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.mdc-step-list li {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-lg);
  background: var(--vnpt-bg-soft);
}

.mdc-step-list li > span {
  color: var(--vnpt-primary);
  font-size: var(--text-sm);
  font-weight: 900;
}

.mdc-step-list strong {
  display: block;
  color: var(--vnpt-text);
  font-size: var(--text-sm);
  margin-bottom: 2px;
}

.mdc-step-list p {
  margin: 0;
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
  line-height: 1.6;
}

.mdc-faq-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--vnpt-bg-soft);
  border-top: 1px solid var(--vnpt-border);
}

.mdc-faq-heading {
  max-width: 1020px;
  margin: 0 auto var(--space-6);
  text-align: center;
}

.mdc-faq-heading h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: var(--vnpt-text);
}

.mdc-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  max-width: 1020px;
  margin: 0 auto;
}

.mdc-faq-grid details {
  padding: var(--space-4) var(--space-5);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.mdc-faq-grid summary {
  color: var(--vnpt-text);
  font-weight: 750;
  font-size: var(--text-sm);
  cursor: pointer;
}

.mdc-faq-grid p {
  margin: var(--space-3) 0 0;
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .mdc-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .mdc-hero-grid { grid-template-columns: 1fr; }
  .mdc-hero-art { display: none; }
}

@media (max-width: 767.98px) {
  .mdc-info-grid,
  .mdc-feature-grid,
  .mdc-faq-grid { grid-template-columns: 1fr; }
  .mdc-tool-heading { flex-direction: column; }
  .mdc-local-badge { align-self: flex-start; }
  .mdc-actions > .mdc-btn { width: 100%; }
}

/* 4. Image Converter Styles (.imgc-page) */
.imgc-page {
  background: var(--vnpt-bg-soft);
  color: var(--vnpt-text);
  overflow: hidden;
  min-height: 100vh;
}

.imgc-hero {
  position: relative;
  padding: 1.5rem 0 clamp(3.5rem, 6vw, 5.5rem);
  color: #ffffff;
  background: var(--vnpt-gradient-dark);
  overflow: hidden;
}

.imgc-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 184, 255, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.imgc-breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-xs);
  margin-bottom: var(--space-2);
}

.imgc-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.imgc-breadcrumb a:hover {
  text-decoration: underline;
}

.imgc-breadcrumb i {
  font-size: 0.65rem;
  opacity: 0.7;
}

.imgc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: var(--space-8);
  align-items: center;
  margin-top: var(--space-6);
}

.imgc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: var(--vnpt-cyan);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
}

.imgc-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 850;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-3);
}

.imgc-hero p {
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 680px;
  margin: 0;
}

.imgc-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.imgc-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #ffffff;
}

.imgc-trust i {
  color: var(--vnpt-cyan);
}

.imgc-format-art {
  position: relative;
  min-height: 260px;
}

.imgc-format {
  position: absolute;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  font-weight: 900;
  color: #ffffff;
}

.imgc-format--jpg { left: 10px; top: 18px; background: linear-gradient(145deg, #f59e0b, #d97706); transform: rotate(-8deg); }
.imgc-format--png { left: 24px; bottom: 18px; background: linear-gradient(145deg, #a855f7, #7e22ce); transform: rotate(6deg); }
.imgc-format--gif { left: 120px; top: 92px; background: linear-gradient(145deg, #10b981, #047857); transform: rotate(-4deg); }
.imgc-format--webp { right: 10px; top: 72px; width: 108px; height: 108px; background: var(--vnpt-gradient-primary); font-size: 1.25rem; }

.imgc-arrow {
  position: absolute;
  right: 120px;
  top: 106px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--vnpt-primary);
  font-size: 1.4rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

/* Tool Workspace */
.imgc-tool-wrap {
  position: relative;
  z-index: 2;
  margin-top: -3.2rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.imgc-tool-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1.4rem, 3.5vw, 2.5rem);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-2xl);
  background: #ffffff;
  box-shadow: var(--shadow-card-hover);
}

.imgc-tool-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
}

.imgc-kicker {
  display: inline-block;
  color: var(--vnpt-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.imgc-tool-head h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 800;
  color: var(--vnpt-text);
  margin-bottom: 4px;
}

.imgc-tool-head p {
  font-size: var(--text-sm);
  color: var(--vnpt-text-muted);
  margin: 0;
}

.imgc-local {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: #ecfdf5;
  border: 1px solid rgba(22, 163, 74, 0.25);
  color: #15803d;
  font-size: var(--text-xs);
  font-weight: 800;
}

.imgc-settings {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: var(--space-4);
  margin: var(--space-5) 0;
}

.imgc-settings label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: var(--space-4);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-lg);
  background: var(--vnpt-bg-soft);
}

.imgc-settings label > span {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--vnpt-text);
}

.imgc-settings select {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--vnpt-text);
  font-weight: 700;
  font-size: var(--text-sm);
  outline: none;
}

.imgc-settings input[type=range] {
  width: 100%;
  accent-color: var(--vnpt-primary);
}

.imgc-settings small {
  color: var(--vnpt-text-muted);
  font-size: 0.72rem;
}

.imgc-dropzone {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-4);
  border: 2px dashed #93c5fd;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #f8faff, #f0f7ff);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.imgc-dropzone:hover,
.imgc-dropzone:focus,
.imgc-dropzone.is-dragover {
  border-color: var(--vnpt-primary);
  background: #eaf4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 104, 255, 0.1);
  outline: none;
}

.imgc-upload-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  background: var(--vnpt-gradient-primary);
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: var(--space-3);
  box-shadow: 0 8px 18px rgba(0, 104, 255, 0.24);
}

.imgc-dropzone strong {
  font-size: 1.1rem;
  color: var(--vnpt-text);
  font-weight: 800;
}

.imgc-dropzone > span:not(.imgc-upload-icon) {
  margin-top: 4px;
  color: var(--vnpt-text-secondary);
  font-size: var(--text-sm);
}

.imgc-dropzone u {
  color: var(--vnpt-primary);
  font-weight: 700;
}

.imgc-dropzone small {
  margin-top: var(--space-2);
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.imgc-notice {
  margin-top: var(--space-3);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: #fffbeb;
  color: #92400e;
  font-size: var(--text-sm);
  font-weight: 600;
}

.imgc-notice.is-error {
  background: #fef2f2;
  color: #b91c1c;
}

.imgc-notice.is-success {
  background: #ecfdf5;
  color: #15803d;
}

.imgc-queue-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-4) 0 var(--space-3);
}

.imgc-queue-head > div {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.imgc-queue-head > div:first-child strong {
  font-size: var(--text-sm);
  color: var(--vnpt-text);
}

.imgc-queue-head > div:first-child span {
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.imgc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: var(--radius-md);
  padding: 8px 16px;
  font-weight: 700;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all 0.18s ease;
}

.imgc-btn:hover {
  transform: translateY(-1px);
}

.imgc-btn-light {
  background: #f1f5f9;
  color: #475569;
}

.imgc-btn-primary {
  min-width: 220px;
  padding: 12px 24px;
  background: var(--vnpt-gradient-primary);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 104, 255, 0.25);
}

.imgc-btn-primary:not(:disabled):hover {
  box-shadow: 0 12px 24px rgba(0, 104, 255, 0.35);
  color: #ffffff;
}

.imgc-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.imgc-btn-download {
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-primary-dark);
  text-decoration: none;
  border: 1px solid rgba(0, 104, 255, 0.2);
}

.imgc-btn-download:hover {
  background: var(--vnpt-primary);
  color: #ffffff;
}

.imgc-btn-remove {
  width: 38px;
  height: 38px;
  padding: 0;
  background: #fee2e2;
  color: #dc2626;
  border-radius: 50%;
}

.imgc-results {
  display: grid;
  gap: var(--space-3);
}

.imgc-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.imgc-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: #f1f5f9;
}

.imgc-item-main {
  min-width: 0;
}

.imgc-item-name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--text-sm);
  color: var(--vnpt-text);
  font-weight: 700;
}

.imgc-item-meta,
.imgc-item-result {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: 4px;
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.imgc-item-result {
  color: var(--vnpt-success);
  font-weight: 700;
}

.imgc-item-badge {
  display: inline-block;
  padding: 1px 8px;
  border-radius: var(--radius-pill);
  background: #ecfdf5;
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 800;
}

.imgc-item-warning {
  display: block;
  margin-top: 4px;
  color: #b45309;
  font-size: 0.74rem;
}

.imgc-item-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.imgc-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid #dbeafe;
  border-top-color: var(--vnpt-primary);
  border-radius: 50%;
  animation: imgc-spin 0.7s linear infinite;
}

.imgc-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}

.imgc-actions p {
  margin: 0;
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.imgc-actions p i {
  color: var(--vnpt-primary);
}

.imgc-progress {
  height: 6px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: #e2e8f0;
}

.imgc-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--vnpt-cyan), var(--vnpt-primary));
  transition: width 0.2s ease;
}

@keyframes imgc-spin {
  to { transform: rotate(360deg); }
}

/* Image Converter Benefits & FAQ */
.imgc-info {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: #ffffff;
  border-top: 1px solid var(--vnpt-border);
}

.imgc-info-head {
  max-width: 720px;
  margin: 0 auto var(--space-6);
  text-align: center;
}

.imgc-info-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: var(--vnpt-text);
  margin: 4px 0 var(--space-2);
}

.imgc-info-head p {
  color: var(--vnpt-text-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
  margin: 0;
}

.imgc-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.imgc-benefits article {
  padding: var(--space-5);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-xl);
  background: var(--vnpt-bg-soft);
}

.imgc-benefits article > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-primary);
  font-size: 1.35rem;
  margin-bottom: var(--space-3);
  border: 1px solid rgba(0, 104, 255, 0.15);
}

.imgc-benefits h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--vnpt-text);
  margin-bottom: 6px;
}

.imgc-benefits p {
  color: var(--vnpt-text-secondary);
  font-size: var(--text-xs);
  line-height: 1.6;
  margin: 0;
}

.imgc-faq {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--vnpt-bg-soft);
  border-top: 1px solid var(--vnpt-border);
}

.imgc-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 980px;
  margin: 0 auto;
}

.imgc-faq details {
  padding: var(--space-4) var(--space-5);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.imgc-faq summary {
  cursor: pointer;
  font-weight: 750;
  font-size: var(--text-sm);
  color: var(--vnpt-text);
}

.imgc-faq p {
  margin: var(--space-3) 0 0;
  color: var(--vnpt-text-muted);
  line-height: 1.65;
  font-size: var(--text-xs);
}

@media (max-width: 991.98px) {
  .imgc-hero-grid { grid-template-columns: 1fr; }
  .imgc-format-art { display: none; }
  .imgc-settings { grid-template-columns: 1fr 1fr; }
  .imgc-quality { grid-column: 1 / -1; }
  .imgc-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .imgc-tool-head,
  .imgc-queue-head,
  .imgc-actions { flex-direction: column; align-items: stretch; }
  .imgc-local { align-self: flex-start; }
  .imgc-settings { grid-template-columns: 1fr; }
  .imgc-quality { grid-column: auto; }
  .imgc-item { grid-template-columns: 56px minmax(0, 1fr); }
  .imgc-thumb { width: 56px; height: 56px; }
  .imgc-item-actions { grid-column: 1 / -1; justify-content: flex-end; }
  .imgc-btn-primary { width: 100%; }
  .imgc-faq-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   9. ARTICLE & NEWS PAGES (DETAIL & LISTING)
   ========================================================================== */

/* Unified Content State (404 / 503 / Empty) */
.vnpt-content-state {
  display: grid;
  min-height: 65vh;
  padding: var(--space-12) var(--space-4);
  place-items: center;
  background: var(--vnpt-bg-soft);
}

.vnpt-content-state__card {
  max-width: 600px;
  width: 100%;
  padding: var(--space-8) var(--space-6);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-2xl);
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.vnpt-content-state__icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto var(--space-4);
  place-items: center;
  border-radius: var(--radius-xl);
  font-size: 1.75rem;
  color: var(--vnpt-primary);
  background: var(--vnpt-bg-section-blue);
}

.vnpt-content-state__icon--error {
  color: var(--vnpt-danger);
  background: #fef2f2;
}

.vnpt-content-state h1 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 850;
  color: var(--vnpt-dark-navy);
  margin-bottom: var(--space-3);
}

.vnpt-content-state p {
  color: var(--vnpt-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.65;
  margin-bottom: var(--space-6);
}

/* Article Detail Page */
.vnp-article-page {
  color: var(--vnpt-text);
  background: var(--vnpt-bg-soft);
}

.vnp-article-container {
  max-width: 1200px;
}

.vnp-article-hero {
  padding: var(--space-4) 0 calc(var(--space-12) + var(--space-4));
  color: #ffffff;
  background: var(--vnpt-gradient-dark);
  position: relative;
}

.vnp-article-breadcrumb {
  display: flex;
  overflow: hidden;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  white-space: nowrap;
}

.vnp-article-breadcrumb a,
.vnp-article-breadcrumb span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  text-overflow: ellipsis;
  transition: color 0.15s ease;
}

.vnp-article-breadcrumb a:hover {
  color: #ffffff;
}

.vnp-article-breadcrumb > i {
  flex: 0 0 auto;
  font-size: 0.65rem;
  opacity: 0.6;
}

.vnp-article-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  color: #ffffff;
  font-size: var(--text-xs);
  font-weight: 750;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.vnp-article-back:hover {
  color: #ffffff;
  transform: translateX(-3px);
}

.vnp-article-content {
  padding: 0 0 var(--space-16);
}

.vnp-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: var(--space-6);
  align-items: start;
  margin-top: -2.75rem;
}

.vnp-article-card {
  overflow: hidden;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-2xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.vnp-article-progress {
  height: 4px;
  overflow: hidden;
  background: var(--vnpt-bg-section-blue);
}

.vnp-article-progress > span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  background: var(--vnpt-gradient-primary);
  transition: width 0.16s ease-out;
}

.vnp-article-header {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem) var(--space-6);
  background: linear-gradient(180deg, #ffffff 0%, var(--vnpt-bg-soft) 100%);
  border-bottom: 1px solid var(--vnpt-border);
}

.vnp-article-category {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  color: var(--vnpt-primary);
  background: var(--vnpt-bg-section-blue);
  font-size: var(--text-xs);
  font-weight: 800;
  border: 1px solid rgba(0, 104, 255, 0.12);
}

.vnp-article-header h1 {
  margin: var(--space-4) 0 var(--space-3);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--vnpt-dark-navy);
}

.vnp-article-lead {
  max-width: 820px;
  margin: 0 0 var(--space-4);
  color: var(--vnpt-text-secondary);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}

.vnp-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.vnp-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.vnp-article-meta i {
  color: var(--vnpt-primary);
}

.vnp-article-meta span:last-child i {
  color: var(--vnpt-success);
}

.vnp-article-cover {
  margin: 0;
  background: var(--vnpt-bg-light-blue);
  border-bottom: 1px solid var(--vnpt-border);
}

.vnp-article-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.vnp-article-cover figcaption {
  padding: var(--space-2) var(--space-4);
  color: var(--vnpt-text-muted);
  background: var(--vnpt-bg-soft);
  font-size: var(--text-xs);
  font-style: italic;
  text-align: center;
}

.vnp-article-notice {
  display: flex;
  gap: var(--space-3);
  margin: var(--space-4) clamp(1.5rem, 3vw, 2.5rem) 0;
  padding: var(--space-4);
  border-left: 4px solid var(--vnpt-warning);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: #854d0e;
  background: #fefce8;
}

.vnp-article-notice strong {
  font-size: var(--text-sm);
}

.vnp-article-notice p {
  margin: 4px 0 0;
  font-size: var(--text-xs);
  line-height: 1.55;
}

.vnp-article-body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--vnpt-text-secondary);
  font-size: 1.05rem;
  line-height: 1.78;
  overflow-wrap: anywhere;
  max-width: 850px;
}

.vnp-article-body > :first-child { margin-top: 0; }
.vnp-article-body > :last-child { margin-bottom: 0; }

.vnp-article-body h2,
.vnp-article-body h3,
.vnp-article-body h4 {
  color: var(--vnpt-dark-navy);
  font-weight: 800;
  line-height: 1.35;
  scroll-margin-top: 96px;
}

.vnp-article-body h2 {
  margin: 2.4rem 0 1rem;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--vnpt-border);
}

.vnp-article-body h3 {
  margin: 1.8rem 0 0.8rem;
  font-size: 1.25rem;
}

.vnp-article-body h4 {
  margin: 1.4rem 0 0.6rem;
  font-size: 1.1rem;
}

.vnp-article-body p {
  margin-bottom: 1.25rem;
}

.vnp-article-body ul,
.vnp-article-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.vnp-article-body li {
  margin-bottom: 0.5rem;
}

.vnp-article-body a {
  color: var(--vnpt-primary);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vnp-article-body a:hover {
  color: var(--vnpt-primary-dark);
}

.vnp-article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.8rem auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.vnp-article-body iframe,
.vnp-article-body video {
  display: block;
  max-width: 100%;
  margin: 1.8rem auto;
  border: 0;
  border-radius: var(--radius-lg);
}

.vnp-article-body blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--vnpt-cyan);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--vnpt-bg-light-blue);
  color: var(--vnpt-navy);
  font-style: italic;
}

.vnpt-table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-md);
}

.vnp-article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

.vnp-article-body th,
.vnp-article-body td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--vnpt-border);
  text-align: left;
}

.vnp-article-body th {
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-dark-navy);
  font-weight: 750;
}

.vnp-article-updating {
  display: grid;
  min-height: 180px;
  place-items: center;
  color: var(--vnpt-text-muted);
  text-align: center;
}

.vnp-article-updating i {
  font-size: 1.8rem;
  color: var(--vnpt-primary);
}

.vnp-article-updating p {
  margin: 0.5rem 0 0;
}

.vnp-article-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding: var(--space-5) clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--vnpt-border);
  background: var(--vnpt-bg-soft);
}

.vnp-article-footer strong,
.vnp-article-footer small {
  display: block;
}

.vnp-article-footer strong {
  font-size: var(--text-sm);
  color: var(--vnpt-dark-navy);
}

.vnp-article-footer small {
  margin-top: 2px;
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.vnp-article-share {
  display: flex;
  gap: var(--space-2);
}

.vnp-article-share button,
.vnp-article-share a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0 var(--space-4);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-md);
  color: var(--vnpt-primary);
  background: #ffffff;
  font-size: var(--text-xs);
  font-weight: 750;
  text-decoration: none;
  transition: all 0.2s ease;
}

.vnp-article-share a {
  width: 42px;
  padding: 0;
}

.vnp-article-share button:hover,
.vnp-article-share a:hover {
  border-color: var(--vnpt-primary);
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-primary-dark);
}

.vnp-article-page :is(a, button):focus-visible {
  outline: 3px solid rgba(0, 104, 255, 0.32);
  outline-offset: 3px;
}

.vnp-article-share-status {
  width: 100%;
  margin: 0;
  font-size: var(--text-xs);
  color: var(--vnpt-success);
  font-weight: 600;
}

.vnp-article-share-status.is-error {
  color: var(--vnpt-danger);
}

/* Sidebar */
.vnp-article-sidebar {
  position: sticky;
  top: 124px;
  display: grid;
  gap: var(--space-4);
}

.vnp-article-toc,
.vnp-article-related {
  overflow: hidden;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.vnp-article-toc[hidden] {
  display: none;
}

.vnp-article-side-title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-bottom: 1px solid var(--vnpt-border);
  background: var(--vnpt-bg-soft);
}

.vnp-article-side-title > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--radius-md);
  color: var(--vnpt-primary);
  background: var(--vnpt-bg-section-blue);
  font-size: 1rem;
}

.vnp-article-side-title small {
  display: block;
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.vnp-article-side-title h2 {
  margin: 2px 0 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--vnpt-dark-navy);
}

.vnp-article-toc nav {
  display: grid;
  gap: 4px;
  padding: var(--space-3);
  max-height: 380px;
  overflow-y: auto;
}

.vnp-toc-link {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--vnpt-text-secondary);
  font-size: var(--text-xs);
  line-height: 1.45;
  text-decoration: none;
  transition: all 0.15s ease;
}

.vnp-toc-link[data-level="3"] {
  padding-left: 24px;
  font-size: 0.8rem;
  color: var(--vnpt-text-muted);
}

.vnp-toc-link:hover,
.vnp-toc-link.is-active {
  color: var(--vnpt-primary);
  background: var(--vnpt-bg-section-blue);
  font-weight: 700;
}

.vnp-toc-link.is-active {
  border-left: 3px solid var(--vnpt-primary);
}

.vnp-article-related > div {
  display: grid;
  padding: var(--space-2) var(--space-3);
}

.vnp-article-related > div > a {
  display: grid;
  min-height: 72px;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--vnpt-border);
  color: var(--vnpt-text);
  text-decoration: none;
}

.vnp-article-related > div > a:last-child {
  border-bottom: 0;
}

.vnp-article-related img {
  width: 78px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--vnpt-bg-section-blue);
  object-fit: cover;
}

.vnp-article-related strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: var(--text-xs);
  font-weight: 750;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--vnpt-text);
  transition: color 0.15s ease;
}

.vnp-article-related small {
  display: block;
  margin-top: 4px;
  color: var(--vnpt-text-muted);
  font-size: 0.72rem;
}

.vnp-article-related > div > a:hover strong {
  color: var(--vnpt-primary);
}

.vnp-article-related-all {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border-top: 1px solid var(--vnpt-border);
  color: var(--vnpt-primary);
  background: var(--vnpt-bg-soft);
  font-size: var(--text-xs);
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s ease;
}

.vnp-article-related-all:hover {
  background: var(--vnpt-bg-section-blue);
}

.vnp-article-support {
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  color: #ffffff;
  background: var(--vnpt-gradient-dark);
  box-shadow: var(--shadow-card);
}

.vnp-article-support-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.vnp-article-support-head span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.15);
  font-size: 1.2rem;
}

.vnp-article-support small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-xs);
}

.vnp-article-support h2 {
  margin: 2px 0 0;
  font-size: 1rem;
  font-weight: 850;
  color: #ffffff;
}

.vnp-article-support p {
  margin: 0 0 var(--space-4);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-xs);
  line-height: 1.6;
}

.vnp-article-support-actions {
  display: grid;
  gap: var(--space-2);
}

.vnp-article-support-btn-phone {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border-radius: var(--radius-md);
  color: var(--vnpt-primary);
  background: #ffffff;
  font-size: var(--text-xs);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease;
}

.vnp-article-support-btn-phone:hover {
  color: var(--vnpt-primary-dark);
  transform: translateY(-2px);
}

.vnp-article-support-btn-zalo {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font-size: var(--text-xs);
  font-weight: 750;
  text-decoration: none;
  transition: background 0.15s ease;
}

.vnp-article-support-btn-zalo:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

/* News Listing Page */
.vnp-news-page {
  color: var(--vnpt-text);
  background: var(--vnpt-bg-soft);
}

.vnp-news-container {
  max-width: 1200px;
}

.vnp-news-hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-5) 0 calc(var(--space-12) + var(--space-6));
  color: #ffffff;
  background: var(--vnpt-gradient-dark);
}

.vnp-news-hero-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 184, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.vnp-news-hero-shape-one {
  width: 450px;
  height: 450px;
  top: -200px;
  right: -100px;
}

.vnp-news-hero-shape-two {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: 5%;
}

.vnp-news-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-xs);
}

.vnp-news-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: inherit;
  text-decoration: none;
}

.vnp-news-breadcrumb a:hover {
  color: #ffffff;
}

.vnp-news-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: var(--space-8);
  align-items: end;
  margin-top: var(--space-6);
}

.vnp-news-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: #dff3ff;
  background: rgba(255, 255, 255, 0.1);
  font-size: var(--text-xs);
  font-weight: 800;
}

.vnp-news-hero-copy h1 {
  margin: var(--space-4) 0 var(--space-3);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.vnp-news-hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.65;
}

.vnp-news-hero-stats {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-5);
}

.vnp-news-hero-stats span {
  display: grid;
}

.vnp-news-hero-stats strong {
  font-size: 1.2rem;
  color: #ffffff;
}

.vnp-news-hero-stats small {
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-xs);
}

.vnp-news-search {
  padding: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  background: rgba(8, 46, 107, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.vnp-news-search label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 750;
  color: #ffffff;
}

.vnp-news-search > div {
  display: grid;
  min-height: 52px;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.vnp-news-search > div > i {
  color: var(--vnpt-text-muted);
  text-align: center;
  font-size: 1.1rem;
}

.vnp-news-search input {
  min-width: 0;
  height: 50px;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--vnpt-text);
  background: transparent;
  font-size: var(--text-sm);
}

.vnp-news-search button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: var(--space-2);
  margin-right: 5px;
  padding: 0 var(--space-4);
  border: 0;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: var(--vnpt-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  transition: background 0.15s ease;
}

.vnp-news-search button:hover {
  background: var(--vnpt-primary-dark);
}

.vnp-news-search > a,
.vnp-news-search > small {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-xs);
  text-decoration: none;
}

.vnp-news-search > a:hover {
  color: #ffffff;
}

.vnp-news-content {
  position: relative;
  z-index: 2;
  padding: 0 0 var(--space-16);
}

/* Shared package catalog panel for editorial surfaces. The data and package
 * links remain in sidebar-goicuoc.php; this layer only supplies the page shell. */
.vnp-package-catalog-panel {
  overflow: hidden;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.vnp-package-catalog-panel__head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-bottom: 1px solid var(--vnpt-border);
  background: linear-gradient(135deg, var(--vnpt-bg-section-blue), #ffffff);
}

.vnp-package-catalog-panel__head > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: var(--vnpt-gradient-primary);
  box-shadow: 0 8px 18px rgba(0, 104, 255, 0.18);
}

.vnp-package-catalog-panel__head small,
.vnp-package-catalog-panel__head h2 {
  display: block;
}

.vnp-package-catalog-panel__head small {
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vnp-package-catalog-panel__head h2 {
  margin: 2px 0 0;
  color: var(--vnpt-dark-navy);
  font-size: 1rem;
  font-weight: 800;
}

.vnp-package-catalog-panel__body {
  padding: var(--space-3);
}

.vnp-news-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: var(--space-6);
  align-items: start;
  margin-top: -3.5rem;
}

.vnp-news-package-sidebar {
  position: sticky;
  top: 96px;
}

.vnp-news-listing {
  min-width: 0;
}

.vnp-news-layout .vnp-news-featured {
  margin-top: 0;
}

.vnp-article-package-catalog {
  min-width: 0;
}

.vnp-news-featured {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  margin-top: -3.5rem;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-2xl);
  background: #ffffff;
  box-shadow: var(--shadow-card-hover);
}

.vnp-news-featured-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--vnpt-bg-light-blue);
}

.vnp-news-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vnp-news-featured:hover .vnp-news-featured-media img {
  transform: scale(1.03);
}

.vnp-news-featured-media > span,
.vnp-news-card-media > span {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  color: #ffffff;
  background: rgba(220, 38, 38, 0.92);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
  font-size: var(--text-xs);
  font-weight: 800;
}

.vnp-news-featured-media > span i,
.vnp-news-card-media > span i {
  color: #fbbf24;
}

.vnp-news-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
}

.vnp-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
}

.vnp-news-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vnp-news-meta i {
  color: var(--vnpt-primary);
}

.vnp-news-featured-copy h2 {
  margin: var(--space-3) 0 var(--space-3);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.vnp-news-featured-copy h2 a,
.vnp-news-card h3 a {
  color: var(--vnpt-dark-navy);
  text-decoration: none;
  transition: color 0.15s ease;
}

.vnp-news-featured-copy h2 a:hover,
.vnp-news-card h3 a:hover {
  color: var(--vnpt-primary);
}

.vnp-news-featured-copy > p {
  margin: 0;
  color: var(--vnpt-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.vnp-news-primary-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  align-self: flex-start;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding: 0 var(--space-5);
  border-radius: var(--radius-md);
  color: #ffffff;
  background: var(--vnpt-gradient-primary);
  box-shadow: 0 8px 20px rgba(0, 104, 255, 0.2);
  font-size: var(--text-xs);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vnp-news-primary-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 104, 255, 0.28);
}

.vnp-news-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin: var(--space-12) 0 var(--space-6);
}

.vnp-news-section-head span {
  color: var(--vnpt-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vnp-news-section-head h2 {
  margin: 4px 0 0;
  font-size: 1.65rem;
  font-weight: 850;
  color: var(--vnpt-dark-navy);
  letter-spacing: -0.02em;
}

.vnp-news-section-head > p {
  max-width: 400px;
  margin: 0;
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
  text-align: right;
}

.vnp-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.vnp-news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vnp-news-card:hover {
  border-color: rgba(0, 104, 255, 0.3);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.vnp-news-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--vnpt-bg-light-blue);
}

.vnp-news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.vnp-news-card:hover .vnp-news-card-media img {
  transform: scale(1.04);
}

.vnp-news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: var(--space-5);
}

.vnp-news-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: var(--space-3) 0 var(--space-2);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vnp-news-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 4.2em;
  margin: 0;
  color: var(--vnpt-text-secondary);
  font-size: var(--text-xs);
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.vnp-news-card-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  margin-top: auto;
  padding-top: var(--space-3);
  color: var(--vnpt-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  text-decoration: none;
}

.vnp-news-card-link i {
  transition: transform 0.2s ease;
}

.vnp-news-card-link:hover i {
  transform: translateX(4px);
}

.vnp-news-pagination {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: var(--space-4);
  align-items: center;
  max-width: 600px;
  margin: var(--space-12) auto 0;
}

.vnp-news-pagination > div {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
}

.vnp-news-page-arrow,
.vnp-news-page-number {
  display: inline-flex;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-md);
  color: var(--vnpt-text-secondary);
  background: #ffffff;
  font-size: var(--text-xs);
  font-weight: 750;
  text-decoration: none;
  transition: all 0.15s ease;
}

.vnp-news-page-arrow {
  padding: 0 var(--space-4);
}

.vnp-news-page-number:hover,
.vnp-news-page-arrow:hover {
  border-color: var(--vnpt-primary);
  color: var(--vnpt-primary);
  background: var(--vnpt-bg-section-blue);
}

.vnp-news-page-number.is-current {
  border-color: var(--vnpt-primary);
  color: #ffffff;
  background: var(--vnpt-primary);
  box-shadow: 0 4px 14px rgba(0, 104, 255, 0.25);
}

.vnp-news-page-arrow.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.vnp-news-page-gap {
  display: grid;
  width: 28px;
  place-items: center;
  color: var(--vnpt-text-muted);
}

.vnp-news-state {
  max-width: 640px;
  margin: -2.5rem auto 0;
  padding: var(--space-8) var(--space-6);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-2xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.vnp-news-state > span {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-3);
  place-items: center;
  border-radius: var(--radius-xl);
  color: var(--vnpt-primary);
  background: var(--vnpt-bg-section-blue);
  font-size: 1.6rem;
}

.vnp-news-state h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 850;
  color: var(--vnpt-dark-navy);
}

.vnp-news-state p {
  max-width: 480px;
  margin: var(--space-2) auto var(--space-5);
  color: var(--vnpt-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.vnp-news-state a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 var(--space-6);
  border-radius: var(--radius-md);
  color: #ffffff;
  background: var(--vnpt-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  text-decoration: none;
}

/* Responsive Rules */
@media (max-width: 1199.98px) {
  .vnp-news-layout {
    grid-template-columns: 1fr;
  }
  .vnp-news-package-sidebar {
    position: static;
    order: 2;
    margin-top: var(--space-6);
  }
  .vnp-news-listing {
    order: 1;
  }
}

@media (max-width: 991.98px) {
  .vnp-article-layout {
    grid-template-columns: 1fr;
  }
  .vnp-article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vnp-article-toc,
  .vnp-article-related,
  .vnp-article-package-catalog {
    grid-column: 1 / -1;
  }
  .vnp-news-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-top: var(--space-5);
  }
  .vnp-news-featured {
    grid-template-columns: 1fr;
  }
  .vnp-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .vnp-article-hero {
    padding: var(--space-3) 0 calc(var(--space-8) + var(--space-3));
  }
  .vnp-article-layout {
    margin-top: -1.75rem;
  }
  .vnp-article-card {
    border-radius: var(--radius-xl);
  }
  .vnp-article-header {
    padding: var(--space-4);
  }
  .vnp-article-header h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .vnp-article-body {
    padding: var(--space-4);
    font-size: 1rem;
    line-height: 1.7;
  }
  .vnp-article-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-4);
  }
  .vnp-article-share {
    width: 100%;
  }
  .vnp-article-share button {
    flex: 1;
  }
  .vnp-article-sidebar {
    grid-template-columns: 1fr;
  }
  .vnp-news-hero {
    padding: var(--space-4) 0 calc(var(--space-8) + var(--space-4));
  }
  .vnp-news-hero-copy h1 {
    font-size: 1.85rem;
  }
  .vnp-news-hero-stats {
    gap: var(--space-4);
  }
  .vnp-news-search {
    padding: var(--space-3);
  }
  .vnp-news-featured {
    margin-top: -2.5rem;
    border-radius: var(--radius-xl);
  }
  .vnp-news-layout {
    margin-top: -2.5rem;
  }
  .vnp-package-catalog-panel {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .vnp-package-catalog-panel__body {
    padding: var(--space-3);
  }
  .vnp-news-package-sidebar {
    margin-top: 0;
  }
  .vnp-article-package-catalog {
    order: 10;
  }
  .vnp-news-section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-top: var(--space-8);
  }
  .vnp-news-section-head > p {
    text-align: left;
  }
  .vnp-news-grid {
    grid-template-columns: 1fr;
  }
  .vnp-news-card-media {
    aspect-ratio: 16 / 9;
  }
  .vnp-news-card-body {
    padding: var(--space-4);
  }
  .vnp-news-card p {
    display: -webkit-box;
    min-height: 0;
    -webkit-line-clamp: 2;
  }
  .vnp-news-pagination {
    gap: var(--space-2);
  }
  .vnp-news-pagination > div {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .vnp-news-page-arrow {
    width: 44px;
    padding: 0;
  }
  .vnp-news-page-arrow span {
    display: none;
  }
}

@media (max-width: 420px) {
  .vnp-article-share button span {
    display: none;
  }
  .vnp-article-share button {
    flex: 0 0 44px;
    padding: 0;
  }
  .vnp-article-share a {
    flex: 0 0 44px;
  }
  .vnp-news-pagination > div {
    gap: 4px;
  }
  .vnp-news-page-number {
    min-width: 40px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vnp-article-progress > span {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vnp-article-back,
  .vnp-article-share *,
  .vnp-article-support-btn-phone,
  .vnp-news-card,
  .vnp-news-card img,
  .vnp-news-featured img,
  .vnp-news-primary-link,
  .vnp-news-card-link i {
    transition: none !important;
    transform: none !important;
  }
}

/* ==========================================================================
   10. CUSTOMER SUPPORT & DIRECTORY PAGES (Phase 9)
   ========================================================================== */

/* --------------------------------------------------------------------------
   10.1 Contact & Official Representation Page (.contact-page)
   -------------------------------------------------------------------------- */
.contact-page {
  color: var(--vnpt-text);
  background: #ffffff;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  min-height: 60vh;
}

.contact-page * {
  box-sizing: border-box;
}

.contact-page .container {
  width: 100%;
  max-width: var(--container-max-width, 1240px);
  margin-inline: auto;
  padding-inline: var(--gutter-desktop, var(--space-6));
}

@media (max-width: 767px) {
  .contact-page .container {
    padding-inline: var(--gutter-mobile, var(--space-4));
  }
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-6) 0 var(--space-24);
  color: var(--vnpt-text);
  background: radial-gradient(circle at 88% 18%, rgba(34, 184, 255, 0.15), transparent 26%),
              linear-gradient(135deg, #ffffff 0%, #f4f8ff 50%, #eaf4ff 100%);
  border-bottom: 1px solid var(--vnpt-border);
}

.contact-hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -16rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(0, 104, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 56px rgba(0, 104, 255, 0.022), 0 0 0 112px rgba(0, 104, 255, 0.014);
  pointer-events: none;
}

.contact-breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-12);
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
  font-weight: 500;
}

.contact-breadcrumb a {
  color: var(--vnpt-primary-dark);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.18s ease;
}

.contact-breadcrumb a:hover {
  color: var(--vnpt-primary);
}

.contact-breadcrumb i {
  font-size: 10px;
  color: #94a3b8;
}

.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: var(--space-16);
  align-items: center;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  border: 1px solid #cfe2ff;
  border-radius: var(--radius-pill);
  color: var(--vnpt-primary-dark);
  background: var(--vnpt-bg-section-blue);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.025em;
}

.contact-eyebrow i {
  font-size: 14px;
}

.contact-hero h1 {
  max-width: 700px;
  margin: var(--space-4) 0;
  color: var(--vnpt-text);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: var(--leading-tight);
}

.contact-hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--vnpt-text-secondary);
  font-size: var(--text-md);
  font-weight: 450;
  line-height: var(--leading-loose);
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.contact-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-button-primary {
  border: 0;
  color: #ffffff;
  background: var(--vnpt-gradient-primary);
  box-shadow: 0 10px 24px rgba(0, 104, 255, 0.2);
}

.contact-button-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.contact-button-light {
  border: 1px solid #9cc8ff;
  color: var(--vnpt-primary-dark);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.contact-button-light:hover {
  border-color: var(--vnpt-primary);
  color: var(--vnpt-primary-dark);
  background: #ffffff;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.contact-button:focus-visible,
.contact-zalo-action:focus-visible,
.contact-copy:focus-visible,
.contact-method-strip a:focus-visible {
  outline: 3px solid rgba(0, 104, 255, 0.35);
  outline-offset: 3px;
}

.contact-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
  margin-top: var(--space-6);
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
}

.contact-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-hero-trust i {
  color: var(--vnpt-primary);
  font-size: 15px;
}

/* Zalo QR Quick Contact Card */
.contact-zalo-card {
  position: relative;
  display: grid;
  grid-template-columns: 174px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  gap: var(--space-4) var(--space-6);
  align-items: center;
  padding: var(--space-6);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-floating);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.contact-zalo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 104, 255, 0.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 104, 255, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to left, #000, transparent 72%);
  pointer-events: none;
}

.contact-zalo-card > * {
  position: relative;
  z-index: 1;
}

.contact-zalo-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.contact-zalo-card .contact-card-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: var(--vnpt-gradient-primary);
  box-shadow: 0 8px 20px rgba(0, 104, 255, 0.2);
  font-size: 20px;
}

.contact-zalo-card small {
  display: block;
  color: var(--vnpt-primary-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-zalo-card strong {
  display: block;
  margin-top: 2px;
  color: var(--vnpt-text);
  font-size: var(--text-lg);
  font-weight: 800;
}

.contact-zalo-card .contact-zalo-qr {
  grid-column: 1;
  grid-row: 2 / 4;
  position: relative;
  display: block;
  width: 174px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  text-decoration: none;
}

.contact-zalo-qr img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.contact-zalo-qr span {
  position: absolute;
  right: 50%;
  bottom: -10px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border: 1px solid #cfe2ff;
  border-radius: var(--radius-pill);
  color: var(--vnpt-primary-dark);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 104, 255, 0.1);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  transform: translateX(50%);
}

.contact-zalo-card > p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--vnpt-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  text-align: left;
}

.contact-zalo-card .contact-zalo-action {
  grid-column: 2;
  grid-row: 3;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px 16px;
  border: 1px solid #9cc8ff;
  border-radius: var(--radius-md);
  color: var(--vnpt-primary-dark);
  background: #ffffff;
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-zalo-card .contact-zalo-action:hover {
  border-color: var(--vnpt-primary);
  color: var(--vnpt-primary-dark);
  background: var(--vnpt-bg-light-blue);
  box-shadow: 0 8px 24px rgba(0, 104, 255, 0.1);
  transform: translateY(-2px);
}

/* Contact Panels (Information & Legal) */
.contact-content {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.contact-section-heading {
  max-width: 760px;
  margin: 0 auto var(--space-12);
  text-align: center;
}

.contact-section-heading > span {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: var(--vnpt-primary-dark);
  background: var(--vnpt-bg-section-blue);
  font-size: var(--text-xs);
  font-weight: 700;
}

.contact-section-heading h2 {
  margin: var(--space-3) 0;
  color: var(--vnpt-text);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: var(--leading-tight);
}

.contact-section-heading p {
  margin: 0;
  color: var(--vnpt-text-muted);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.contact-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.contact-panel {
  padding: var(--space-8);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-panel:hover {
  border-color: #9cc8ff;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.contact-panel-heading {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.contact-panel-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: var(--vnpt-gradient-primary);
  box-shadow: 0 8px 20px rgba(0, 104, 255, 0.18);
  font-size: 20px;
}

.contact-panel-icon-blue {
  color: #ffffff;
  background: linear-gradient(135deg, #22b8ff 0%, #168bff 45%, #0052cc 100%);
}

.contact-panel-heading small {
  display: block;
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.025em;
}

.contact-panel-heading h2 {
  margin: 2px 0 0;
  color: var(--vnpt-text);
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.3;
}

.contact-legal-name {
  margin: var(--space-6) 0 var(--space-3);
  color: var(--vnpt-text-secondary);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: var(--leading-normal);
}

.contact-data-list,
.contact-bank-list {
  margin: 0;
}

.contact-data-list > div,
.contact-bank-list > div {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: var(--space-4);
  padding: 14px 0;
  border-bottom: 1px solid #e8eff8;
}

.contact-data-list dt,
.contact-bank-list dt {
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
}

.contact-data-list dt i {
  width: 1.2rem;
  color: var(--vnpt-primary);
}

.contact-data-list dd,
.contact-bank-list dd {
  min-width: 0;
  margin: 0;
  color: var(--vnpt-text-secondary);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: var(--leading-normal);
  overflow-wrap: anywhere;
}

.contact-data-list dd,
.contact-bank-primary dd,
.contact-bank-code dd {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-copy {
  display: inline-grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-sm);
  color: var(--vnpt-primary-dark);
  background: var(--vnpt-bg-soft);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.contact-copy:hover {
  border-color: #9cc8ff;
  color: var(--vnpt-primary);
  background: var(--vnpt-bg-section-blue);
}

.contact-verification {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-6);
  padding: 14px 16px;
  border: 1px solid #bbe7c9;
  border-radius: var(--radius-md);
  background: #f0fdf4;
}

.contact-verification > i {
  color: var(--vnpt-success);
  font-size: 20px;
}

.contact-verification strong,
.contact-verification span {
  display: block;
}

.contact-verification strong {
  color: #166534;
  font-size: var(--text-xs);
  font-weight: 700;
}

.contact-verification span {
  margin-top: 2px;
  color: #4b7960;
  font-size: 12px;
}

.contact-verification .contact-document-open {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid #86d5a2;
  border-radius: var(--radius-sm);
  color: #166534;
  background: #ffffff;
  font: inherit;
  font-size: var(--text-xs);
  font-weight: 750;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-verification .contact-document-open:hover {
  border-color: #4fbb75;
  background: #f8fffa;
  box-shadow: 0 6px 18px rgba(22, 101, 52, 0.12);
  transform: translateY(-1px);
}

.contact-site-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: var(--space-4);
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
  line-height: var(--leading-normal);
}

.contact-site-note i {
  color: var(--vnpt-primary);
  margin-top: 2px;
}

.contact-bank-list {
  margin-top: var(--space-6);
}

.contact-bank-primary {
  padding: 14px 16px !important;
  border-radius: var(--radius-md);
  background: var(--vnpt-bg-light-blue);
}

.contact-bank-primary dt {
  color: var(--vnpt-primary-dark);
}

.contact-bank-primary dd strong {
  color: var(--vnpt-primary-dark);
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-bank-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: var(--space-6);
  padding: 14px 16px;
  border: 1px solid #fde3aa;
  border-radius: var(--radius-md);
  color: #7c5a10;
  background: #fffbeb;
  font-size: var(--text-xs);
  line-height: var(--leading-normal);
}

.contact-bank-note i {
  color: var(--vnpt-warning);
  margin-top: 2px;
}

/* 3-Column Method Strip */
.contact-method-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-bottom: 0;
}

.contact-method-strip > a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: var(--space-3);
  align-items: center;
  min-height: 92px;
  padding: var(--space-4);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-lg);
  color: inherit;
  background: #ffffff;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-method-strip > a:hover {
  border-color: #9cc8ff;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.contact-method-strip > a > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: var(--vnpt-gradient-primary);
  box-shadow: 0 8px 20px rgba(0, 104, 255, 0.18);
  font-size: 18px;
}

.contact-method-strip small {
  display: block;
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
}

.contact-method-strip strong {
  display: block;
  margin-top: 3px;
  color: var(--vnpt-text);
  font-size: var(--text-sm);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-method-strip > a > i {
  color: #94a3b8;
  font-size: 14px;
}

/* Contact Request Form Section */
.contact-request-section {
  padding: var(--space-24) 0;
  background: var(--vnpt-bg-soft);
  scroll-margin-top: 90px;
}

.contact-form-shell {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  max-width: 1120px;
  margin-inline: auto;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-floating);
}

.contact-form-aside {
  position: relative;
  overflow: hidden;
  padding: var(--space-12);
  color: #ffffff;
  background: radial-gradient(circle at 18% 100%, rgba(34, 184, 255, 0.22), transparent 34%),
              linear-gradient(135deg, var(--vnpt-navy), var(--vnpt-primary-dark));
}

.contact-form-kicker {
  color: #a9d9ff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form-aside h2 {
  margin: var(--space-3) 0 var(--space-4);
  color: #ffffff;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: var(--leading-tight);
}

.contact-form-aside > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.contact-form-aside > p strong {
  color: #ffffff;
}

.contact-process {
  display: grid;
  gap: var(--space-6);
  margin: var(--space-8) 0;
  padding: 0;
  list-style: none;
}

.contact-process li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: var(--space-4);
}

.contact-process li > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: var(--text-sm);
  font-weight: 800;
}

.contact-process strong {
  display: block;
  color: #ffffff;
  font-size: var(--text-sm);
}

.contact-process small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-xs);
  line-height: var(--leading-normal);
}

.contact-response-note {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.09);
}

.contact-response-note > i {
  color: var(--vnpt-cyan);
  font-size: 22px;
}

.contact-response-note strong {
  display: block;
  color: #ffffff;
  font-size: var(--text-xs);
}

.contact-response-note span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

.contact-form-card {
  padding: var(--space-12);
}

.contact-form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.contact-form-heading span {
  color: var(--vnpt-primary-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.contact-form-heading h2 {
  margin: 4px 0 0;
  color: var(--vnpt-text);
  font-size: var(--text-xl);
  font-weight: 800;
}

.contact-form-heading > i {
  color: #afcfff;
  font-size: 32px;
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field > label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  color: var(--vnpt-text-secondary);
  font-size: var(--text-xs);
  font-weight: 700;
}

.contact-field > label span {
  color: var(--vnpt-danger);
}

.contact-field > label small {
  color: var(--vnpt-text-muted);
  font-size: 11px;
  font-weight: 500;
}

.contact-input {
  position: relative;
}

.contact-input > i {
  position: absolute;
  z-index: 1;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6d8ca6;
  font-size: 16px;
  pointer-events: none;
}

.contact-input input,
.contact-input select,
.contact-input textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px 12px 42px;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-md);
  outline: 0;
  color: var(--vnpt-text);
  background: #ffffff;
  font: inherit;
  font-size: var(--text-sm);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-input textarea {
  display: block;
  min-height: 114px;
  resize: vertical;
  line-height: var(--leading-normal);
}

.contact-textarea > i {
  top: 14px;
  transform: none;
}

.contact-input input:focus,
.contact-input select:focus,
.contact-input textarea:focus {
  border-color: var(--vnpt-primary);
  box-shadow: 0 0 0 4px rgba(0, 104, 255, 0.1);
}

.contact-character-hint {
  display: block;
  margin-top: 4px;
  color: var(--vnpt-text-muted);
  font-size: 11px;
}

.invalid-feedback {
  display: none;
  font-size: 12px;
  color: var(--vnpt-danger);
  margin-top: 4px;
}

.contact-form.was-validated .contact-field:has(:invalid) .invalid-feedback {
  display: block;
}

.contact-form.was-validated .contact-input:has(:invalid) input,
.contact-form.was-validated .contact-input:has(:invalid) select,
.contact-form.was-validated .contact-input:has(:invalid) textarea {
  border-color: var(--vnpt-danger);
  background: #fff8f8;
}

.contact-consents {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: var(--space-4);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-md);
  background: var(--vnpt-bg-soft);
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
  line-height: var(--leading-normal);
  cursor: pointer;
}

.contact-consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--vnpt-primary);
}

.contact-consent span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-consent a {
  color: var(--vnpt-primary-dark);
  font-weight: 700;
  text-decoration: underline;
}

.contact-consent-required {
  color: var(--vnpt-text-secondary);
}

.contact-submit {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  border: 0;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: var(--vnpt-gradient-primary);
  box-shadow: 0 10px 24px rgba(0, 104, 255, 0.2);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.75;
  transform: none;
}

.contact-form-security {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin: var(--space-3) 0 0;
  color: var(--vnpt-text-muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.contact-form-security i {
  color: var(--vnpt-success);
}

.contact-alert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  padding: 12px 16px;
  border: 1px solid;
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
}

.contact-alert-success {
  border-color: #bce4cc;
  color: #256544;
  background: #effaf3;
}

.contact-alert-error {
  border-color: #f1c2c7;
  color: #91333c;
  background: #fff2f3;
}

.contact-alert-warning {
  border-color: #eedca6;
  color: #7f6320;
  background: #fff9e8;
}

.contact-copy-status {
  position: fixed;
  z-index: 1085;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 280px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: var(--vnpt-navy);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  font-size: var(--text-xs);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.contact-copy-status.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive for Contact Page */
@media (max-width: 1023.98px) {
  .contact-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: var(--space-8);
  }
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  .contact-zalo-card {
    grid-template-columns: 140px 1fr;
    padding: var(--space-4);
  }
  .contact-zalo-card .contact-zalo-qr {
    width: 140px;
  }
  .contact-form-shell {
    grid-template-columns: 1fr;
  }
  .contact-form-aside {
    padding: var(--space-8);
  }
  .contact-process {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .contact-hero {
    padding-bottom: var(--space-16);
  }
  .contact-breadcrumb {
    margin-bottom: var(--space-8);
  }
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .contact-hero h1 {
    font-size: 2.15rem;
  }
  .contact-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .contact-button {
    width: 100%;
  }
  .contact-zalo-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px 16px;
    padding: var(--space-4) !important;
    border-radius: var(--radius-xl);
  }
  .contact-zalo-card .contact-zalo-qr {
    grid-column: 1;
    grid-row: 2 / 4;
    width: 104px;
  }
  .contact-zalo-card > p {
    grid-column: 2;
    grid-row: 2;
    font-size: var(--text-xs);
  }
  .contact-zalo-card .contact-zalo-action {
    grid-column: 2;
    grid-row: 3;
  }
  .contact-content,
  .contact-request-section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }
  .contact-summary-grid {
    grid-template-columns: 1fr;
  }
  .contact-panel {
    padding: var(--space-6);
  }
  .contact-panel:hover {
    transform: none;
  }
  .contact-data-list > div,
  .contact-bank-list > div {
    grid-template-columns: 120px minmax(0, 1fr);
  }
  .contact-verification {
    grid-template-columns: auto 1fr;
  }
  .contact-verification .contact-document-open {
    grid-column: 2;
    justify-self: start;
  }
  .contact-method-strip {
    grid-template-columns: 1fr;
  }
  .contact-form-aside {
    padding: var(--space-6);
  }
  .contact-process {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .contact-form-card {
    padding: var(--space-6);
  }
  .contact-fields {
    grid-template-columns: 1fr;
  }
  .contact-copy-status {
    right: 1rem;
    bottom: 5.5rem;
    left: 1rem;
    max-width: none;
    text-align: center;
  }
}

@media (max-width: 479.98px) {
  .contact-hero h1 {
    font-size: 1.85rem;
  }
  .contact-hero h1 br {
    display: none;
  }
  .contact-zalo-card {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 10px 12px;
  }
  .contact-zalo-card .contact-zalo-qr {
    width: 90px;
  }
  .contact-data-list > div,
  .contact-bank-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .contact-form-heading > i {
    display: none;
  }
}


/* --------------------------------------------------------------------------
   10.2 Store Directory Page (.vnp-locator)
   -------------------------------------------------------------------------- */
.vnp-locator {
  color: var(--vnpt-text);
  background: var(--vnpt-bg-soft);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  padding-bottom: var(--space-12);
  min-height: 60vh;
}

.vnp-locator * {
  box-sizing: border-box;
}

.vnp-locator [hidden] {
  display: none !important;
}

.vnp-locator a {
  color: var(--vnpt-primary-dark);
  text-decoration: none;
}

.vnp-locator a:hover {
  text-decoration: underline;
}

.vnp-locator :is(a, button, input, select):focus-visible {
  outline: 3px solid rgba(0, 104, 255, 0.35);
  outline-offset: 3px;
}

.vnp-locator .vl-shell {
  width: 100%;
  max-width: var(--container-max-width, 1240px);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

@media (min-width: 768px) {
  .vnp-locator .vl-shell {
    padding-inline: var(--space-6);
  }
}

@media (min-width: 1200px) {
  .vnp-locator .vl-shell {
    padding-inline: var(--space-8);
  }
}

.vnp-locator .vl-hero {
  padding: var(--space-6) 0 var(--space-8);
  background: radial-gradient(circle at 90% 15%, rgba(34, 184, 255, 0.12), transparent 25%),
              linear-gradient(135deg, #ffffff 0%, #f4f8ff 60%, #eaf4ff 100%);
  border-bottom: 1px solid var(--vnpt-border);
}

.vnp-locator .vl-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: 0 0 var(--space-6);
  padding: 0;
  list-style: none;
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.vnp-locator .vl-crumbs li + li::before {
  content: "/";
  padding-right: 8px;
  color: #94a3b8;
}

.vnp-locator .vl-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8);
}

.vnp-locator .vl-kicker {
  display: block;
  color: var(--vnpt-primary-dark);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 750;
  margin-bottom: var(--space-2);
}

.vnp-locator h1 {
  margin: 0 0 var(--space-2);
  color: var(--vnpt-text);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: var(--leading-tight);
  letter-spacing: -0.035em;
  font-weight: 800;
}

.vnp-locator .vl-intro p {
  max-width: 650px;
  margin: 0;
  color: var(--vnpt-text-muted);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}

.vnp-locator .vl-stat {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.vnp-locator .vl-stat strong {
  font-size: 32px;
  color: var(--vnpt-primary);
  line-height: 1;
}

.vnp-locator .vl-stat span {
  max-width: 110px;
  font-size: var(--text-xs);
  color: var(--vnpt-text-secondary);
  line-height: 1.35;
}

/* Filter Bar */
.vnp-locator .vl-filters {
  margin: var(--space-6) 0;
  padding: var(--space-6);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.vnp-locator .vl-filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: end;
  gap: var(--space-3);
}

.vnp-locator label {
  display: block;
  margin: 0 0 6px;
  color: var(--vnpt-text-secondary);
  font-size: var(--text-xs);
  font-weight: 700;
}

.vnp-locator :is(input, select) {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: var(--vnpt-text);
  background: #ffffff;
  font: inherit;
  font-size: var(--text-sm);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.vnp-locator :is(input, select):focus {
  border-color: var(--vnpt-primary);
  box-shadow: 0 0 0 4px rgba(0, 104, 255, 0.1);
  outline: 0;
}

.vnp-locator input {
  padding-left: 40px;
}

.vnp-locator .vl-search {
  position: relative;
}

.vnp-locator .vl-search > i {
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--vnpt-text-muted);
  font-size: 16px;
}

.vnp-locator .vl-hint {
  margin: 10px 0 0;
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

/* Layout (Stores Grid + Sticky Support Card) */
.vnp-locator .vl-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: var(--space-6);
  align-items: start;
}

.vnp-locator .vl-result-heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.vnp-locator h2 {
  margin: 0;
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--vnpt-text);
  line-height: var(--leading-tight);
}

.vnp-locator .vl-result-heading p {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--vnpt-text-muted);
}

.vnp-locator .vl-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.vnp-locator .vl-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  border: 1px solid var(--vnpt-border);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vnp-locator .vl-card:hover {
  border-color: #9cc8ff;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.vnp-locator .vl-card-heading {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.vnp-locator .vl-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--vnpt-bg-section-blue);
  color: var(--vnpt-primary);
  overflow: hidden;
  font-size: 22px;
}

.vnp-locator .vl-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vnp-locator h3 {
  margin: 0 0 4px;
  font-size: var(--text-base);
  line-height: 1.4;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.vnp-locator h3 a {
  color: var(--vnpt-text);
}

.vnp-locator .vl-ward {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--vnpt-primary-dark);
}

.vnp-locator .vl-facts {
  display: grid;
  gap: var(--space-3);
  margin: 0 0 var(--space-4);
}

.vnp-locator .vl-fact dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  color: var(--vnpt-text-muted);
  font-weight: 600;
  margin: 0 0 2px;
}

.vnp-locator .vl-fact dt i {
  color: var(--vnpt-primary);
  width: 16px;
  flex-shrink: 0;
}

.vnp-locator .vl-fact dd {
  margin: 0 0 0 24px;
  font-size: var(--text-xs);
  color: var(--vnpt-text-secondary);
  overflow-wrap: anywhere;
  white-space: pre-line;
  line-height: var(--leading-normal);
}

.vnp-locator .store-hours {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
  white-space: normal;
}

.vnp-locator .store-hours-group {
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid #e0eaf1;
  border-radius: var(--radius-sm);
  background: var(--vnpt-bg-soft);
}

.vnp-locator .store-hours-day {
  margin-bottom: 5px;
  color: var(--vnpt-text-secondary);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
}

.vnp-locator .store-hours-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vnp-locator .store-hours-line {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: var(--text-xs);
  line-height: 1.5;
}

.vnp-locator .store-hours-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background: #e6f2ef;
  color: #28745f;
  font-size: 11px;
  font-weight: 750;
}

.vnp-locator .store-hours-note {
  background: #eaf0f5;
  color: var(--vnpt-text-muted);
}

.vnp-locator .store-hours-text {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 6px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.vnp-locator .store-hours-shift {
  min-width: 32px;
  color: var(--vnpt-text-muted);
  font-size: 11px;
}

.vnp-locator .store-hours-time {
  color: var(--vnpt-text);
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.vnp-locator .store-hours-empty {
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.vnp-locator .vl-fact dd.store-hours {
  margin-top: 6px;
  white-space: normal;
}

.vnp-locator .vl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid #edf2f6;
}

.vnp-locator .vl-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-md);
  color: var(--vnpt-primary-dark);
  background: #ffffff;
  font: inherit;
  font-size: var(--text-xs);
  line-height: 1.4;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.vnp-locator .vl-button:hover {
  background: var(--vnpt-bg-section-blue);
  border-color: #9cc8ff;
  text-decoration: none;
}

.vnp-locator .vl-button-primary {
  background: var(--vnpt-primary);
  border-color: var(--vnpt-primary);
  color: #ffffff;
}

.vnp-locator .vl-button-primary:hover {
  background: var(--vnpt-primary-dark);
  border-color: var(--vnpt-primary-dark);
  color: #ffffff;
}

.vnp-locator .vl-support {
  padding: var(--space-6);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.vnp-locator .vl-support h2 {
  font-size: var(--text-md);
  margin: 0 0 6px;
}

.vnp-locator .vl-support p {
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
  margin: 0 0 var(--space-4);
  line-height: var(--leading-normal);
}

.vnp-locator .vl-qr {
  display: block;
  width: 144px;
  height: 144px;
  object-fit: contain;
  margin: var(--space-4) auto;
  padding: 6px;
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-md);
}

.vnp-locator .vl-support .vl-button {
  width: 100%;
}

.vnp-locator .vl-tip {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--vnpt-border);
}

.vnp-locator .vl-tip h3 {
  font-size: var(--text-xs);
  margin: 0 0 4px;
  color: var(--vnpt-text-secondary);
}

.vnp-locator .vl-tip p {
  margin: 0;
  color: var(--vnpt-text-muted);
  font-size: 11px;
}

.vnp-locator .vl-empty {
  padding: var(--space-8) var(--space-4);
  background: #ffffff;
  border: 1px dashed var(--vnpt-border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.vnp-locator .vl-empty > i {
  display: block;
  font-size: 32px;
  color: var(--vnpt-primary);
  margin-bottom: var(--space-3);
}

.vnp-locator .vl-empty p {
  color: var(--vnpt-text-muted);
  margin: 0 0 var(--space-4);
}

.vnp-locator .vl-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-6);
}

.vnp-locator .vl-more span {
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

@media (min-width: 1100px) {
  .vnp-locator .vl-support {
    position: sticky;
    top: 100px;
  }
}

@media (max-width: 1099px) {
  .vnp-locator .vl-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .vnp-locator .vl-support {
    margin-top: var(--space-2);
  }
  .vnp-locator .vl-support-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: var(--space-4);
    align-items: center;
  }
  .vnp-locator .vl-qr {
    width: 120px;
    height: 120px;
    margin: 0;
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .vnp-locator .vl-support .vl-button {
    width: fit-content;
  }
  .vnp-locator .vl-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vnp-locator .vl-query-field {
    grid-column: 1 / -1;
  }
  .vnp-locator .vl-reset {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 599px) {
  .vnp-locator .vl-shell {
    width: 100%;
    padding-inline: var(--space-4);
  }
  .vnp-locator .vl-hero {
    padding: var(--space-4) 0 var(--space-6);
  }
  .vnp-locator .vl-crumbs {
    margin-bottom: var(--space-4);
  }
  .vnp-locator .vl-intro {
    display: block;
  }
  .vnp-locator .vl-stat {
    display: none;
  }
  .vnp-locator .vl-filters {
    padding: var(--space-4);
    margin: var(--space-4) 0;
  }
  .vnp-locator .vl-filter-grid {
    gap: var(--space-3);
  }
  .vnp-locator .vl-region-field,
  .vnp-locator .vl-ward-field {
    grid-column: 1 / -1;
  }
  .vnp-locator .vl-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .vnp-locator .vl-card {
    padding: var(--space-4);
  }
  .vnp-locator .vl-actions .vl-button {
    flex: 1 1 auto;
  }
  .vnp-locator .vl-support {
    padding: var(--space-4);
  }
  .vnp-locator .vl-support-main {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: var(--space-3);
  }
  .vnp-locator .vl-qr {
    width: 96px;
    height: 96px;
  }
}


/* --------------------------------------------------------------------------
   10.3 Forms & Procedures Library (.forms-page)
   -------------------------------------------------------------------------- */
.forms-page {
  background: var(--vnpt-bg-soft);
  color: var(--vnpt-text);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  min-height: 60vh;
}

.forms-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at 90% 20%, rgba(34, 184, 255, 0.3), transparent 32%),
              linear-gradient(135deg, var(--vnpt-navy) 0%, var(--vnpt-primary-dark) 58%, var(--vnpt-electric-blue) 100%);
  padding: clamp(3.5rem, 6vw, 4.5rem) 0;
}

.forms-hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  right: -140px;
  bottom: -280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.forms-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: var(--space-12);
}

.forms-hero__copy {
  max-width: 720px;
}

.forms-eyebrow,
.forms-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: #bce9ff;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.forms-hero h1 {
  margin: var(--space-3) 0 var(--space-4);
  color: #ffffff;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  line-height: var(--leading-tight);
  letter-spacing: -0.04em;
  font-weight: 850;
}

.forms-hero__copy > p {
  max-width: 680px;
  margin: 0;
  color: #d9effb;
  font-size: var(--text-md);
  line-height: var(--leading-loose);
}

.forms-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: var(--space-6);
  color: #dbf3ff;
  font-size: var(--text-sm);
  font-weight: 700;
}

.forms-hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.forms-hero__badges i {
  color: #ffdb67;
}

.forms-search-card {
  padding: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 35px rgba(2, 37, 71, 0.15);
  backdrop-filter: blur(12px);
}

.forms-search-card label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: var(--text-sm);
  font-weight: 800;
}

.forms-search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.forms-search-box input {
  width: 100%;
  height: 54px;
  padding: 0 48px 0 18px;
  border: 0;
  border-radius: var(--radius-md);
  color: var(--vnpt-text);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(2, 37, 71, 0.12);
  font-size: var(--text-sm);
  outline: 0;
}

.forms-search-box input:focus {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28), 0 8px 20px rgba(2, 37, 71, 0.12);
}

.forms-search-clear {
  position: absolute;
  right: 9px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--vnpt-text-muted);
  background: #edf5fa;
  cursor: pointer;
}

.forms-search-status {
  margin: 10px 2px 0;
  color: #c9e8f8;
  font-size: var(--text-xs);
}

.forms-content {
  padding: var(--space-8) 0 var(--space-20);
}

.forms-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.forms-breadcrumb a {
  color: var(--vnpt-text-secondary);
  text-decoration: none;
}

.forms-breadcrumb a:hover {
  color: var(--vnpt-primary);
}

.forms-breadcrumb i {
  font-size: 10px;
  color: #9bb0bf;
}

.forms-library-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.forms-kicker {
  color: var(--vnpt-primary);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
}

.forms-library-head h2 {
  margin: 4px 0 0;
  color: var(--vnpt-text);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  line-height: var(--leading-tight);
  letter-spacing: -0.035em;
  font-weight: 800;
}

.forms-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-2);
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.forms-stats span {
  padding: 8px 12px;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.forms-stats strong {
  color: var(--vnpt-primary);
  font-size: var(--text-sm);
}

.forms-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid #e0ebf2;
}

.forms-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-pill);
  color: var(--vnpt-text-secondary);
  background: #ffffff;
  font-size: var(--text-xs);
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.forms-filter:hover {
  border-color: #9cc8ff;
  color: var(--vnpt-primary);
  background: var(--vnpt-bg-section-blue);
}

.forms-filter.is-active {
  border-color: var(--vnpt-primary);
  color: #ffffff;
  background: var(--vnpt-primary);
  box-shadow: 0 6px 16px rgba(0, 104, 255, 0.2);
}

.form-group-section {
  scroll-margin-top: 100px;
  margin-bottom: var(--space-12);
}

.form-group-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.form-group-heading__title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 0;
}

.form-group-heading__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  color: var(--vnpt-primary);
  background: var(--vnpt-bg-section-blue);
  font-size: 20px;
}

.form-group-heading h3 {
  margin: 0;
  color: var(--vnpt-text);
  font-size: var(--text-lg);
  line-height: 1.3;
  font-weight: 800;
}

.form-group-count {
  flex: 0 0 auto;
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.form-card-item[hidden],
.form-group-section[hidden] {
  display: none !important;
}

.form-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-card:hover {
  border-color: #9cc8ff;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.form-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.file-icon-box {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  font-size: 26px;
}

.file-tone-default {
  color: #58758b;
  background: #eef4f8;
}

.file-tone-pdf {
  color: #cf3e4d;
  background: #fff0f1;
}

.file-tone-word {
  color: #146dcc;
  background: #edf5ff;
}

.file-tone-excel {
  color: #18845b;
  background: #ebfbf3;
}

.file-tone-zip {
  color: #a16a08;
  background: #fff7df;
}

.file-type {
  padding: 4px 8px;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-sm);
  color: var(--vnpt-text-muted);
  background: var(--vnpt-bg-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.form-title {
  min-height: 2.6em;
  margin: 0 0 8px;
  color: var(--vnpt-text);
  font-size: var(--text-base);
  line-height: 1.4;
  font-weight: 800;
}

.form-desc {
  display: -webkit-box;
  min-height: 4.6em;
  margin: 0;
  color: var(--vnpt-text-secondary);
  font-size: var(--text-xs);
  line-height: var(--leading-normal);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.form-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: auto;
  padding: 14px 0 12px;
  border-bottom: 1px solid #e7eef3;
  color: var(--vnpt-text-muted);
  font-size: 11px;
}

.form-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.form-card__meta i {
  color: var(--vnpt-primary);
}

.btn-download {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 12px;
  padding: 8px 14px;
  border: 1px solid #cfe2ee;
  border-radius: var(--radius-md);
  color: var(--vnpt-primary-dark);
  background: var(--vnpt-bg-light-blue);
  font-size: var(--text-xs);
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-download:hover {
  color: #ffffff;
  border-color: var(--vnpt-primary);
  background: var(--vnpt-primary);
  box-shadow: 0 8px 20px rgba(0, 104, 255, 0.2);
}

.forms-empty {
  padding: var(--space-12) var(--space-6);
  text-align: center;
  border: 1px dashed var(--vnpt-border);
  border-radius: var(--radius-xl);
  background: #ffffff;
}

.forms-empty__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  color: var(--vnpt-primary);
  background: var(--vnpt-bg-section-blue);
  font-size: 28px;
}

.forms-empty h3 {
  margin: 0 0 6px;
  color: var(--vnpt-text);
  font-size: var(--text-lg);
  font-weight: 800;
}

.forms-empty p {
  margin: 0 0 var(--space-4);
  color: var(--vnpt-text-muted);
  font-size: var(--text-sm);
}

.highlight-text {
  padding: 1px 3px;
  border-radius: 4px;
  color: #18384f;
  background: #ffe58a;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .forms-hero {
    padding: var(--space-12) 0;
  }
  .forms-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .forms-library-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .forms-stats {
    justify-content: flex-start;
  }
  .forms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .forms-hero h1 {
    font-size: 2.2rem;
  }
  .forms-search-box input {
    height: 48px;
  }
  .forms-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-right: -12px;
    padding-right: 12px;
    scrollbar-width: none;
  }
  .forms-filters::-webkit-scrollbar {
    display: none;
  }
  .forms-filter {
    flex: 0 0 auto;
  }
  .forms-grid {
    grid-template-columns: 1fr;
  }
  .form-title,
  .form-desc {
    min-height: 0;
  }
}


/* --------------------------------------------------------------------------
   10.4 FAQ & Help Center (.vnp-faq-page)
   -------------------------------------------------------------------------- */
.vnp-faq-page {
  color: var(--vnpt-text);
  background: var(--vnpt-bg-soft);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  min-height: 60vh;
}

.vnp-faq-page * {
  box-sizing: border-box;
}

.vnp-faq-container {
  width: 100%;
  max-width: var(--container-max-width, 1240px);
  margin-inline: auto;
  padding-inline: var(--gutter-desktop, var(--space-6));
}

@media (max-width: 767px) {
  .vnp-faq-container {
    padding-inline: var(--gutter-mobile, var(--space-4));
  }
}


.vnp-faq-hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-12) 0 var(--space-16);
  color: #ffffff;
  background: linear-gradient(135deg, var(--vnpt-navy) 0%, var(--vnpt-primary-dark) 52%, var(--vnpt-electric-blue) 100%);
  isolation: isolate;
}

.vnp-faq-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  content: "";
}

.vnp-faq-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.vnp-faq-orb-one {
  top: -180px;
  right: -90px;
  width: 410px;
  height: 410px;
}

.vnp-faq-orb-two {
  bottom: -190px;
  left: -110px;
  width: 340px;
  height: 340px;
}

.vnp-faq-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-xs);
}

.vnp-faq-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.vnp-faq-breadcrumb a:hover {
  text-decoration: underline;
}

.vnp-faq-breadcrumb i {
  font-size: 10px;
}

.vnp-faq-hero-copy {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.vnp-faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-pill);
  color: #d9f2ff;
  background: rgba(255, 255, 255, 0.08);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.vnp-faq-hero h1 {
  margin: var(--space-3) 0 var(--space-2);
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: var(--leading-tight);
  letter-spacing: -0.04em;
}

.vnp-faq-hero-copy > p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(240, 249, 255, 0.85);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.vnp-faq-search {
  max-width: 790px;
  margin: var(--space-6) auto 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 55px rgba(1, 31, 58, 0.2);
  text-align: left;
}

.vnp-faq-search > label {
  display: block;
  margin: 0 0 6px 4px;
  color: var(--vnpt-text-secondary);
  font-size: var(--text-xs);
  font-weight: 800;
}

.vnp-faq-search-control {
  position: relative;
  display: flex;
  align-items: center;
}

.vnp-faq-search-control > i {
  position: absolute;
  left: 14px;
  color: var(--vnpt-primary);
  font-size: 16px;
  pointer-events: none;
}

.vnp-faq-search-control input {
  width: 100%;
  height: 52px;
  padding: 0 140px 0 42px;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-md);
  color: var(--vnpt-text);
  background: #ffffff;
  font-size: var(--text-sm);
  font-weight: 600;
  outline: 0;
}

.vnp-faq-search-control input:focus {
  border-color: var(--vnpt-primary);
  box-shadow: 0 0 0 4px rgba(0, 104, 255, 0.12);
}

.vnp-faq-search-control button {
  position: absolute;
  right: 4px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius-sm);
  color: #ffffff;
  background: var(--vnpt-gradient-primary);
  font-size: var(--text-xs);
  font-weight: 850;
  cursor: pointer;
}

.vnp-faq-search > small {
  display: block;
  margin: 6px 4px 0;
  color: var(--vnpt-text-muted);
  font-size: 11px;
}

.vnp-faq-popular {
  display: flex;
  max-width: 900px;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-2);
  margin: var(--space-4) auto 0;
}

.vnp-faq-popular > span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding-top: 5px;
  color: #d7edfb;
  font-size: var(--text-xs);
  font-weight: 750;
}

.vnp-faq-popular > span i {
  color: #ffd66b;
}

.vnp-faq-popular > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vnp-faq-popular-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  font-size: var(--text-xs);
  font-weight: 650;
  line-height: 1.35;
  cursor: pointer;
  transition: 0.18s ease;
}

.vnp-faq-popular-btn:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--vnpt-primary-dark);
  background: #ffffff;
}

/* FAQ Content Section */
.vnp-faq-content-section {
  padding: var(--space-8) 0 var(--space-16);
}

.vnp-faq-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.vnp-faq-sidebar {
  position: sticky;
  top: 92px;
}

.vnp-faq-sidebar-card {
  overflow: hidden;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.vnp-faq-sidebar-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-bottom: 1px solid #e7eef3;
  background: linear-gradient(135deg, #f1f8fd, #ffffff);
}

.vnp-faq-sidebar-head > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: var(--vnpt-gradient-primary);
}

.vnp-faq-sidebar-head small {
  display: block;
  color: var(--vnpt-text-muted);
  font-size: 11px;
  font-weight: 750;
}

.vnp-faq-sidebar-head h2 {
  margin: 2px 0 0;
  font-size: var(--text-base);
  font-weight: 900;
}

.vnp-faq-category-list {
  display: grid;
  gap: 4px;
  padding: var(--space-2);
}

.vnp-faq-category-btn {
  display: grid;
  min-height: 44px;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-2);
  align-items: center;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  color: var(--vnpt-text-secondary);
  background: transparent;
  font-size: var(--text-xs);
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  transition: 0.18s ease;
}

.vnp-faq-category-btn > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.vnp-faq-category-btn > span i {
  flex: 0 0 auto;
  color: #81a0b7;
}

.vnp-faq-category-btn strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  padding-inline: 4px;
  border-radius: var(--radius-pill);
  color: var(--vnpt-text-muted);
  background: #edf3f7;
  font-size: 11px;
}

.vnp-faq-category-btn:hover {
  color: var(--vnpt-primary);
  background: var(--vnpt-bg-section-blue);
}

.vnp-faq-category-btn.is-active {
  border-color: rgba(0, 104, 255, 0.18);
  color: #ffffff;
  background: var(--vnpt-gradient-primary);
  box-shadow: 0 8px 20px rgba(0, 104, 255, 0.18);
}

.vnp-faq-category-btn.is-active > span i {
  color: #ffffff;
}

.vnp-faq-category-btn.is-active strong {
  color: var(--vnpt-primary);
  background: #ffffff;
}

.vnp-faq-sidebar-help {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: var(--space-2) var(--space-3) var(--space-3);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  color: #6f5660;
  background: #fff4f4;
}

.vnp-faq-sidebar-help > i {
  color: var(--vnpt-danger);
  font-size: 18px;
}

.vnp-faq-sidebar-help small {
  display: block;
  font-size: 11px;
}

.vnp-faq-sidebar-help a {
  margin-top: 2px;
  display: block;
  color: #b7212e;
  font-size: var(--text-xs);
  font-weight: 900;
  text-decoration: none;
}

.vnp-faq-zalo-card {
  margin: 4px var(--space-3) var(--space-3);
  padding: var(--space-4);
  border: 1px solid #d7e6f2;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #f5faff, #ffffff);
  text-align: center;
}

.vnp-faq-zalo-card > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  color: var(--vnpt-primary-dark);
  background: var(--vnpt-bg-section-blue);
  font-size: 11px;
  font-weight: 850;
}

.vnp-faq-zalo-card img {
  display: block;
  width: 140px;
  height: 140px;
  margin: var(--space-3) auto;
  padding: 6px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--vnpt-border);
  object-fit: contain;
}

.vnp-faq-zalo-card strong {
  display: block;
  color: var(--vnpt-text);
  font-size: var(--text-sm);
}

.vnp-faq-zalo-card p {
  margin: 4px 0 var(--space-3);
  color: var(--vnpt-text-muted);
  font-size: 11px;
  line-height: 1.4;
}

.vnp-faq-zalo-card a {
  display: inline-flex;
  min-height: 40px;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: var(--vnpt-primary);
  font-size: var(--text-xs);
  font-weight: 850;
  text-decoration: none;
}

.vnp-faq-mobile-filter,
.vnp-faq-mobile-zalo {
  display: none;
}

/* FAQ Results Panel */
.vnp-faq-results {
  min-width: 0;
}

.vnp-faq-results-head {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.vnp-faq-results-label {
  color: var(--vnpt-primary-dark);
  font-size: var(--text-xs);
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vnp-faq-results-head h2 {
  margin: 3px 0;
  font-size: var(--text-lg);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.vnp-faq-results-head p {
  margin: 0;
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.vnp-faq-results-head p strong {
  color: var(--vnpt-primary);
}

.vnp-faq-clear {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-md);
  color: var(--vnpt-text-secondary);
  background: #ffffff;
  font-size: var(--text-xs);
  font-weight: 800;
  cursor: pointer;
}

.vnp-faq-clear[hidden] {
  display: none;
}

.vnp-faq-clear:hover {
  border-color: #f1c2c7;
  color: var(--vnpt-danger);
  background: #fff7f7;
}

.vnp-faq-list {
  display: grid;
  gap: var(--space-3);
}

.vnp-faq-item {
  overflow: clip;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  scroll-margin-top: 95px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.vnp-faq-item[hidden] {
  display: none;
}

.vnp-faq-item:hover {
  border-color: #9cc8ff;
  transform: translateY(-1px);
}

.vnp-faq-item[open] {
  border-color: var(--vnpt-primary);
  box-shadow: var(--shadow-card-hover);
}

.vnp-faq-item summary {
  display: grid;
  min-height: 74px;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-3) var(--space-4);
  cursor: pointer;
  list-style: none;
}

.vnp-faq-item summary::-webkit-details-marker {
  display: none;
}

.vnp-faq-item summary:focus-visible {
  outline: 3px solid rgba(0, 104, 255, 0.28);
  outline-offset: -3px;
}

.vnp-faq-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius-md);
  color: var(--vnpt-primary-dark);
  background: var(--vnpt-bg-section-blue);
  font-size: var(--text-xs);
  font-weight: 900;
}

.vnp-faq-question-copy {
  min-width: 0;
}

.vnp-faq-question-copy small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
  color: var(--vnpt-text-muted);
  font-size: 11px;
  font-weight: 750;
}

.vnp-faq-question-copy strong {
  display: block;
  color: var(--vnpt-text);
  font-size: var(--text-sm);
  font-weight: 800;
  line-height: var(--leading-normal);
}

.vnp-faq-toggle {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--vnpt-primary-dark);
  background: var(--vnpt-bg-section-blue);
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.vnp-faq-item[open] .vnp-faq-toggle {
  color: #ffffff;
  background: var(--vnpt-primary);
  transform: rotate(45deg);
}

.vnp-faq-answer {
  padding: 0 var(--space-4) var(--space-4) 4.65rem;
  border-top: 1px solid #e8eff4;
}

.vnp-faq-answer-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-3);
  color: var(--vnpt-primary-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.vnp-faq-answer-lead {
  margin: var(--space-2) 0 0;
  padding: 10px 14px;
  border-left: 3px solid var(--vnpt-warning);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #3a5369;
  background: #fff9e9;
  font-size: var(--text-xs);
  font-weight: 650;
  line-height: var(--leading-relaxed);
}

.vnp-faq-answer-content {
  margin-top: var(--space-3);
  color: var(--vnpt-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  overflow-wrap: anywhere;
}

.vnp-faq-answer-content > :last-child {
  margin-bottom: 0;
}

.vnp-faq-answer-content h2 {
  font-size: var(--text-md);
}

.vnp-faq-answer-content h3 {
  font-size: var(--text-sm);
}

.vnp-faq-answer-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.vnp-faq-answer-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

.vnp-faq-answer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px dashed #dae5ed;
}

.vnp-faq-answer-footer > span {
  color: var(--vnpt-text-muted);
  font-size: 11px;
}

.vnp-faq-answer-footer > span i {
  color: var(--vnpt-success);
}

.vnp-faq-answer-footer a {
  display: inline-flex;
  min-height: 38px;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  color: var(--vnpt-primary-dark);
  font-size: var(--text-xs);
  font-weight: 850;
  text-decoration: none;
}

.vnp-faq-answer-footer a:hover {
  text-decoration: underline;
}

.vnp-faq-empty {
  display: grid;
  justify-items: center;
  padding: var(--space-12) var(--space-4);
  border: 1px dashed var(--vnpt-border);
  border-radius: var(--radius-xl);
  color: var(--vnpt-text-muted);
  background: #ffffff;
  text-align: center;
}

.vnp-faq-empty[hidden] {
  display: none;
}

.vnp-faq-empty > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: var(--radius-lg);
  color: var(--vnpt-primary);
  background: var(--vnpt-bg-section-blue);
  font-size: 24px;
}

.vnp-faq-empty h3 {
  margin: var(--space-3) 0 4px;
  color: var(--vnpt-text);
  font-size: var(--text-md);
  font-weight: 900;
}

.vnp-faq-empty p {
  max-width: 480px;
  margin: 0;
  font-size: var(--text-xs);
}

.vnp-faq-empty button {
  min-height: 42px;
  margin-top: var(--space-4);
  padding: 0 16px;
  border: 1px solid #b8d5e9;
  border-radius: var(--radius-md);
  color: var(--vnpt-primary-dark);
  background: #ffffff;
  font-size: var(--text-xs);
  font-weight: 800;
  cursor: pointer;
}

.vnp-faq-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.vnp-faq-pagination[hidden] {
  display: none;
}

.vnp-faq-pagination > div {
  color: var(--vnpt-text-muted);
  font-size: var(--text-xs);
}

.vnp-faq-pagination ul {
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vnp-faq-pagination button {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  padding: 0 8px;
  border: 1px solid var(--vnpt-border);
  border-radius: var(--radius-md);
  color: var(--vnpt-text-secondary);
  background: #ffffff;
  font-size: var(--text-xs);
  font-weight: 800;
  cursor: pointer;
}

.vnp-faq-pagination button:hover:not(:disabled) {
  border-color: #8ec5e5;
  color: var(--vnpt-primary);
  background: var(--vnpt-bg-section-blue);
}

.vnp-faq-pagination button.is-current {
  border-color: transparent;
  color: #ffffff;
  background: var(--vnpt-gradient-primary);
}

.vnp-faq-pagination button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.vnp-faq-contact {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-6);
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  color: #ffffff;
  background: linear-gradient(135deg, var(--vnpt-navy), var(--vnpt-primary-dark));
  box-shadow: 0 14px 34px rgba(7, 65, 112, 0.16);
}

.vnp-faq-contact > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.13);
  font-size: 22px;
}

.vnp-faq-contact small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

.vnp-faq-contact h2 {
  margin: 2px 0;
  color: #ffffff;
  font-size: var(--text-base);
  font-weight: 900;
}

.vnp-faq-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-xs);
}

.vnp-faq-contact a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-radius: var(--radius-md);
  color: var(--vnpt-primary-dark);
  background: #ffffff;
  font-size: var(--text-xs);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

mark.vnp-faq-mark {
  padding: 0 0.15em;
  border-radius: 3px;
  color: inherit;
  background: #ffdf75;
}

@media (max-width: 991.98px) {
  .vnp-faq-content-section {
    padding-top: var(--space-4);
  }
  .vnp-faq-layout {
    grid-template-columns: 1fr;
  }
  .vnp-faq-sidebar {
    display: none;
  }
  .vnp-faq-mobile-filter {
    display: block;
    margin-bottom: var(--space-3);
    padding: var(--space-3);
    border: 1px solid var(--vnpt-border);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-card);
  }
  .vnp-faq-mobile-filter label {
    display: block;
    margin-bottom: 6px;
    color: var(--vnpt-text-secondary);
    font-size: var(--text-xs);
    font-weight: 850;
  }
  .vnp-faq-mobile-filter > div {
    position: relative;
  }
  .vnp-faq-mobile-filter select {
    width: 100%;
    height: 46px;
    padding: 0 2.5rem 0 12px;
    border: 1px solid var(--vnpt-border);
    border-radius: var(--radius-md);
    color: var(--vnpt-text);
    background: #ffffff;
    font-size: var(--text-sm);
    font-weight: 750;
    appearance: none;
  }
  .vnp-faq-mobile-filter > div > i {
    position: absolute;
    top: 50%;
    right: 14px;
    color: var(--vnpt-text-muted);
    transform: translateY(-50%);
    pointer-events: none;
  }
  .vnp-faq-mobile-zalo {
    display: block;
    overflow: hidden;
    margin: 0 0 var(--space-3);
    border: 1px solid var(--vnpt-border);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-card);
  }
  .vnp-faq-mobile-zalo summary {
    display: grid;
    min-height: 58px;
    grid-template-columns: 36px minmax(0, 1fr) 20px;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    cursor: pointer;
    list-style: none;
  }
  .vnp-faq-mobile-zalo summary::-webkit-details-marker {
    display: none;
  }
  .vnp-faq-mobile-zalo summary > i:first-child {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: var(--radius-sm);
    color: #ffffff;
    background: var(--vnpt-primary);
  }
  .vnp-faq-mobile-zalo summary small {
    display: block;
    color: var(--vnpt-text-muted);
    font-size: 11px;
  }
  .vnp-faq-mobile-zalo summary strong {
    display: block;
    margin-top: 2px;
    color: var(--vnpt-text);
    font-size: var(--text-xs);
  }
  .vnp-faq-mobile-zalo summary > i:last-child {
    color: var(--vnpt-text-muted);
    transition: transform 0.18s ease;
  }
  .vnp-faq-mobile-zalo[open] summary > i:last-child {
    transform: rotate(180deg);
  }
  .vnp-faq-mobile-zalo > div {
    padding: var(--space-4);
    border-top: 1px solid #e5edf3;
    text-align: center;
  }
  .vnp-faq-mobile-zalo img {
    display: block;
    width: 140px;
    height: 140px;
    margin: 0 auto 10px;
    padding: 6px;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--vnpt-border);
    object-fit: contain;
  }
  .vnp-faq-mobile-zalo p {
    margin: 0 0 10px;
    color: var(--vnpt-text-muted);
    font-size: 11px;
  }
  .vnp-faq-mobile-zalo a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 16px;
    border-radius: var(--radius-md);
    color: #ffffff;
    background: var(--vnpt-primary);
    font-size: var(--text-xs);
    font-weight: 850;
    text-decoration: none;
  }
}

@media (max-width: 767.98px) {
  .vnp-faq-hero {
    padding: var(--space-6) 0 var(--space-8);
  }
  .vnp-faq-breadcrumb {
    margin-bottom: var(--space-4);
  }
  .vnp-faq-hero h1 {
    font-size: 1.85rem;
  }
  .vnp-faq-search {
    margin-top: var(--space-4);
    padding: 8px;
    border-radius: var(--radius-lg);
  }
  .vnp-faq-search-control input {
    height: 48px;
    padding-right: 48px;
    font-size: var(--text-sm);
  }
  .vnp-faq-search-control button {
    right: 3px;
    width: 42px;
    padding: 0;
    justify-content: center;
  }
  .vnp-faq-search-control button span {
    display: none;
  }
  .vnp-faq-popular {
    flex-direction: column;
  }
  .vnp-faq-popular > div {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .vnp-faq-popular > div::-webkit-scrollbar {
    display: none;
  }
  .vnp-faq-popular-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .vnp-faq-results-head {
    min-height: 0;
    align-items: flex-start;
    padding: var(--space-3);
    border-radius: var(--radius-md);
  }
  .vnp-faq-item summary {
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 8px;
    padding: 10px 12px;
  }
  .vnp-faq-index {
    display: none;
  }
  .vnp-faq-toggle {
    width: 30px;
    height: 30px;
  }
  .vnp-faq-answer {
    padding: 0 12px 14px;
  }
  .vnp-faq-answer-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .vnp-faq-pagination {
    flex-direction: column;
    align-items: stretch;
  }
  .vnp-faq-pagination ul {
    justify-content: center;
  }
  .vnp-faq-pagination > div {
    text-align: center;
  }
  .vnp-faq-contact {
    grid-template-columns: 42px minmax(0, 1fr);
  }
  .vnp-faq-contact a {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-page *,
  .vnp-locator *,
  .forms-page *,
  .vnp-faq-page * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
