    :root { --base-font-size: 16px; }
    html { font-size: var(--base-font-size); scroll-behavior: smooth; }
    body {
      background-color: #f8fafc;
      color: #1e293b;
      font-family: "Kanit", sans-serif !important;
    }
    body { overflow-x: hidden; }
    a { text-decoration: none !important; }
    .hero-container {
      position: relative;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      overflow: hidden;
      padding-bottom: 1.25rem;
    }
    .hero-visual-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }
    .hero-bg-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(248, 250, 252, 0.35) 0%, rgba(255, 255, 255, 0.98) 100%);
      z-index: 1;
    }
    .hero-circle {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.35;
      z-index: 0;
    }
    .hero-circle.circle-1 {
      width: 420px;
      height: 420px;
      background: #60256c;
      top: -120px;
      left: -120px;
    }
    .hero-circle.circle-2 {
      width: 340px;
      height: 340px;
      background: #e2b60d;
      bottom: -80px;
      right: -80px;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0); }
      50% { transform: translateY(-18px) rotate(4deg); }
    }
    .floating-icon {
      position: absolute;
      background: rgba(96, 37, 108, 0.1);
      color: #60256c;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      backdrop-filter: blur(4px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
      animation: float 6s ease-in-out infinite;
      z-index: 1;
    }
    .floating-icon.float-phone { top: 18%; left: 8%; animation-delay: 0s; }
    .floating-icon.float-chat { top: 42%; left: 5%; animation-delay: 2s; font-size: 1.1rem; width: 46px; height: 46px; }
    .floating-icon.float-mail { top: 14%; right: 10%; animation-delay: 1s; }
    .floating-icon.float-search { top: 38%; right: 6%; animation-delay: 3s; font-size: 1.1rem; width: 46px; height: 46px; }
    .nav-logo-img {
      max-width: 180px;
      height: auto;
    }
    .channel-carousel {
      position: relative;
      max-width: 1140px;
      margin: 0 auto;
      height: 398px;
      z-index: 10;
      perspective: 1000px;
      overflow: visible;
    }
    .channel-track {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      transform-style: preserve-3d;
      z-index: 1;
    }
    .channel-track .channel-slide-card {
      position: absolute;
      top: -10px;
      width: min(92vw, 410px);
      min-height: 330px;
      opacity: 0;
      pointer-events: none;
      border-radius: 32px;
      overflow: hidden;
      transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease, box-shadow 0.35s ease;
      cursor: pointer;
    }
    .channel-track .channel-slide-card.active {
      z-index: 20;
      opacity: 1;
      pointer-events: auto;
      transform: translateX(0) scale(1);
      box-shadow: 0 25px 50px -12px rgba(96, 37, 108, 0.2);
    }
    .channel-track .channel-slide-card.prev {
      z-index: 10;
      opacity: 0.95;
      pointer-events: auto;
      transform: translateX(-88%) scale(0.85);
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
      filter: none;
    }
    .channel-track .channel-slide-card.next {
      z-index: 10;
      opacity: 0.95;
      pointer-events: auto;
      transform: translateX(88%) scale(0.85);
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
      filter: none;
    }
    .channel-track .channel-slide-card.is-hidden {
      z-index: 5;
      opacity: 0;
      pointer-events: none;
      transform: translateX(0) scale(0.6);
    }
    .channel-track .channel-slide-card.prev:hover {
      opacity: 1;
      transform: translateX(-92%) scale(0.88);
    }
    .channel-track .channel-slide-card.next:hover {
      opacity: 1;
      transform: translateX(92%) scale(0.88);
    }
    .channel-controls {
      position: absolute;
      top: 44%;
      left: -70px;
      right: -70px;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      z-index: 30;
    }
    .channel-btn {
      pointer-events: auto;
      width: 56px;
      height: 56px;
      border-radius: 999px;
      border: 1px solid #dbe3ef;
      background: #ffffff;
      color: #475569;
      display: grid;
      place-items: center;
      box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    }
    .channel-btn:hover {
      transform: scale(1.08);
      background: #e2b60d;
      color: #60256c;
      border-color: transparent;
    }
    .channel-dots {
      position: absolute;
      left: 50%;
      bottom: 26px;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 31;
      padding: 0;
      border: 0;
      background: transparent;
    }
    .channel-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      border: none;
      background: rgba(96, 37, 108, 0.24);
      transition: all 0.2s ease;
    }
    .channel-dot.active {
      width: 24px;
      background: #60256c;
    }

    .channel-card {
      background: #ffffff;
      border-radius: 28px;
      padding: 18px 22px 14px;
      border: 1px solid #e6ebf3;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .channel-head {
      display: grid;
      gap: 8px;
      justify-items: center;
      position: relative;
      z-index: 1;
    }
    .channel-icon-shell {
      display: grid;
      place-items: center;
      width: auto;
      height: auto;
      background: transparent;
      border: none;
      box-shadow: none;
      position: relative;
      flex-shrink: 0;
    }
    .channel-icon-img {
      width: 98px;
      height: 98px;
      object-fit: contain;
    }
    .channel-title {
      font-size: 1rem;
      font-weight: 800;
      color: #0f172a;
      background-color: rgba(255, 255, 255, 0.96);
      border-radius: 8px;
      padding: 2px 8px;
      display: inline-block;
    }
    .channel-desc {
      font-size: 0.82rem;
      font-weight: 500;
      color: #334155;
      line-height: 1.34;
      text-align: center;
      max-width: 90%;
      margin-inline: auto;
      display: block;
      overflow: visible;
      background-color: rgba(255, 255, 255, 0.96);
      border-radius: 10px;
      padding: 8px 10px;
    }
    .channel-link {
      font-weight: 700;
      color: #1e40af;
      text-decoration-thickness: 2px;
      text-underline-offset: 2px;
    }
    .channel-link:hover {
      color: #e2b60d;
      text-decoration: underline;
      text-underline-offset: 4px;
    }
    .channel-cta {
      margin-top: auto;
      margin-bottom: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      align-self: center;
      width: fit-content;
      max-width: 100%;
      white-space: nowrap;
      gap: 8px;
      padding: 0.56rem 0.88rem;
      border-radius: 12px;
      font-weight: 800;
      font-size: 0.79rem;
      border: 1px solid #e2e8f0;
      background: #f8fafc;
      color: #64748b;
      transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }
    .channel-track .channel-slide-card.active .channel-cta {
      background: #60256c;
      color: #ffffff;
      border-color: transparent;
      box-shadow: 0 10px 20px rgba(96, 37, 108, 0.25);
    }
    .channel-track .channel-slide-card.prev .channel-cta,
    .channel-track .channel-slide-card.next .channel-cta {
      pointer-events: none;
      cursor: default;
    }
    .channel-track .channel-slide-card.active .channel-cta:hover {
      background: #e2b60d;
      color: #60256c;
      transform: translateY(-1px);
    }
    .channel-cta:hover {
      background: #fff6d6;
      color: #7a5b11;
      border-color: #f3dd8f;
    }

    /* Service Cards */
    .service-card{
      background: transparent;
      border: none;
      display:flex;
      flex-direction:column;
      height:100%;
      position:relative;
      transition:all .3s ease;
      --accent:#2563eb;
      --accent-soft:#e9f0ff;
    }
    .service-card.card-pink .card-banner-box{ background:#f6a5d7; }
    .service-card.card-yellow .card-banner-box{ background:#e2b60d; }
    .service-card.card-green .card-banner-box{ background:#088c47; }
    .service-card.card-purple .card-banner-box{ background:#6c1f9b; }

    .service-card.card-pink{ --accent:#2563eb; --accent-soft:#e9f0ff; }
    .service-card.card-yellow{ --accent:#2563eb; --accent-soft:#e9f0ff; }
    .service-card.card-green{ --accent:#1d4ed8; --accent-soft:#e7efff; }
    .service-card.card-purple{ --accent:#b91c1c; --accent-soft:#fff5f5; }
    .service-card.card-purple .card-action{ background:#fff5f5; color:#b91c1c; }
    .service-card-title {
      transition: color 0.2s ease;
    }
    .service-card:hover .service-card-title {
      color: #e2b60d !important;
    }
    .service-card:hover .service-card-title.service-card-title-danger {
      color: #dc3545 !important;
    }
    .service-card-text {
      font-size: 0.72rem !important;
      line-height: 1.625;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
    }

    .service-card.card-pink .card-banner-box img,
    .service-card.card-yellow .card-banner-box img,
    .service-card.card-green .card-banner-box img,
    .service-card.card-purple .card-banner-box img{
      object-fit:contain;
      padding:12px;
    }

    .card-banner-box{
      height:120px;
      border-radius:20px 20px 0 0;
      overflow:hidden;
      position:relative;
      box-shadow:0 12px 24px rgba(15,23,42,.12);
      z-index:1;
    }
    .card-banner-box img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .6s ease;
    }
    .service-card:hover .card-banner-box img{ transform:scale(1.1); }

    .card-content-box{
      background:#fff;
      margin:-26px 12px 0 12px;
      padding:0.95rem 1rem 0.9rem;
      border-radius:22px;
      position:relative;
      z-index:2;
      box-shadow:0 18px 50px rgba(15,23,42,.12);
      border:1px solid rgba(255,255,255,.8);
      backdrop-filter: blur(5px);
      display:flex;
      flex-direction:column;
      align-items:center;
      text-align:center;
      flex-grow:1;
      transition:transform .3s ease, box-shadow .3s ease;
    }
    .service-card:hover .card-content-box{
      transform:translateY(-10px);
      box-shadow:0 20px 50px -15px rgba(30,58,138,.15);
    }

    .icon-floating-wrapper{
      width:46px;height:46px;background:#fff;border-radius:999px;
      display:flex;align-items:center;justify-content:center;
      font-size:1.65rem;
      margin-top:-32px;margin-bottom:0.5rem;
      position:relative;z-index:10;
      box-shadow:0 12px 24px rgba(15,23,42,.18);
      color:var(--accent);
      border:4px solid #fff;
    }
    .icon-floating-wrapper img{ width:70%; height:70%; object-fit:contain; }

    .card-action{
      margin-top:auto;
      display:inline-flex;align-items:center;gap:8px;
      padding:.35rem 0.85rem;
      border-radius:999px;
      font-size:.7rem;font-weight:700;
      background:var(--accent-soft);
      color:var(--accent);
      transition:transform .2s ease, background .2s ease, color .2s ease;
    }
    .service-card:hover .card-action{
      background:#e2b60d;
      color:#60256c;
      transform:translateY(-2px);
    }
    .news-section .u_text_brand_gold { color: #1c1600; }

    .survey-pill{
      display:inline-flex;align-items:center;gap:8px;
      padding:.6rem 1.25rem;border-radius:999px;
      background:#fff;border:1px solid #e2e8f0;
      color:#1e3a8a;font-weight:700;font-size:.85rem;
      box-shadow:0 10px 24px rgba(15,23,42,.08);
      transition:transform .2s ease, box-shadow .2s ease;
      cursor: pointer;
    }
    .survey-pill:hover{
      transform:translateY(-2px);
      box-shadow:0 14px 28px rgba(15,23,42,.12);
      color:#60256c;
      border-color: rgba(226,182,13);
    }

    .stat-card{
      background:#fff;
      border-radius:18px;
      padding:1.25rem 1.5rem;
      border:1px solid #e2e8f0;
      box-shadow:0 12px 28px rgba(15,23,42,.08);
    }
    .stat-card h4{
      margin:0 0 .75rem;
      font-size:1rem;
      font-weight:800;
      color:#0f172a;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 18px;
    }
    .stat-hero-card {
      border-radius: 22px;
      padding: 2.5rem 2rem;
      color: #ffffff;
      text-align: center;
      box-shadow: 0 18px 40px rgba(16, 24, 40, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.15);
    }
    .stat-hero-card strong {
      display: block;
      font-size: 2.6rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      margin-bottom: 0.4rem;
    }
    .stat-hero-card span {
      display: block;
      font-size: 1.45rem;
      font-weight: 700;
    }
    .stat-hero-green {
      background: #60256c;
    }
    .stat-hero-mint {
      background: #088c47;
      color: #ffffff;
    }
    .stat-card-metric {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .stat-card-metric h4 {
      margin: 0;
      font-size: 0.92rem;
      font-weight: 700;
      color: #475569;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .stat-card-metric strong {
      font-size: 2rem;
      font-weight: 800;
      color: #0f172a;
      letter-spacing: 0.4px;
    }
    .stat-card-metric small {
      color: #94a3b8;
      font-weight: 600;
      font-size: 0.8rem;
    }
    .stat-badge {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      font-size: 1rem;
      color: #ffffff;
    }
    .stat-badge.main { background: #60256c; }
    .stat-badge.gold { background: #e2b60d; color: #60256c; }
    .stat-badge.green { background: #088c47; }
    .stat-kpi {
      display: grid;
      gap: 8px;
    }
    .stat-kpi strong {
      font-size: 2rem;
      font-weight: 800;
      color: #0f172a;
      letter-spacing: 0.3px;
    }
    .stat-kpi small {
      color: #64748b;
      font-weight: 600;
      font-size: 0.8rem;
    }
    .stat-donut {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: conic-gradient(#60256c 0 62%, #088c47 62% 100%);
      display: grid;
      place-items: center;
      box-shadow: inset 0 0 0 12px #ffffff;
    }
    .stat-donut span {
      font-size: 1.1rem;
      font-weight: 800;
      color: #ffffff;
    }
    .stat-legend {
      display: grid;
      gap: 6px;
      font-size: 0.85rem;
      color: #475569;
      font-weight: 600;
    }
    .stat-legend-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .stat-legend-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
    }
    .stats-chart-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 1.5rem;
      border: 1px solid #e2e8f0;
      box-shadow: 0 12px 28px rgba(15,23,42,.08);
    }
    .stats-chart-card h4 {
      margin: 0;
      font-size: 1rem;
      font-weight: 800;
      color: #0f172a;
    }
    .stats-chart-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 1rem;
      flex-wrap: wrap;
    }
    .stats-detail-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .stat-detail-card {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      padding: 1rem 1.1rem;
      min-width: 0;
    }
    .stat-detail-card h4 {
      font-size: 0.95rem;
      margin-bottom: 0.65rem;
    }
    .stats-chart-wrap {
      height: 220px;
    }
    .stats-combo {
      display: grid;
      grid-template-columns: minmax(220px, 260px) 1fr;
      gap: 24px;
      align-items: center;
    }
    .stats-combo > div {
      min-width: 0;
    }
    .stats-filter {
      display: inline-flex;
      gap: 8px;
    }
    .stats-filter select {
      border: 1px solid #e2e8f0;
      background: #f8fafc;
      border-radius: 999px;
      padding: 0.35rem 0.9rem;
      font-size: 0.78rem;
      font-weight: 700;
      color: #475569;
    }

    .stats-overview-grid {
      display: grid;
      grid-template-columns: minmax(330px, 1fr) minmax(450px, 1fr);
      gap: 34px;
      align-items: center;
    }
    .stats-overview-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .stats-overview-map-link {
      width: 100%;
      max-width: 640px;
      color: inherit;
      text-decoration: none;
    }
    .stats-overview-map-card {
      position: relative;
      overflow: hidden;
      border-radius: 0;
      border: 0;
      box-shadow: none;
      background: transparent;
      transition: transform 0.2s ease;
    }
    .stats-overview-map-link:hover .stats-overview-map-card {
      transform: translateY(-2px);
    }
    .stats-overview-map-frame {
      width: 100%;
      height: 360px;
      border: 0;
      display: block;
    }
    .stats-overview-map-hint {
      position: absolute;
      left: 50%;
      bottom: 12px;
      transform: translateX(-50%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0.46rem 0.92rem;
      font-size: 0.78rem;
      font-weight: 700;
      color: #ffffff;
      background: rgba(96, 37, 108, 0.84);
      border-radius: 999px;
      backdrop-filter: blur(2px);
      opacity: 0.96;
    }
    .stats-overview-panel {
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }
    .stats-overview-title {
      margin: 0;
      color: #60256c;
      font-weight: 800;
      font-size: clamp(1.55rem, 2.1vw, 2.7rem);
      line-height: 1.22;
    }
    .stats-overview-date {
      margin: 0.5rem 0 2rem;
      color: #60256c;
      font-weight: 800;
      font-size: clamp(1.1rem, 1.7vw, 1.95rem);
      line-height: 1.22;
    }
    .stats-overview-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin: 0 auto 0.35rem;
    }
    .stats-overview-metric {
      padding: 0.95rem 1.35rem 0.75rem;
    }
    .stats-overview-metric-right {
      border-left: 1px solid #d8dde8;
    }
    .stats-overview-label {
      margin: 0 0 1.45rem;
      color: #60256c;
      font-size: clamp(1rem, 1.35vw, 1.85rem);
      font-weight: 800;
      line-height: 1.48;
    }
    .stats-overview-value {
      color: #007541;
      font-size: clamp(2.6rem, 3.35vw, 4.6rem);
      font-weight: 800;
      line-height: 1;
      margin-bottom: 0.25rem;
    }
    .stats-overview-unit {
      color: #1f2937;
      font-size: clamp(0.95rem, 1.05vw, 1.5rem);
      font-weight: 700;
      line-height: 1.2;
    }
    .stats-overview-total-row {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      margin: 2.05rem 0 0.25rem;
      flex-wrap: nowrap;
    }
    .stats-overview-total {
      display: inline-flex;
      align-items: baseline;
      gap: 1.05rem;
      margin: 0;
      white-space: nowrap;
    }
    .stats-overview-total-text {
      color: #60256c;
      font-size: clamp(2.6rem, 3.6vw, 4.6rem);
      font-weight: 800;
      line-height: 1;
    }
    .stats-overview-total-value {
      color: #007541;
      font-size: clamp(2.75rem, 3.9vw, 4.8rem);
      font-weight: 800;
      line-height: 1;
    }
    .stats-overview-action {
      margin-top: 1.2rem;
      display: flex;
      justify-content: center;
    }
    .stats-overview-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 280px;
      padding: 0.78rem 1.6rem;
      border-radius: 999px;
      background: #007541;
      color: #ffffff;
      font-weight: 800;
      font-size: clamp(1.1rem, 1.15vw, 1.35rem);
      line-height: 1;
      white-space: nowrap;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .stats-overview-btn:hover {
      background: #0f5c32;
      color: #ffffff;
      transform: translateY(-1px);
    }
    @media (max-width: 900px) {
      .stats-overview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .stats-overview-map-link {
        max-width: 560px;
      }
      .stats-overview-map-frame {
        height: 270px;
      }
      .stats-overview-metrics {
        width: min(620px, 100%);
      }
      .stats-combo {
        grid-template-columns: 1fr;
      }
      .stats-filter {
        justify-content: flex-start;
      }
      .stats-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    .stats-chart-card {
      overflow: hidden;
    }
.stats-chart-wrap canvas {
  width: 100% !important;
  max-width: 100%;
  display: block;
}

/* Keep doughnut charts at a stable render size (prevents narrow/tiny canvas collapse) */
.stats-donut-wrap {
  width: min(420px, 100%);
  min-height: 320px;
}

.stats-donut-wrap canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Keep mini amount cards in budget/area section at equal height */
.stats-mini-amount-card {
  min-height: 138px !important;
}

@media (max-width: 640px) {
  .stats-mini-amount-card {
    min-height: 120px !important;
  }
}
    @media (min-width: 1025px) {
      .channel-carousel {
        height: 374px;
      }
      .channel-track .channel-slide-card {
        width: min(86vw, 382px);
        min-height: 308px;
      }
      .channel-card {
        padding: 15px 18px 11px;
        gap: 7px;
      }
      .channel-head {
        gap: 7px;
      }
      .channel-icon-img {
        width: 90px;
        height: 90px;
      }
      .channel-title {
        font-size: 0.95rem;
      }
      .channel-desc {
        font-size: 0.79rem;
        line-height: 1.32;
        max-width: 88%;
      }
      .channel-cta {
        font-size: 0.78rem;
        padding: 0.58rem 0.8rem;
      }
    }
    @media (max-width: 640px) {
      .hero-container {
        padding-bottom: 1rem;
      }
      .channel-carousel {
        height: 438px;
        padding: 0 18px 40px;
        overflow: visible;
      }
      .channel-track .channel-slide-card {
        width: min(90vw, 390px);
        min-height: 340px;
      }
      .channel-track .channel-slide-card.prev,
      .channel-track .channel-slide-card.next,
      .channel-track .channel-slide-card.is-hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateX(0) scale(0.72);
      }
      .channel-controls {
        display: flex;
        top: 60%;
        left: -4px;
        right: -4px;
        transform: translateY(-50%);
      }
      .channel-btn {
        width: 36px;
        height: 36px;
        background: #ffffff;
        color: #475569;
        border-color: #d7e0ee;
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
      }
      .channel-btn:hover {
        background: #e2b60d;
        color: #60256c;
        transform: scale(1.04);
      }
      .channel-dots {
        bottom: 34px;
        z-index: 35;
      }
      .floating-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        border-radius: 14px;
        opacity: 0.55;
      }
      .floating-icon.float-phone { top: 10% !important; left: 4% !important; }
      .floating-icon.float-chat { top: 28% !important; left: 2% !important; }
      .floating-icon.float-mail { top: 10% !important; right: 4% !important; }
      .floating-icon.float-search { top: 28% !important; right: 2% !important; }
      .channel-card {
        padding: 17px 16px 13px;
        border-radius: 24px;
      }
      .channel-icon-img {
        width: 94px;
        height: 94px;
      }
      .channel-title {
        font-size: 0.98rem;
        line-height: 1.2;
      }
      .channel-desc {
        font-size: 0.84rem;
        line-height: 1.34;
        max-width: 92%;
      }
      .channel-cta {
        width: fit-content;
        max-width: 100%;
        margin-bottom: 6px;
        font-size: 0.82rem;
        padding: 0.62rem 0.82rem;
      }
      .card-banner-box { height: 110px; }
      .card-content-box {
        margin: -22px 10px 0;
        padding: 0.85rem 0.85rem 0.9rem;
      }
      .card-action {
        width: 100%;
        justify-content: center;
      }
      .stats-grid { grid-template-columns: 1fr; }
      .stats-overview-date {
        margin-bottom: 1rem;
      }
      .stats-overview-metrics {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .stats-overview-metric-right {
        border-left: 0;
        border-top: 1px solid #d8dde8;
        padding-top: 0.9rem;
      }
      .stats-overview-total-row {
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 1.15rem;
      }
      .stats-overview-action {
        margin-top: 0.9rem;
      }
      .stats-overview-btn {
        width: auto;
        min-width: 220px;
        font-size: 1.08rem;
        padding: 0.72rem 1.25rem;
      }
      .stats-chart-card { padding: 1.1rem; }
      .stats-chart-wrap {
        height: 180px;
      }
      .stats-combo { gap: 16px; }
      .stats-detail-grid {
        grid-template-columns: 1fr;
      }
      .stat-legend { width: 100%; }
      .stat-legend-item { justify-content: center; }
      .stats-filter {
        flex-wrap: wrap;
        width: 100%;
      }
      .stats-filter select { width: 100%; }
      .stat-donut { width: 96px; height: 96px; box-shadow: inset 0 0 0 8px #ffffff; }
      .nav-logo-img {
        max-width: 140px;
      }
.chatbot-fab {
        right: 12px;
        bottom: 12px;
        width: 86px;
        height: 86px;
      }
      .chatbot-fab .chatbot-icon {
        width: 74px;
        height: 74px;
      }
    }
    @media (max-width: 1024px) and (min-width: 641px) {
      .channel-carousel {
        height: 392px;
        padding: 0 20px 50px;
        overflow: visible;
      }
      .channel-track .channel-slide-card {
        width: min(90vw, 390px);
        min-height: 322px;
      }
      .channel-track .channel-slide-card.prev {
        transform: translateX(-66%) scale(0.85);
        opacity: 0.92;
        filter: none;
      }
      .channel-track .channel-slide-card.next {
        transform: translateX(66%) scale(0.85);
        opacity: 0.92;
        filter: none;
      }
      .channel-controls {
        left: -20px;
        right: -20px;
      }
      .channel-btn {
        width: 46px;
        height: 46px;
      }
    }

    .chart-card{ max-width:920px; margin:0 auto; }
    .chart-toggle{
      display:inline-flex;gap:8px;padding:6px;
      background:#f1f5f9;border-radius:999px;
      border:1px solid #e2e8f0;
    }
    .chart-toggle button{
      border:0;background:transparent;
      padding:.4rem .9rem;border-radius:999px;
      font-weight:800;font-size:.8rem;
      color:#64748b;cursor:pointer;
      transition: all 0.2s;
    }
    .chart-toggle button.active{
      background:#1e3a8a;color:#fff;
      box-shadow:0 10px 18px rgba(30,58,138,.25);
    }

    .news-section {
      position: relative;
      overflow: hidden;
    }
    .news-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }
    .news-head-text {
      min-width: 0;
    }
    .news-footer-cta {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
    }
    .news-view-all {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      border: 1px solid #60256c;
      background: #60256c;
      color: #ffffff;
      font-size: 0.9rem;
      font-weight: 700;
      line-height: 1;
      transition: all 0.2s ease;
      box-shadow: 0 10px 22px rgba(96, 37, 108, 0.2);
    }
    .news-view-all i {
      display: inline-flex;
      align-items: center;
      line-height: 1;
      font-size: 0.85em;
    }
    .news-view-all:hover {
      background: #e2b60d;
      border-color: #e2b60d;
      color: #60256c;
      transform: translateY(-1px);
    }
    .news-tabs {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 999px;
      padding: 5px;
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    }
    .news-tab-btn {
      border: 0;
      background: transparent;
      color: #64748b;
      font-size: 0.9rem;
      font-weight: 700;
      border-radius: 999px;
      padding: 0.45rem 1rem;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .news-tab-btn.active {
      background: #60256c;
      color: #ffffff;
    }
    .news-tab-panel {
      width: 100%;
    }
    .news-empty-text {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    .news-empty-text::before,
    .news-empty-text::after {
      content: "";
      width: 1.15rem;
      height: 1px;
      background: currentColor;
      opacity: 0.65;
      border-radius: 999px;
    }
    .news-decor {
      position: absolute;
      right: -70px;
      top: 10px;
      width: 280px;
      height: 280px;
      z-index: 0;
      pointer-events: none;
      opacity: 0.2;
      transform: none;
    }
    .news-ring {
      position: absolute;
      right: 20px;
      bottom: 20px;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      border: 18px solid rgba(96, 37, 108, 0.18);
    }
    .news-ring.thin {
      right: 100px;
      bottom: 70px;
      width: 90px;
      height: 90px;
      border-width: 2px;
      border-color: rgba(96, 37, 108, 0.22);
    }
    .news-chat {
      position: absolute;
      right: 125px;
      top: 8px;
      width: 96px;
      height: 52px;
      border-radius: 999px;
      background: rgba(96, 37, 108, 0.14);
      display: grid;
      place-items: center;
    }
    .news-chat::after {
      content: "";
      position: absolute;
      right: 14px;
      bottom: -8px;
      width: 18px;
      height: 18px;
      background: rgba(96, 37, 108, 0.14);
      transform: rotate(45deg);
      border-radius: 4px;
    }
    .news-chat span {
      display: grid;
      grid-auto-flow: column;
      gap: 10px;
    }
    .news-chat i {
      width: 10px;
      height: 10px;
      background: #ffffff;
      border-radius: 50%;
      display: inline-block;
    }
    .news-bubble {
      position: absolute;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #60256c;
      color: #ffffff;
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08), inset 0 0 0 6px rgba(255,255,255,0.75);
      font-size: 1.2rem;
      opacity: 0.65;
    }
    .news-bubble.sm { width: 42px; height: 42px; font-size: 0.95rem; }
    .news-bubble.b1 { right: 140px; top: 90px; }
    .news-bubble.b2 { right: 88px; top: 128px; }
    .news-bubble.b3 { right: 35px; top: 166px; }
    .news-section > .container {
      position: relative;
      z-index: 1;
    }
    .news-section > .container,
    .stats-section > .container {
      position: relative;
      z-index: 1;
    }

    .update-banner {
      overflow: hidden;
      border-radius: 18px;
      border: 1px solid #e2e8f0;
      background: #ffffff;
      box-shadow: 0 10px 24px rgba(15,23,42,0.08);
    }
    .update-track {
      display: flex;
      gap: 16px;
      padding: 12px;
      width: max-content;
      animation: banner-scroll 18s linear infinite;
    }
    .update-slide {
      width: min(480px, 86vw);
      height: auto;
      border-radius: 14px;
      border: 1px solid #e2e8f0;
      flex-shrink: 0;
      display: block;
    }
    @keyframes banner-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .update-main {
      overflow: hidden;
      border-radius: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
      position: relative;
    }
    .update-main-wrap {
      display: grid;
      gap: 6px;
    }
    .update-main-track {
      display: flex;
      width: 200%;
      transition: transform 0.5s ease;
    }
    .update-main-slide {
      width: 50%;
      aspect-ratio: 16 / 9;
      height: auto;
      object-fit: contain;
      background: transparent;
      flex-shrink: 0;
      display: block;
    }
    .update-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid #e2e8f0;
      background: #ffffff;
      color: #475569;
      display: grid;
      place-items: center;
      box-shadow: 0 8px 18px rgba(15,23,42,0.12);
      transition: transform 0.2s ease;
    }
    .update-nav:hover { transform: translateY(-50%) scale(1.06); }
    .update-nav.prev { left: 12px; }
    .update-nav.next { right: 12px; }
    .update-dots {
      justify-self: center;
      display: flex;
      gap: 8px;
      padding: 6px 10px;
      background: transparent;
      border-radius: 0;
      border: 0;
    }
    .update-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(96, 37, 108, 0.25);
    }
    .update-dot.active {
      background: #60256c;
      transform: scale(1.2);
    }

    .update-side {
      display: grid;
      gap: 12px;
      align-content: start;
      justify-items: end;
      margin-top: 18px;
    }
    .update-card {
      display: grid;
      grid-template-columns: 1fr 150px;
      align-items: stretch;
      gap: 12px;
      padding: 14px 14px 14px 18px;
      border-radius: 8px;
      background: #dbd9d6;
      border: 0;
      box-shadow: 0 6px 16px rgba(15,23,42,0.08);
      height: 140px;
      width: 320px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      cursor: pointer;
    }
    .update-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 26px rgba(15,23,42,0.14);
    }
    .update-text {
      display: grid;
      gap: 8px;
      align-content: start;
    }
    .update-title {
      font-weight: 800;
      font-size: 0.95rem;
      color: #60256c;
    }
    .update-card:hover .update-title {
      color: #e2b60d;
    }
    .update-desc {
      font-size: 0.78rem;
      color: #7a8790;
      line-height: 1.4;
    }
    .update-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #e2b60d;
      font-size: 1.1rem;
      transition: all 0.2s ease;
      align-self: center;
      justify-self: start;
    }
    .update-card:hover .update-arrow {
      transform: translateX(4px);
    }
    .update-thumb {
      width: 100%;
      height: 100%;
      border-radius: 14px;
      background: transparent;
      overflow: hidden;
      display: grid;
      place-items: center;
    }
    .update-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
    }
    .update-social {
      display: flex;
      justify-content: center;
      gap: 18px;
      font-size: 1.2rem;
      color: #9ca3af;
      width: 340px;
    }
    .update-social span {
      cursor: pointer;
      transition: color 0.2s ease, transform 0.2s ease;
    }
    .update-social span:hover {
      color: #60256c;
      transform: translateY(-2px);
    }

    @media (max-width: 640px) {
      .update-side { justify-items: center; }
      .update-card {
        width: 100%;
        max-width: 380px;
        height: 140px;
      }
      .update-thumb { height: 100%; }
      .update-social { width: auto; }

      .news-section article.flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .news-section article.flex .news-card-img {
        width: 100%;
        max-width: 360px;
        height: 200px;
      }
      .news-section article.flex .news-card-img img {
        object-fit: cover;
      }
      .news-section article.flex .flex.flex-col {
        align-items: center;
      }
    }

    @media (max-width: 1024px) {
      .update-side { justify-items: center; }
      .update-card {
        width: 100%;
        max-width: 520px;
      }
      .update-social { width: auto; }
      .update-main-wrap { justify-items: center; }
    }
    .rating-section {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      background-image:
        radial-gradient(520px 320px at 80% 0%, rgba(96, 37, 108, 0.06), transparent 70%),
        radial-gradient(420px 260px at 10% 100%, rgba(96, 37, 108, 0.04), transparent 75%);
    }
    .rating-section::before {
      content: "";
      position: absolute;
      left: -160px;
      top: 40px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      border: 10px solid rgba(96, 37, 108, 0.05);
      pointer-events: none;
      z-index: 0;
    }
    .rating-section::after {
      content: "";
      position: absolute;
      right: -220px;
      bottom: -180px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      border: 10px solid rgba(96, 37, 108, 0.05);
      pointer-events: none;
      z-index: 0;
    }
    .rating-section > .container {
      position: relative;
      z-index: 1;
    }
    .rating-stars-decor {
      position: absolute;
      inset: 0;
      pointer-events: none;
      display: grid;
      place-items: center;
      gap: 18px;
      color: #60256c;
      opacity: 0.12;
      font-size: 2.5rem;
      z-index: 0;
    }
    .rating-stars-decor i:nth-child(1) {
      transform: translate(-140px, -40px) rotate(-8deg);
    }
    .rating-stars-decor i:nth-child(2) {
      transform: translate(0, 20px) rotate(6deg);
      font-size: 3rem;
      opacity: 0.18;
    }
    .rating-stars-decor i:nth-child(3) {
      transform: translate(140px, -10px) rotate(10deg);
    }
    .rating-list {
      display: grid;
      gap: 16px;
      margin-top: 1rem;
    }
    .rating-item {
      background: #ffffff;
      border: 1px solid rgba(96, 37, 108, 0.18);
      border-radius: 14px;
      padding: 0.85rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .rating-label {
      display: grid;
      gap: 4px;
      min-width: 180px;
    }
    .rating-label strong {
      font-size: 0.95rem;
      color: #60256c;
    }
    .rating-scale {
      display: none;
    }
    .rating-faces {
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      gap: 8px;
      flex-wrap: wrap;
    }
    .rating-face-btn {
      background: transparent;
      border: none;
      padding: 0;
      display: grid;
      justify-items: center;
      gap: 8px;
      cursor: pointer;
      color: #0f172a;
    }
    .rating-face {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 2px solid var(--face-border, #0f172a);
      position: relative;
      background: #ffffff;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .rating-face::before,
    .rating-face::after {
      content: "";
      position: absolute;
      top: 12px;
      width: 5px;
      height: 5px;
      border-radius: 999px;
      background: var(--face-eye, #0f172a);
    }
    .rating-face::before { left: 10px; }
    .rating-face::after { right: 10px; }
    .rating-face-text {
      font-size: 0.75rem;
      font-weight: 700;
      color: #60256c;
    }
    .face-very-good {
      background: #16a34a;
      --face-border: #16a34a;
      --face-eye: #f8fafc;
      --face-mouth: #f8fafc;
    }
    .face-good {
      background: #22c55e;
      --face-border: #22c55e;
      --face-eye: #f8fafc;
      --face-mouth: #f8fafc;
    }
    .face-ok {
      background: #e2b60d;
      --face-border: #e2b60d;
      --face-eye: #0f172a;
      --face-mouth: #0f172a;
    }
    .face-bad {
      background: #ef4444;
      --face-border: #ef4444;
      --face-eye: #f8fafc;
      --face-mouth: #f8fafc;
    }
    .face-very-bad {
      background: #dc2626;
      --face-border: #dc2626;
      --face-eye: #f8fafc;
      --face-mouth: #f8fafc;
    }
    .face-good::before,
    .face-good::after,
    .face-bad::before,
    .face-bad::after,
    .face-very-bad::before,
    .face-very-bad::after,
    .face-very-good::before,
    .face-very-good::after {
      background: #f8fafc;
    }
    .rating-face::after,
    .rating-face::before {
      box-shadow: none;
      z-index: 1;
    }
    .rating-face-btn.hovered .rating-face,
    .rating-face-btn.active .rating-face {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(96, 37, 108, 0.18);
    }
    .rating-face-btn.inactive .rating-face {
      filter: grayscale(1);
      opacity: 0.35;
      box-shadow: none;
      transform: none;
    }
    .rating-face-btn.inactive .rating-face-text {
      color: #94a3b8;
    }
    .rating-mouth {
      position: absolute;
      left: 50%;
      bottom: 9px;
      width: 12px;
      height: 6px;
      border: 2px solid var(--face-mouth, #0f172a);
      color: var(--face-mouth, #0f172a);
      border-top: 0;
      border-left: 0;
      border-right: 0;
      border-radius: 0 0 999px 999px;
      transform: translateX(-50%);
    }
    .mouth-neutral {
      border-top: 2px solid currentColor;
      border-bottom: 0;
      border-radius: 999px;
      height: 0;
      bottom: 11px;
    }
    .mouth-sad {
      border-top: 2px solid currentColor;
      border-bottom: 0;
      border-radius: 999px 999px 0 0;
      transform: translateX(-50%);
      bottom: 7px;
    }
    @media (max-width: 640px) {
      .rating-item {
        padding: 0.9rem 1rem;
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }
      .rating-label {
        text-align: center;
      }
      .rating-faces {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 6px;
      }
      .rating-face {
        width: 32px;
        height: 32px;
      }
      .rating-face::before,
      .rating-face::after {
        top: 10px;
        width: 4px;
        height: 4px;
      }
      .rating-face::before { left: 8px; }
      .rating-face::after { right: 8px; }
      .rating-mouth {
        width: 10px;
        bottom: 7px;
      }
      .mouth-sad {
        bottom: 6px;
      }
      .rating-face-text {
        font-size: 0.68rem;
        max-width: 48px;
        line-height: 1.1;
      }
    }
    @media (max-width: 768px) {
      .rating-stars { font-size: 2rem; }
      .rating-stars i:nth-child(1) { transform: translate(-90px, -30px) rotate(-8deg); }
      .rating-stars i:nth-child(2) { transform: translate(0, 10px) rotate(6deg); font-size: 2.4rem; }
      .rating-stars i:nth-child(3) { transform: translate(90px, -20px) rotate(10deg); }
    }

    /* News Card Styling */
    .news-card-img{ overflow:hidden; border-radius:12px; position:relative; }
    .news-card-img img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
    .news-item-card:hover .news-card-img img{ transform:scale(1.05); }
    .news-item-card {
      cursor: pointer;
    }
    .news-item-title {
      transition: color 0.2s ease;
    }
    .news-section-title {
      color: #0f172a;
    }
    .news-item-heading {
      color: #0f172a;
      line-height: 1.375;
    }
    .news-item-heading-sm {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
    }
    .news-summary {
      line-height: 1.7;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden;
    }
    .news-snippet {
      line-height: 1.6;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
    }
    .news-item-card:hover .news-item-title {
      color: #60256c !important;
    }
    .news-read-more {
      text-underline-offset: 4px;
      text-decoration-thickness: 2px;
      text-decoration-color: #bfdbfe;
      transition: text-decoration-color 0.2s ease;
    }
    .news-item-card:hover .news-read-more {
      text-decoration-color: #60256c;
    }
    .news-read-more-accent {
      color: #60256c;
    }
    .news-kicker {
      letter-spacing: 0.1em;
    }
    .news-meta-date {
      letter-spacing: 0.025em;
      color: #556273;
    }
    #newsSection .text-secondary {
      color: #556273 !important;
    }
    .news-list > article:last-child {
      border-bottom: 0 !important;
      padding-bottom: 0 !important;
    }
    @media (min-width: 992px) {
      #newsSection .news-grid {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1rem;
      }
      #newsSection #newsTabGeneral .news-list {
        gap: 1rem !important;
      }
      #newsSection #newsTabGeneral .news-list > article {
        padding-bottom: 1rem !important;
      }
      #newsSection #newsTabGeneral .news-list > article > a {
        align-items: flex-start;
        gap: 0.9rem !important;
      }
      #newsSection #newsTabGeneral .news-list > article .news-card-img {
        width: 12rem !important;
        height: 8rem !important;
      }
      #newsSection .news-grid > article:first-child .news-card-img {
        margin-bottom: 1rem !important;
      }

      /* Keep result-tab placeholders compact */
      #newsSection #newsTabResult .news-list {
        gap: 1.25rem !important;
      }
      #newsSection #newsTabResult .news-list > article {
        align-items: center;
        gap: 1.5rem !important;
        padding-top: 0.15rem;
        padding-bottom: 1rem !important;
        min-height: 170px;
      }
      #newsSection #newsTabResult .news-list > article > div:first-child {
        width: 16rem !important;
        height: 10rem !important;
        border-radius: 1rem !important;
        border: 2px dashed #cbd5e1 !important;
        background: #f8fafc !important;
      }
      #newsSection #newsTabResult .news-list > article > div:last-child {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
      }
      #newsSection #newsTabResult .news-list > article > div:last-child .news-empty-text {
        color: #94a3b8 !important;
        font-size: 1.35rem;
        font-weight: 700;
      }
    }
    @media (max-width: 768px) {
      .news-head {
        align-items: flex-start;
      }
      .news-view-all {
        min-width: 180px;
        justify-content: center;
      }
      .news-tabs {
        width: 100%;
        justify-content: center;
      }
      .news-tab-btn {
        flex: 1 1 auto;
        max-width: 190px;
      }
      .news-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        overflow: visible;
        padding-bottom: 0;
      }
      .news-list {
        display: flex;
        flex-direction: column;
        gap: 1.25rem !important;
      }
      .news-grid .news-card-img {
        height: 200px !important;
        margin-bottom: 12px;
      }
      .news-list > article > a {
        flex-direction: column;
        gap: 0.75rem !important;
      }
      .news-list > article .news-card-img {
        width: 100% !important;
        height: 200px !important;
        margin-bottom: 0 !important;
      }
      .news-list > article .d-flex.flex-column.justify-content-center {
        width: 100%;
      }
      .news-grid > article:first-child .news-item-heading {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
      }
      .news-grid h3 {
        font-size: 1.25rem;
        line-height: 1.4;
      }
      .news-grid p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 8px;
      }
      .news-section {
        padding-bottom: 6rem;
      }
    }


    /* Gradient Text */
    .text-gradient{
      color:#60256c;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar{ width:6px; }
    ::-webkit-scrollbar-track{ background:#f1f1f1; }
    ::-webkit-scrollbar-thumb{ background:#cbd5e1; border-radius:10px; }

    .chatbot-fab {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 70;
      display: grid;
      place-items: center;
      width: 96px;
      height: 96px;
      padding: 0;
      border-radius: 0;
      background: transparent;
      color: #ffffff;
      font-weight: 800;
      font-size: 0.95rem;
      box-shadow: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      animation: bot-float 3.2s ease-in-out infinite;
      cursor: pointer;
    }
    .chatbot-fab:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: none;
      background: transparent;
      color: inherit;
    }
    .chatbot-fab .chatbot-icon {
      width: 86px;
      height: 86px;
      display: grid;
      place-items: center;
      background: transparent;
      border-radius: 0;
      box-shadow: none;
      overflow: visible;
    }
    .chatbot-fab .chatbot-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.2s ease;
    }
    .chatbot-fab:hover .chatbot-icon img {
      transform: scale(1.05);
    }
    @keyframes bot-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }
    @media (max-width: 640px) {
      .chatbot-fab {
        right: 10px;
        bottom: 10px;
        width: 74px;
        height: 74px;
      }
      .chatbot-fab .chatbot-icon {
        width: 62px;
        height: 62px;
      }
    }

    /* Promo Warning Modal */
    #promoNewsModal .promo-warning-dialog {
      max-width: min(980px, 92vw);
      margin-top: 0.65rem;
      margin-bottom: 0;
    }
    #promoNewsModal .promo-warning-content {
      border-radius: 12px;
      background: #f5f6f8;
    }
    #promoNewsModal .promo-warning-header {
      padding: 1.1rem 1.25rem 0.95rem;
      border-bottom: 1px solid #d4d9de;
    }
    #promoNewsModal .promo-warning-title {
      margin: 0;
      color: #b00020;
      font-weight: 700;
      font-size: clamp(1.15rem, 1.35vw, 1.65rem);
      line-height: 1.25;
      letter-spacing: 0.01em;
    }
    #promoNewsModal .promo-warning-body {
      padding: 1rem 1.25rem 1.05rem;
      border-bottom: 1px solid #d4d9de;
      background: #f7f7f8;
    }
    #promoNewsModal .promo-warning-text {
      color: #384454;
      font-size: clamp(0.98rem, 1.05vw, 1.25rem);
      line-height: 1.55;
      font-weight: 400;
    }
    #promoNewsModal .promo-warning-footer {
      padding: 0.85rem 1.25rem 1.05rem;
      justify-content: flex-end;
      background: #f7f7f8;
    }
    #promoNewsModal .promo-warning-close-btn {
      min-width: 70px;
      border: 0;
      border-radius: 8px;
      background: #6c7680;
      color: #ffffff;
      font-size: 1.2rem;
      font-weight: 700;
      line-height: 1;
      padding: 0.42rem 0.9rem 0.48rem;
    }
    #promoNewsModal .promo-warning-close-btn:hover {
      background: #5f6973;
      color: #ffffff;
    }

    @media (max-width: 768px) {
      #promoNewsModal .promo-warning-dialog {
        max-width: calc(100vw - 12px);
        margin: 0.35rem auto 0;
      }
      #promoNewsModal .promo-warning-header,
      #promoNewsModal .promo-warning-body,
      #promoNewsModal .promo-warning-footer {
        padding-left: 0.95rem;
        padding-right: 0.95rem;
      }
      #promoNewsModal .promo-warning-title {
        font-size: 1rem;
      }
      #promoNewsModal .promo-warning-text {
        font-size: 0.9rem;
        line-height: 1.5;
      }
      #promoNewsModal .promo-warning-close-btn {
        font-size: 0.95rem;
      }
    }

    #surveyModal .btn-close {
      opacity: 1;
      background-size: 1.05rem;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc2626'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
      transition: transform 0.2s ease, opacity 0.2s ease;
    }
    #surveyModal .btn-close:hover {
      opacity: 1;
      transform: scale(1.08);
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b91c1c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    }

    body.promo-news-open .modal-backdrop.show {
      opacity: 0.72;
      backdrop-filter: blur(2px);
      background: rgba(15, 23, 42, 0.58);
    }


