 /* ==============================
       BASE
    ============================== */

 body {
     font-family: 'Plus Jakarta Sans', sans-serif !important;
     background: #f0f9ff !important;
     min-height: 100vh;
 }

 body::before {
     content: '';
     position: fixed;
     width: 420px;
     height: 420px;
     border-radius: 50%;
     background: rgba(3, 105, 161, .10);
     filter: blur(90px);
     top: -130px;
     left: -130px;
     pointer-events: none;
     z-index: 0;
     animation: blobA 12s ease-in-out infinite alternate;
 }

 body::after {
     content: '';
     position: fixed;
     width: 300px;
     height: 300px;
     border-radius: 50%;
     background: rgba(56, 189, 248, .14);
     filter: blur(80px);
     bottom: 60px;
     right: -80px;
     pointer-events: none;
     z-index: 0;
     animation: blobB 10s ease-in-out infinite alternate;
 }

 @keyframes blobA {
     0% {
         transform: translate(0, 0) scale(1);
     }
     100% {
         transform: translate(20px, 15px) scale(1.1);
     }
 }

 @keyframes blobB {
     0% {
         transform: translate(0, 0) scale(1);
     }
     100% {
         transform: translate(-15px, -20px) scale(1.08);
     }
 }

 @keyframes fadeUp {
     from {
         transform: translateY(22px);
         opacity: 0;
     }
     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 @keyframes slideDown {
     from {
         transform: translateY(-14px);
         opacity: 0;
     }
     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 @keyframes shimmer {
     to {
         transform: translateX(100%);
     }
 }

 @keyframes badgePulse {
     0%,
     100% {
         box-shadow: 0 4px 16px rgba(3, 105, 161, .38);
     }
     50% {
         box-shadow: 0 4px 28px rgba(3, 105, 161, .58);
     }
 }

 @keyframes dotBlink {
     0%,
     100% {
         opacity: 1;
     }
     50% {
         opacity: .35;
     }
 }

 @keyframes notifIn {
     from {
         transform: translateX(-120%) scale(.9);
         opacity: 0;
     }
     to {
         transform: translateX(0) scale(1);
         opacity: 1;
     }
 }

 @keyframes notifOut {
     to {
         transform: translateX(-120%);
         opacity: 0;
     }
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 @keyframes dotBounce {
     0%,
     80%,
     100% {
         transform: translateY(0);
         opacity: .4;
     }
     40% {
         transform: translateY(-4px);
         opacity: 1;
     }
 }

 @keyframes livePulse {
     0%,
     100% {
         box-shadow: 0 0 0 0 rgba(16, 185, 129, .5);
     }
     50% {
         box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
     }
 }

 .container-fluid {
     position: relative;
     z-index: 1;
 }

 /* ==============================
       LANGUAGE BAR
    ============================== */

 .lang-bar-wrap {
     animation: slideDown .5s ease both;
 }

 .lang-bar-wrap a {
     font-weight: 600 !important;
     padding: 2px 8px;
     border-radius: 20px;
     transition: all .25s ease;
 }

 .lang-bar-wrap a:not(.disabled):hover {
     background: rgba(3, 105, 161, .10);
     text-decoration: none !important;
 }

 /* ==============================
       BANNER
    ============================== */

 .banner-wrap {
     position: relative;
     border-radius: 18px;
     overflow: hidden;
     box-shadow: 0 16px 50px rgba(3, 105, 161, .18);
     animation: fadeUp .6s .1s ease both;
     transition: transform .3s ease, box-shadow .3s ease;
 }

 .banner-wrap:hover {
     transform: translateY(-3px);
     box-shadow: 0 22px 60px rgba(3, 105, 161, .24);
 }

 .banner-wrap img {
     display: block;
     width: 100%;
     border-radius: 18px;
 }

 .banner-badge {
     position: absolute;
     top: 12px;
     right: 12px;
     background: linear-gradient(135deg, #0ea5e9, #0369a1);
     color: #fff;
     font-size: 9.5px;
     font-weight: 800;
     padding: 5px 12px;
     border-radius: 30px;
     letter-spacing: .5px;
     display: flex;
     align-items: center;
     gap: 5px;
     box-shadow: 0 4px 16px rgba(3, 105, 161, .38);
     animation: badgePulse 2s ease-in-out infinite;
 }

 .banner-badge::before {
     content: '';
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: #fff;
     animation: dotBlink 1s ease-in-out infinite;
 }

 /* ==============================
       MAIN CARD
    ============================== */

 .main-card {
     background: #fff;
     border-radius: 22px;
     box-shadow: 0 10px 50px rgba(3, 105, 161, .10), 0 1px 4px rgba(0, 0, 0, .04);
     border: 1px solid rgba(3, 105, 161, .10);
     overflow: hidden;
     animation: fadeUp .6s .2s ease both;
     position: relative;
 }

 .main-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #1f3f7a, #0369a1, #7dd3fc);
 }

 .main-card-body {
     padding: 24px 20px 22px;
 }

 .main-card h3 {
     font-size: clamp(16px, 4.1vw, 19px) !important;
     font-weight: 800 !important;
     letter-spacing: -.3px;
     line-height: 1.25;
     background: linear-gradient(135deg, #1f3f7a, #0369a1);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 /* ==============================
       FORM BOX
    ============================== */

 .form-box {
     background: linear-gradient(180deg, #ffffff, #f8fafc);
     border: 1px solid rgba(3, 105, 161, .12);
     border-radius: 18px;
     padding: 16px !important;
     box-shadow: 0 8px 24px rgba(3, 105, 161, .08);
 }

 .text-accent {
     color: #0369a1 !important;
 }

 /* ==============================
       INPUTS UMUM
    ============================== */

 .input-group-text {
     background: linear-gradient(135deg, #eff6ff, #e0f2fe) !important;
     border-color: rgba(3, 105, 161, .18) !important;
     border-right: none !important;
 }

 .input-group-text:first-child {
     border-radius: 12px 0 0 12px !important;
 }

 .form-control {
     border-color: rgba(3, 105, 161, .18) !important;
     border-left: none !important;
     font-family: 'Plus Jakarta Sans', sans-serif !important;
     font-size: 14px !important;
     font-weight: 500 !important;
     border-radius: 0 12px 12px 0 !important;
     transition: all .3s ease !important;
     color: #374151 !important;
     background: #fff !important;
 }

 .form-control::placeholder {
     color: #9ca3af;
     font-weight: 500;
 }

 .form-control:focus {
     border-color: #0369a1 !important;
     border-left: 1px solid #0369a1 !important;
     box-shadow: 0 0 0 4px rgba(3, 105, 161, .12) !important;
     background: #f0f9ff !important;
 }

 .custom-input .input-group-text {
     background: linear-gradient(135deg, #eff6ff, #e0f2fe) !important;
     border: 1px solid rgba(3, 105, 161, .18) !important;
     border-right: none !important;
     min-width: 48px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 12px 0 0 12px !important;
 }

 .custom-input .form-control,
 .custom-input select.form-control {
     height: 50px;
     border: 1px solid rgba(3, 105, 161, .18) !important;
     border-left: none !important;
     border-radius: 0 12px 12px 0 !important;
     background: #fff !important;
     font-size: 14px !important;
     font-weight: 600 !important;
     color: #374151 !important;
     box-shadow: none !important;
 }

 .custom-input .form-control::placeholder {
     color: #9ca3af;
     font-weight: 500;
 }

 .custom-input .form-control:focus,
 .custom-input select.form-control:focus {
     border-color: #0369a1 !important;
     border-left: 1px solid #0369a1 !important;
     box-shadow: 0 0 0 4px rgba(3, 105, 161, .12) !important;
     background: #f0f9ff !important;
 }

 .otp-input {
     border-radius: 12px !important;
     border-left: 1px solid rgba(3, 105, 161, .22) !important;
     font-size: 20px !important;
     font-weight: 800 !important;
     color: #0369a1 !important;
     border: 2px solid rgba(3, 105, 161, .22) !important;
     height: 52px !important;
     transition: all .3s ease !important;
 }

 .otp-input:focus {
     border-color: #0369a1 !important;
     box-shadow: 0 0 0 4px rgba(3, 105, 161, .12) !important;
     transform: scale(1.06) !important;
 }

 /* ==============================
       SELECT / DROPDOWN
    ============================== */

 .select-wrapper {
     position: relative;
     flex: 1;
 }

 .select-wrapper select.form-control {
     border-left: none !important;
     appearance: none;
     -webkit-appearance: none;
     cursor: pointer;
     color: #495057;
     background: #fff !important;
     padding-right: 40px !important;
 }

 .select-wrapper select.form-control:focus {
     border-color: #0369a1 !important;
     border-left: 1px solid #0369a1 !important;
     box-shadow: 0 0 0 4px rgba(3, 105, 161, .12) !important;
 }

 .select-wrapper select.form-control option[value=""] {
     color: #adb5bd;
 }

 .select-arrow {
     position: absolute;
     right: 14px;
     top: 50%;
     transform: translateY(-50%);
     pointer-events: none;
     color: #0369a1;
     font-size: 12px;
 }

 /* ==============================
       BUTTON
    ============================== */

 .btn-primary {
     background: linear-gradient(135deg, #1f3f7a, #3559a6) !important;
     border: none !important;
     border-radius: 14px !important;
     font-family: 'Plus Jakarta Sans', sans-serif !important;
     font-weight: 700 !important;
     font-size: 15px !important;
     padding: 13px 32px !important;
     box-shadow: 0 6px 22px rgba(31, 63, 122, .28) !important;
     transition: all .3s ease !important;
     position: relative;
     overflow: hidden;
 }

 .btn-primary::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .13), transparent);
     transform: translateX(-100%);
 }

 .btn-primary:hover {
     transform: translateY(-2px) !important;
     box-shadow: 0 10px 32px rgba(31, 63, 122, .38) !important;
 }

 .btn-primary:hover::after {
     animation: shimmer .7s ease;
 }

 .btn-primary:active {
     transform: translateY(0) !important;
 }

 .btn-accent {
     background: linear-gradient(135deg, #0ea5e9, #0369a1) !important;
     border: none !important;
     color: #fff !important;
     border-radius: 14px !important;
     font-family: 'Plus Jakarta Sans', sans-serif !important;
     font-weight: 800 !important;
     font-size: 15px !important;
     padding: 13px 20px !important;
     box-shadow: 0 10px 24px rgba(3, 105, 161, .25) !important;
     transition: all .25s ease !important;
     position: relative;
     overflow: hidden;
 }

 .btn-accent:hover {
     transform: translateY(-2px);
     box-shadow: 0 14px 30px rgba(3, 105, 161, .32) !important;
     color: #fff !important;
 }

 .btn-accent:focus {
     box-shadow: 0 0 0 4px rgba(3, 105, 161, .18) !important;
     color: #fff !important;
 }

 .btn-light {
     border-radius: 12px !important;
     font-family: 'Plus Jakarta Sans', sans-serif !important;
     font-weight: 600 !important;
     border: 2px solid rgba(31, 63, 122, .12) !important;
     transition: all .3s ease !important;
 }

 .btn-light:hover {
     background: rgba(3, 105, 161, .06) !important;
     border-color: #0369a1 !important;
 }

 /* ==============================
       GUIDE TEXT
    ============================== */

 #guide-text .guide-pill {
     display: inline-block;
     background: #eff6ff;
     color: #0369a1 !important;
     border: 1px solid rgba(3, 105, 161, .16);
     border-radius: 999px;
     padding: 8px 14px;
     font-size: 13px;
     font-weight: 600;
 }

 /* ==============================
       SPINNER
    ============================== */

 .spinner-backdrop {
     position: fixed;
     inset: 0;
     background: rgba(255, 255, 255, .88);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     backdrop-filter: blur(6px);
 }

 .spinner-border {
     width: 3rem;
     height: 3rem;
     border: 4px solid rgba(3, 105, 161, .16) !important;
     border-top-color: #0369a1 !important;
 }

 /* ==============================
       STATS ROW
    ============================== */

 .stats-row {
     display: flex;
     gap: 8px;
     margin-bottom: 14px;
     animation: fadeUp .5s .4s ease both;
 }

 .stat-pill {
     flex: 1;
     text-align: center;
     background: #fff;
     border: 1px solid rgba(3, 105, 161, .10);
     border-radius: 14px;
     padding: 11px 8px;
     min-height: 64px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     box-shadow: 0 2px 12px rgba(3, 105, 161, .06);
 }

 .stat-num {
     display: block;
     font-size: 18px;
     font-weight: 800;
     color: #1f3f7a;
     line-height: 1;
 }

 .stat-num.text-accent {
     color: #0369a1 !important;
 }

 .stat-lbl {
     display: block;
     font-size: 9px;
     font-weight: 700;
     color: #9ca3af;
     text-transform: uppercase;
     letter-spacing: .5px;
     margin-top: 3px;
 }

 /* ==============================
       LIVE NOTIF CORNER
    ============================== */

 #live-notif {
     position: fixed;
     top: 16px;
     left: 16px;
     z-index: 9998;
     display: flex;
     flex-direction: column;
     gap: 6px;
     pointer-events: none;
 }

 .notif-bubble {
     background: #fff;
     border: 1.5px solid rgba(16, 185, 129, .3);
     border-radius: 14px;
     padding: 9px 12px;
     display: flex;
     align-items: center;
     gap: 9px;
     box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
     max-width: 230px;
     animation: notifIn .5s cubic-bezier(.34, 1.4, .64, 1) both;
 }

 .notif-bubble.notif-out {
     animation: notifOut .4s ease forwards;
 }

 .notif-av {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 14px;
     color: #fff;
     box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
     position: relative;
 }

 .notif-av .spin-ring {
     position: absolute;
     inset: -3px;
     border-radius: 50%;
     border: 2px solid transparent;
     border-top-color: #10b981;
     border-right-color: #10b981;
     animation: spin 1.2s linear infinite;
 }

 .notif-text {
     flex: 1;
     min-width: 0;
 }

 .notif-name {
     font-size: 11px;
     font-weight: 800;
     color: #111827;
     line-height: 1.2;
 }

 .notif-gender {
     font-size: 10px;
     font-weight: 700;
     margin-top: 1px;
     margin-bottom: 1px;
     display: inline-flex;
     align-items: center;
     gap: 3px;
 }

 .notif-gender.lelaki {
     color: #3559a6;
 }

 .notif-gender.perempuan {
     color: #5b21b6;
 }

 .notif-status {
     font-size: 10px;
     color: #10b981;
     font-weight: 700;
     margin-top: 1px;
 }

 .notif-dots {
     display: flex;
     gap: 3px;
     align-items: center;
     margin-top: 2px;
 }

 .notif-dots span {
     width: 4px;
     height: 4px;
     border-radius: 50%;
     background: #10b981;
     animation: dotBounce 1.2s ease-in-out infinite;
 }

 .notif-dots span:nth-child(2) {
     animation-delay: .2s;
 }

 .notif-dots span:nth-child(3) {
     animation-delay: .4s;
 }

 /* ==============================
       TESTIMONIAL SECTION
    ============================== */

 .testi-section {
     animation: fadeUp .5s .5s ease both;
     margin-top: 4px;
 }

 .testi-header {
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-bottom: 16px;
     padding: 12px 14px;
     background: #fff;
     border: 1px solid rgba(3, 105, 161, .12);
     border-radius: 14px;
     box-shadow: 0 2px 14px rgba(3, 105, 161, .07);
 }

 .testi-header-main {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     min-width: 0;
 }

 .testi-live-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: #10b981;
     flex-shrink: 0;
     margin-top: 4px;
     animation: livePulse 1.5s ease-in-out infinite;
 }

 .testi-label {
     flex: 1;
     min-width: 0;
     margin: 0;
     font-size: 12px;
     font-weight: 700;
     color: #0f172a;
     line-height: 1.4;
     letter-spacing: .01em;
     text-transform: none;
     overflow-wrap: break-word;
 }

 .testi-counter {
     align-self: flex-start;
     background: linear-gradient(135deg, #059669, #10b981);
     color: #fff;
     font-size: 10px;
     font-weight: 700;
     padding: 5px 12px;
     border-radius: 999px;
     white-space: nowrap;
     max-width: 100%;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 @media (max-width: 576px) {
     .testi-header {
         padding: 11px 12px;
         gap: 8px;
     }
     .testi-label {
         font-size: 11px;
         line-height: 1.38;
     }
     .testi-counter {
         font-size: 9.5px;
         padding: 5px 11px;
     }
 }

 .testi-scroll-outer {
     position: relative;
     border-radius: 18px;
     overflow: hidden;
 }

 .testi-scroll-outer::before,
 .testi-scroll-outer::after {
     content: '';
     position: absolute;
     left: 0;
     right: 0;
     height: 36px;
     pointer-events: none;
     z-index: 2;
 }

 .testi-scroll-outer::before {
     top: 0;
     background: linear-gradient(to bottom, #f0f9ff, transparent);
 }

 .testi-scroll-outer::after {
     bottom: 0;
     background: linear-gradient(to top, #f0f9ff, transparent);
 }

 .testi-track {
     display: flex;
     flex-direction: column;
     gap: 12px;
     padding: 8px 2px;
 }

 /* ==============================
       TESTIMONIAL CARD
    ============================== */

 .testi-card {
     background: #fff;
     border: 1.5px solid rgba(16, 185, 129, .2);
     border-radius: 20px;
     padding: 16px 16px 14px;
     display: flex;
     gap: 14px;
     align-items: flex-start;
     position: relative;
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
     flex-shrink: 0;
 }

 .testi-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 4px;
     height: 100%;
     background: linear-gradient(to bottom, #10b981, #059669);
     border-radius: 4px 0 0 4px;
 }

 .tc-av-wrap {
     position: relative;
     flex-shrink: 0;
 }

 .tc-av {
     width: 62px;
     height: 62px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 900;
     font-size: 24px;
     color: #fff;
     border: 3px solid #fff;
     box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
     overflow: hidden;
     position: relative;
 }

 .tc-av img {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 50%;
 }

 .tc-check {
     position: absolute;
     bottom: 1px;
     right: 1px;
     width: 22px;
     height: 22px;
     border-radius: 50%;
     background: #10b981;
     border: 2.5px solid #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 2px 8px rgba(16, 185, 129, .4);
 }

 .tc-check i {
     font-size: 10px;
     color: #fff;
 }

 .tc-body {
     flex: 1;
     min-width: 0;
 }

 .tc-name {
     font-size: 15px;
     font-weight: 800;
     color: #111827;
     margin-bottom: 2px;
     line-height: 1.2;
 }

 .tc-gender {
     display: inline-flex;
     align-items: center;
     gap: 4px;
     font-size: 10.5px;
     font-weight: 700;
     padding: 2px 9px;
     border-radius: 20px;
     margin-bottom: 5px;
     letter-spacing: .3px;
 }

 .tc-gender.lelaki {
     background: #eff6ff;
     color: #3559a6;
     border: 1px solid #bfdbfe;
 }

 .tc-gender.perempuan {
     background: #f5f3ff;
     color: #5b21b6;
     border: 1px solid #ddd6fe;
 }

 .tc-meta {
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 11px;
     color: #6b7280;
     font-weight: 500;
     margin-bottom: 7px;
 }

 .tc-meta i {
     font-size: 9px;
     color: #9ca3af;
 }

 .tc-meta .dot {
     width: 3px;
     height: 3px;
     border-radius: 50%;
     background: #d1d5db;
 }

 .tc-stars {
     font-size: 14px;
     color: #f59e0b;
     letter-spacing: 1px;
     margin-bottom: 8px;
 }

 .tc-success {
     background: linear-gradient(135deg, #ecfdf5, #d1fae5);
     border: 1.5px solid #6ee7b7;
     border-radius: 12px;
     padding: 10px 13px;
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 10px;
 }

 .tc-success-icon {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: linear-gradient(135deg, #10b981, #059669);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     box-shadow: 0 3px 10px rgba(16, 185, 129, .35);
 }

 .tc-success-icon i {
     font-size: 14px;
     color: #fff;
 }

 .tc-success-title {
     font-size: 12.5px;
     font-weight: 800;
     color: #065f46;
     text-transform: uppercase;
     letter-spacing: .4px;
     line-height: 1.2;
 }

 .tc-success-ref {
     font-size: 10.5px;
     color: #047857;
     font-weight: 600;
     font-family: monospace;
     margin-top: 2px;
 }

 .tc-msg {
     font-size: 12.5px;
     color: #4b5563;
     line-height: 1.6;
     font-weight: 400;
 }

 /* ==============================
       GENDER BUTTON
    ============================== */

 .gender-row {
     display: flex;
     gap: 10px;
     margin-bottom: 16px;
 }

 .gender-btn {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 7px;
     padding: 10px 12px;
     border-radius: 12px;
     cursor: pointer;
     border: 2px solid rgba(3, 105, 161, .14);
     background: #fff;
     font-family: 'Plus Jakarta Sans', sans-serif;
     font-size: 13px;
     font-weight: 600;
     color: #6b7280;
     transition: all .25s ease;
     user-select: none;
 }

 .gender-btn i {
     font-size: 15px;
 }

 .gender-btn.active-lelaki {
     border-color: #3559a6;
     background: #eff6ff;
     color: #3559a6;
     box-shadow: 0 0 0 3px rgba(53, 89, 166, .10);
 }

 .gender-btn.active-perempuan {
     border-color: #5b21b6;
     background: #f5f3ff;
     color: #5b21b6;
     box-shadow: 0 0 0 3px rgba(91, 33, 182, .12);
 }

 .gender-btn:hover:not(.active-lelaki):not(.active-perempuan) {
     background: #f0f9ff;
     border-color: rgba(3, 105, 161, .30);
 }

 #genderValue {
     display: none;
 }

 /* ==============================
       FOOTER
    ============================== */

 footer {
     background: linear-gradient(135deg, #1f3f7a, #39447a) !important;
     position: relative;
     z-index: 1;
 }

 footer li a {
     display: inline-block;
     transition: transform .3s ease, color .3s ease !important;
 }

 footer li a i {
     cursor: pointer;
     transition: inherit;
 }

 footer li a:hover,
 footer li a:hover i {
     color: #0ea5e9 !important;
 }

 footer li a:hover {
     transform: translateY(-2px);
 }

 /* ==============================
       HELPER
    ============================== */

 .form-box small.text-muted {
     font-size: 12px;
     line-height: 1.5;
 }

 @media (max-width: 576px) {
     .main-card-body {
         padding: 20px 14px 18px;
     }
     .banner-badge {
         font-size: 8.5px;
         padding: 4px 10px;
     }
     .stats-row {
         gap: 6px;
         margin-bottom: 12px;
     }
     .stat-pill {
         padding: 9px 5px;
         min-height: 60px;
         border-radius: 12px;
     }
     .stat-num {
         font-size: 15px !important;
     }
     .stat-lbl {
         font-size: 8px;
         letter-spacing: .04em;
     }
     .btn-accent,
     .btn-primary {
         font-size: 14px !important;
         padding: 12px 18px !important;
     }
     .custom-input .form-control,
     .custom-input select.form-control,
     .form-control {
         font-size: 13px !important;
     }
 }