/* Survey Page */
.survey-page {
  min-height: 100vh;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: radial-gradient(circle at 12% 0%, rgba(96, 37, 108, 0.08), transparent 35%),
              radial-gradient(circle at 88% 10%, rgba(96, 37, 108, 0.1), transparent 34%),
              #f8fafc;
}
.survey-accent-text {
  color: #60256c !important;
}
.survey-dark-text {
  color: #0f172a !important;
}

/* Bootstrap migration helpers for index.php */
.hero-max-w {
  max-width: 64rem;
}
.hero-title-md {
  font-size: inherit;
}
.lh-120 {
  line-height: 1.2;
}
.lh-135 {
  line-height: 1.35;
}
.news-hero-h {
  height: 280px !important;
}
.news-hero-md-h {
  height: inherit;
}
.news-thumb-w {
  width: 9rem !important;
}
.news-thumb-h {
  height: 7rem !important;
}
.news-thumb-md-w {
  width: inherit;
}
.news-thumb-md-h {
  height: inherit;
}
.text-brown-dark {
  color: #1c1600 !important;
}
.survey-modal-title {
  color: #60256c;
}
.survey-submit-btn {
  transition: background-color 0.2s ease;
}
.survey-submit-btn:hover {
  background-color: #e2b60d !important;
}

@media (min-width: 768px) {
  .hero-title-md {
    font-size: 1.875rem !important;
  }
  .news-hero-md-h {
    height: 360px !important;
  }
  .news-thumb-md-w {
    width: 13rem !important;
  }
  .news-thumb-md-h {
    height: 9rem !important;
  }
}
.survey-layout-wrap {
  max-width: none !important;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.survey-page #surveyIntro {
  max-width: 980px;
  margin: 0 auto;
}
.survey-screen-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.survey-screen-head {
  text-align: center;
  margin-bottom: 1rem;
}
.survey-screen-head.compact {
  margin-bottom: 1.25rem;
}
.survey-screen-head.is-light {
  text-align: left;
}
.survey-screen-head.is-light h2,
.survey-screen-head.is-light p {
  color: #ffffff;
}
.survey-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #dbe3ef;
  background: #f8f6ff;
  color: #60256c;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}
.survey-screen-head h1,
.survey-screen-head h2 {
  font-size: 1.5rem;
  line-height: 1.25;
  color: #0f172a;
  font-weight: 800;
  margin: 0;
}
.survey-screen-head p {
  margin: 0.5rem auto 0;
  color: #64748b;
  max-width: 56ch;
  font-weight: 500;
}
.survey-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.15rem;
}
.survey-overview-item {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 0.85rem 0.9rem;
  background: #fbfdff;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.survey-overview-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #f2efff;
  color: #60256c;
  font-size: 0.85rem;
}
.survey-overview-item strong {
  display: block;
  color: #1e293b;
  font-size: 0.95rem;
}
.survey-overview-item p {
  margin: 0.1rem 0 0;
  color: #64748b;
  font-size: 0.9rem;
}
.survey-form {
  display: grid;
  gap: 0.95rem;
}
.survey-form.is-on-purple {
  gap: 0.75rem;
}
.survey-question {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.9rem 0.95rem;
  background: #ffffff;
}
.survey-question legend {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.55rem;
}
.survey-question.on-purple {
  border: 0;
  border-radius: 0;
  padding: 0.2rem 0;
  background: transparent;
}
.survey-question.on-purple legend {
  color: #ffffff;
  font-size: 1.03rem;
  margin-bottom: 0.45rem;
}
.survey-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.survey-choice-row.on-purple {
  gap: 0.5rem 1rem;
}
.survey-choice-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #dbe3ef;
  border-radius: 999px;
  background: #f8fafc;
  padding: 0.33rem 0.7rem;
  font-size: 0.88rem;
  color: #334155;
  cursor: pointer;
}
.survey-choice-row.on-purple label {
  border: 0;
  background: transparent;
  color: #f8f7ff;
  padding: 0.2rem 0;
  font-size: 0.95rem;
  font-weight: 700;
}
.survey-choice-row input[type="radio"] {
  accent-color: #60256c;
}
.survey-choice-row.on-purple input[type="radio"] {
  accent-color: #60256c;
}
.survey-text-label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: #1e293b;
}
.survey-text-label.on-purple {
  color: #ffffff;
  margin-bottom: 0.55rem;
}
#surveySuggestion {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  color: #1e293b;
  resize: vertical;
  min-height: 96px;
}
#surveyForm .on-purple #surveySuggestion,
.survey-question.on-purple #surveySuggestion {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: #1e293b;
}
#surveySuggestion:focus {
  outline: none;
  border-color: #a78bfa;
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.2);
}
.survey-screen-actions {
  margin-top: 1.1rem;
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
}
.survey-screen-actions.left {
  justify-content: flex-start;
}
.survey-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.62rem 1.1rem;
  transition: all 0.2s ease;
}
.survey-btn-main {
  border: 1px solid transparent;
  background: #60256c;
  color: #ffffff;
}
.survey-btn-main:hover {
  background: #4d1d57;
  color: #ffffff;
}
.survey-btn-light {
  border: 1px solid #dbe3ef;
  background: #ffffff;
  color: #475569;
}
.survey-btn-light:hover {
  border-color: #c5d0e0;
  color: #334155;
}
.survey-theme-purple {
  background: #60256c;
  border: 0;
  border-radius: 18px;
  padding: 1.6rem;
  overflow: hidden;
}
.survey-full-bleed {
  width: 100%;
  min-height: calc(100vh - 180px);
  border-radius: 0;
  padding: 2rem clamp(1rem, 3vw, 3rem);
}
.survey-theme-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.2rem;
  align-items: stretch;
}
.survey-theme-content {
  position: relative;
  z-index: 2;
}
.survey-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.survey-btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}
.survey-btn-green {
  border: 1px solid transparent;
  color: #ffffff;
  background: #088c47;
}
.survey-btn-green:hover {
  background: #0f5c32;
  color: #ffffff;
}
.survey-art-panel {
  position: relative;
  min-height: 320px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 26%),
    radial-gradient(circle at 86% 82%, rgba(196, 167, 214, 0.24), transparent 32%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.survey-art-monitor {
  position: absolute;
  left: 12%;
  top: 20%;
  width: 72%;
  height: 52%;
  border-radius: 22px;
  background: linear-gradient(145deg, #7a3d87 0%, #60256c 100%);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.6), 0 24px 32px rgba(1, 8, 20, 0.35);
  transform: rotate(-16deg);
}
.survey-art-sheet {
  position: absolute;
  width: 46%;
  height: 72%;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #c8d7eb;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}
.survey-art-sheet.s1 { left: 18%; top: 10%; transform: rotate(9deg); }
.survey-art-sheet.s2 { left: 36%; top: 14%; transform: rotate(14deg); }
.survey-art-sheet.s3 { left: 53%; top: 18%; transform: rotate(20deg); }
.survey-art-bar {
  position: absolute;
  left: 18%;
  bottom: 9%;
  width: 42%;
  height: 10%;
  border-radius: 999px;
  background: linear-gradient(90deg, #8c5b9a 0%, #60256c 100%);
}
.survey-art-magnifier {
  position: absolute;
  right: 8%;
  bottom: 6%;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  border: 14px solid #7a3d87;
  box-shadow: inset 0 0 0 6px rgba(96, 37, 108, 0.25);
}
.survey-art-magnifier::after {
  content: "";
  position: absolute;
  width: 62px;
  height: 20px;
  background: linear-gradient(90deg, #4d1d57, #7a3d87);
  left: -50px;
  bottom: -22px;
  border-radius: 12px;
  transform: rotate(-35deg);
}
.survey-art-badge {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.9rem;
}
.survey-art-badge.b1 {
  right: 40%;
  top: 18%;
  background: #60256c;
}
.survey-art-badge.b2 {
  right: 29%;
  top: 8%;
  background: #7a3d87;
}
@media (max-width: 860px) {
  .survey-overview-grid {
    grid-template-columns: 1fr;
  }
  .survey-theme-grid {
    grid-template-columns: 1fr;
  }
  .survey-art-panel {
    min-height: 260px;
  }
}
@media (max-width: 640px) {
  .survey-screen-card {
    border-radius: 16px;
    padding: 1rem;
  }
  .survey-screen-head h1,
  .survey-screen-head h2 {
    font-size: 1.24rem;
  }
  .survey-screen-head p {
    font-size: 0.92rem;
  }
  .survey-question {
    padding: 0.75rem;
  }
  .survey-choice-row {
    gap: 0.5rem;
  }
  .survey-choice-row label {
    font-size: 0.84rem;
    padding: 0.3rem 0.6rem;
  }
  .survey-choice-row.on-purple label {
    font-size: 0.9rem;
    width: calc(50% - 0.6rem);
  }
  .survey-btn {
    width: 100%;
  }
  .survey-theme-purple {
    border-radius: 16px;
    padding: 1rem;
  }
  .survey-full-bleed {
    min-height: auto;
    border-radius: 0;
    padding: 1rem;
  }
  .survey-art-panel {
    min-height: 220px;
  }
  .survey-art-magnifier {
    width: 92px;
    height: 92px;
    border-width: 10px;
  }
}

/* Survey Clean Override */
.survey-theme-purple.survey-full-bleed {
  background: #60256c;
  min-height: calc(100vh - 150px);
  padding: clamp(0.9rem, 2.4vw, 2rem);
  margin-bottom: 0;
}
.survey-clean-shell {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
  padding: clamp(1rem, 2vw, 1.7rem);
}
.survey-clean-header h2 {
  margin: 0;
  font-size: clamp(1.28rem, 2.3vw, 1.7rem);
  color: #0f172a;
  font-weight: 800;
  line-height: 1.3;
}
.survey-clean-header p {
  margin: 0.4rem 0 0;
  color: #64748b;
  font-weight: 500;
}
.survey-clean-meta {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.survey-clean-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.28rem 0.68rem;
  color: #475569;
  background: #f8fafc;
  font-size: 0.84rem;
  font-weight: 700;
}
.survey-form-clean {
  margin-top: 1rem;
  gap: 0.72rem;
}
.survey-question-clean {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.82rem 0.9rem;
  background: #ffffff;
}
.survey-question-clean legend {
  color: #1e293b;
  font-size: 1rem;
  margin-bottom: 0.48rem;
}
.survey-choice-clean {
  gap: 0.45rem;
}
.survey-choice-clean label {
  border: 1px solid #dbe3ef;
  background: #f8fafc;
  color: #334155;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.86rem;
  font-weight: 700;
}
.survey-choice-clean input[type="radio"] {
  accent-color: #60256c;
}
.survey-text-clean {
  color: #1e293b;
}
.survey-question-clean #surveySuggestion {
  border: 1px solid #dbe3ef;
  background: #ffffff;
}
.survey-actions-clean {
  justify-content: flex-end;
  margin-top: 0.85rem;
}
.survey-actions-clean .survey-btn-light {
  border-color: #dbe3ef;
  background: #ffffff;
  color: #475569;
}
.survey-art-panel,
.survey-art-monitor,
.survey-art-sheet,
.survey-art-bar,
.survey-art-magnifier,
.survey-art-badge {
  display: none !important;
}
@media (max-width: 640px) {
  .survey-theme-purple.survey-full-bleed {
    min-height: auto;
    padding: 0.8rem;
  }
  .survey-clean-shell {
    border-radius: 14px;
    padding: 0.82rem;
  }
  .survey-choice-clean label {
    width: auto;
    font-size: 0.84rem;
  }
  .survey-actions-clean {
    justify-content: stretch;
  }
}

/* Survey/Stats hover replacements after utility cleanup */
.survey-hover-light:hover { background-color: #e9ecef !important; }
.survey-hover-subtle:hover { background-color: #f8f9fa !important; }
.survey-hover-gold:hover { background-color: #e2b60d !important; }
.survey-hover-main-text:hover { color: #60256c !important; }
