/* =====================================================================
   NEWSLITTLE — Global Design System v2
   Redesigned: vibrant, magical, glassmorphism aesthetic
   ===================================================================== */

/* ---- Design Tokens ------------------------------------------------- */
:root {
    /* Core brand */
    --nl-purple:         #7C3AED;
    --nl-purple-dark:    #5B21B6;
    --nl-purple-light:   #A78BFA;
    --nl-purple-xlight:  #EDE9FE;
    --nl-purple-glow:    rgba(124, 58, 237, 0.28);

    --nl-pink:           #EC4899;
    --nl-pink-light:     #F9A8D4;
    --nl-pink-xlight:    #FCE7F3;

    --nl-amber:          #F59E0B;
    --nl-amber-light:    #FCD34D;
    --nl-amber-xlight:   #FEF3C7;

    --nl-coral:          #F97316;
    --nl-coral-light:    #FDBA74;
    --nl-coral-xlight:   #FFF7ED;

    --nl-emerald:        #10B981;
    --nl-emerald-light:  #6EE7B7;
    --nl-emerald-xlight: #D1FAE5;

    --nl-red:            #EF4444;
    --nl-red-light:      #FCA5A5;
    --nl-red-xlight:     #FEE2E2;

    /* Neutrals */
    --nl-white:          #FFFFFF;
    --nl-gray-50:        #F8FAFC;
    --nl-gray-100:       #F1F5F9;
    --nl-gray-200:       #E2E8F0;
    --nl-gray-300:       #CBD5E1;
    --nl-gray-500:       #64748B;
    --nl-gray-700:       #334155;
    --nl-gray-900:       #0F172A;

    /* Text */
    --nl-text:           #1E1B4B;
    --nl-text-muted:     rgba(30, 27, 75, 0.55);
    --nl-text-light:     rgba(30, 27, 75, 0.35);

    /* Glass */
    --nl-glass-bg:       rgba(255, 255, 255, 0.72);
    --nl-glass-border:   rgba(255, 255, 255, 0.5);
    --nl-glass-blur:     blur(20px);

    /* Shadows */
    --nl-shadow-sm:      0 1px 3px rgba(124, 58, 237, 0.08), 0 1px 2px rgba(0,0,0,0.06);
    --nl-shadow-md:      0 4px 16px rgba(124, 58, 237, 0.12), 0 2px 4px rgba(0,0,0,0.05);
    --nl-shadow-lg:      0 12px 40px rgba(124, 58, 237, 0.18), 0 4px 12px rgba(0,0,0,0.08);
    --nl-shadow-xl:      0 24px 64px rgba(124, 58, 237, 0.22), 0 8px 24px rgba(0,0,0,0.1);
    --nl-shadow-purple:  0 8px 32px rgba(124, 58, 237, 0.35);
    --nl-shadow-pink:    0 8px 32px rgba(236, 72, 153, 0.3);
    --nl-shadow-amber:   0 8px 32px rgba(245, 158, 11, 0.3);

    /* Radii */
    --nl-radius-sm:  10px;
    --nl-radius-md:  16px;
    --nl-radius-lg:  24px;
    --nl-radius-xl:  32px;
    --nl-radius-2xl: 48px;
    --nl-radius-full: 9999px;

    /* Transitions */
    --nl-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --nl-transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --nl-transition-bounce: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Gradients */
    --nl-gradient-primary:  linear-gradient(135deg, #7C3AED 0%, #A855F7 50%, #EC4899 100%);
    --nl-gradient-warm:     linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    --nl-gradient-cool:     linear-gradient(135deg, #06B6D4 0%, #7C3AED 100%);
    --nl-gradient-magic:    linear-gradient(135deg, #7C3AED 0%, #EC4899 50%, #F59E0B 100%);
    --nl-gradient-soft:     linear-gradient(160deg, #FFF1F5 0%, #EDE9FE 50%, #FEF9C3 100%);
    --nl-gradient-card:     linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);

    /* Legacy compat (keep old vars for components still using them) */
    --App-Purple:          var(--nl-purple);
    --App-Purple-Light:    var(--nl-purple-light);
    --App-Orange:          var(--nl-coral);
    --App-Orange-Light:    var(--nl-coral-light);
    --App-Red:             var(--nl-red);
    --App-Red-Lihght:      var(--nl-red-light);
    --App-Grey:            var(--nl-gray-200);
    --App-Grey-Dark:       var(--nl-gray-500);
    --App-Background:      #FAF5FF;
    --App-Background-Light: #F5F0FF;
    --General-text:        var(--nl-text);
    --Light-text:          var(--nl-text-muted);
    --primary-font:        Grandstander, serif;
    --secondary-font:      Poppins, serif;
    --accent-font:         Grandstander, serif;
    --bs-body-bg:          var(--App-Background-Light);
    /* NOTE: Do NOT override --bs-border-color globally — it changes ALL Bootstrap
       borders (inputs, modals, cards, tables). Use component-specific rules instead. */
}

/* ---- Scrollbar ------------------------------------------------------ */
@media (min-width: 600px) {
    body::-webkit-scrollbar,
    body *::-webkit-scrollbar {
        width: 7px;
        height: 7px;
    }
    body::-webkit-scrollbar-track,
    body *::-webkit-scrollbar-track {
        background: rgba(124, 58, 237, 0.04);
        border-radius: 99px;
    }
    body::-webkit-scrollbar-thumb,
    body *::-webkit-scrollbar-thumb {
        border-radius: 99px;
        background: linear-gradient(180deg, var(--nl-purple-light) 0%, var(--nl-purple) 100%);
    }
    body::-webkit-scrollbar-thumb:hover {
        background: var(--nl-purple);
    }
}

/* ---- Skip navigation link (accessibility) -------------------------- */
/* Visually hidden by default; visible only on keyboard focus (NEW-183) */
.skip-nav {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -1;
}

.skip-nav:focus {
    position: fixed;
    top: 8px;
    left: 8px;
    width: auto;
    height: auto;
    overflow: visible;
    z-index: 9999;
    background: var(--nl-purple);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--nl-radius-md);
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--nl-shadow-purple);
    outline: none;
}

/* ---- Base reset ---------------------------------------------------- */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: var(--App-Background);
    font-family: Grandstander, cursive, serif;
    color: var(--nl-text);
    -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.page_content {
    overflow: auto;
    width: 100dvw;
    height: 100dvh;
}

.custom-container {
    width: 100%;
    padding: 24px;
    overflow: hidden;
}

@media (max-width: 650px) {
    .custom-container { padding: 20px 12px; }
}

/* ---- Forms --------------------------------------------------------- */
.form-input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-input-container label {
    color: var(--nl-text-muted);
    font-family: var(--secondary-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.form-input-container input,
.form-input-container textarea {
    border: 2px solid var(--nl-gray-200);
    border-radius: var(--nl-radius-md);
    background: rgba(255,255,255,0.8);
    transition: var(--nl-transition);
    padding: 10px 14px;
    font-family: var(--secondary-font);
    font-size: 15px;
    color: var(--nl-text);
}

.form-input-container input:focus,
.form-input-container textarea:focus {
    border-color: var(--nl-purple);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
    background: #fff;
}

.form-input-container input:checked {
    background-color: var(--nl-purple);
    border-color: var(--nl-purple);
}

.form-input-container input::placeholder,
.form-input-container textarea::placeholder {
    color: var(--nl-gray-300);
}

form .errors_container {
    color: var(--nl-red);
    min-height: 20px;
    font-family: var(--secondary-font);
    font-size: 12px;
    font-weight: 500;
}

.form-check-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-container label {
    color: var(--nl-text-muted);
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 500;
}

.form-clear-input {
    border: none !important;
    border-radius: 0 !important;
    border-bottom: 2px solid var(--nl-purple) !important;
    background: transparent !important;
}

.form-clear-input:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-bottom: 2px solid var(--nl-pink) !important;
}

/* ---- Buttons ------------------------------------------------------- */
.custom-btn {
    user-select: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--nl-radius-full);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    border: none;
    transition: var(--nl-transition-bounce);
    position: relative;
    overflow: hidden;
}

.custom-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: var(--nl-transition);
}

.custom-btn:hover::before {
    background: rgba(255,255,255,0.12);
}

.custom-btn.primary {
    background: var(--nl-gradient-primary);
    color: #FFFFFF;
    box-shadow: var(--nl-shadow-purple);
}

.custom-btn.primary:hover {
    box-shadow: 0 12px 36px rgba(124, 58, 237, 0.45);
    transform: translateY(-3px) scale(1.02);
}

.custom-btn.primary:active {
    transform: translateY(-1px) scale(0.99);
}

.custom-btn.primary[disabled] {
    background: var(--nl-gray-200) !important;
    color: var(--nl-gray-300) !important;
    box-shadow: none !important;
    transform: none !important;
    cursor: not-allowed;
}

.custom-btn.white {
    background: rgba(255,255,255,0.9);
    border: 2px solid var(--nl-gray-200);
    color: var(--nl-text);
    box-shadow: var(--nl-shadow-sm);
    backdrop-filter: blur(8px);
}

.custom-btn.white:hover {
    box-shadow: var(--nl-shadow-md);
    border-color: var(--nl-purple-light);
    color: var(--nl-purple);
    transform: translateY(-2px);
}

.custom-btn.white[disabled] {
    background: var(--nl-gray-100) !important;
    border-color: var(--nl-gray-200) !important;
    color: var(--nl-gray-300) !important;
    box-shadow: none !important;
    cursor: not-allowed;
}

.custom-btn.sm  { padding: 10px 22px; font-size: 13px; }
.custom-btn.xl  { padding: 16px 36px; font-size: 17px; }

/* ---- Links --------------------------------------------------------- */
.custom-link {
    background: none;
    border: none;
    text-decoration: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 14px;
    color: var(--nl-purple);
    user-select: none;
    transition: var(--nl-transition);
    position: relative;
}

.custom-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nl-gradient-primary);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.custom-link:hover::after { width: 100%; }
.custom-link:hover { color: var(--nl-pink); }

/* ---- Modals -------------------------------------------------------- */
.custom-modal { font-family: var(--primary-font); }

.custom-modal .modal-title {
    font-family: var(--primary-font);
    color: var(--nl-text);
    font-weight: 700;
    font-size: 22px;
    background: var(--nl-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-modal .modal-content {
    background: rgba(255,255,255,0.95);
    border-radius: var(--nl-radius-xl);
    box-shadow: var(--nl-shadow-xl);
    border: 1px solid rgba(124, 58, 237, 0.1);
    backdrop-filter: var(--nl-glass-blur);
}

.custom-modal .modal-header,
.custom-modal .modal-footer {
    border: none;
    font-family: var(--primary-font);
}

.design-clean-modal { background: transparent; border: none; }

.custom-modal-backdrop { background-color: rgba(15, 23, 42, 0.6); backdrop-filter: blur(8px); }
.transparent-modal-backdrop { background-color: transparent; }

.blur-background {
    filter: blur(4px);
    transition: var(--nl-transition);
}

/* ---- Section headers ----------------------------------------------- */
.container_section_header {
    padding: 8px 6px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section_title {
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    font-family: var(--primary-font);
    font-size: 26px;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.section_subtitle {
    margin: 0;
    padding: 0;
    color: rgba(255,255,255,0.8);
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 400;
}

/* ---- Context menu -------------------------------------------------- */
.context-menu {
    padding: 8px;
    z-index: 100;
    position: absolute;
    display: none;
    flex-direction: column;
    gap: 2px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: var(--nl-radius-lg);
    box-shadow: var(--nl-shadow-xl);
    backdrop-filter: var(--nl-glass-blur);
    overflow: hidden;
    width: 100%;
    max-width: 200px;
    min-width: 130px;
}

.context-menu.show { display: flex; }

.context-menu .item {
    width: 100%;
    cursor: pointer;
    padding: 8px 14px;
    white-space: nowrap;
    user-select: none;
    font-weight: 500;
    font-size: 14px;
    color: var(--nl-text);
    background: transparent;
    border-radius: var(--nl-radius-sm);
    transition: var(--nl-transition);
}

.context-menu .item:hover { background: var(--nl-purple-xlight); color: var(--nl-purple); }
.context-menu .item:active {
    color: #fff;
    background: var(--nl-gradient-primary);
}

@media (max-width: 768px) {
    .context-menu { max-width: 130px; min-width: 100px; }
    .context-menu .item { padding: 6px 10px; font-size: 13px; }
}

/* ---- Tooltip ------------------------------------------------------- */
.custom-tooltip {
    --bs-tooltip-bg: var(--nl-purple);
    --bs-tooltip-color: #fff;
    box-shadow: var(--nl-shadow-purple);
}

/* ---- Badges -------------------------------------------------------- */
.custom-badge {
    user-select: none;
    white-space: nowrap;
    padding: 4px 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--nl-purple);
    background: var(--nl-purple-xlight);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--nl-radius-full);
    transition: var(--nl-transition);
}

/* ---- Text utilities ------------------------------------------------ */
.lines-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

/* ---- Skeleton loading ---------------------------------------------- */
.background-loading-item {
    background: linear-gradient(90deg,
        rgba(124, 58, 237, 0.06) 25%,
        rgba(124, 58, 237, 0.12) 50%,
        rgba(124, 58, 237, 0.06) 75%
    );
    background-size: 200% 100%;
    animation: nl-shimmer 1.6s ease-in-out infinite;
    border-radius: var(--nl-radius-md);
    border-color: transparent;
    color: transparent;
    user-select: none;
    cursor: default;
}

@keyframes nl-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---- Glow pulse animation ------------------------------------------ */
@keyframes nl-glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.3); }
    50%       { box-shadow: 0 0 40px rgba(124, 58, 237, 0.6); }
}

@keyframes nl-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}

@keyframes nl-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Pagination ---------------------------------------------------- */
.design-container-pagination {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
}

/* ---- Main banner --------------------------------------------------- */
.main-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.95);
    backdrop-filter: var(--nl-glass-blur);
    padding: 28px 32px;
    box-shadow: var(--nl-shadow-xl);
    z-index: 1000;
    border-radius: var(--nl-radius-xl);
    border: 1px solid rgba(124, 58, 237, 0.12);
    animation: nl-fade-in 0.3s ease;
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.banner-content h3 {
    margin: 0;
    font-family: var(--primary-font);
    font-size: 22px;
    text-align: center;
    background: var(--nl-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-content label { font-size: 15px; font-weight: 600; }
.form-buttons { display: flex; justify-content: space-between; gap: 12px; }

/* ---- Star rating --------------------------------------------------- */
.star-rating { display: flex; gap: 6px; justify-content: center; cursor: pointer; }

.star {
    font-size: 32px;
    color: var(--nl-gray-200);
    transition: var(--nl-transition-bounce);
    filter: drop-shadow(0 0 0 transparent);
}

.star.selected {
    color: var(--nl-amber);
    filter: drop-shadow(0 3px 6px rgba(245, 158, 11, 0.4));
    transform: scale(1.1);
}

.star:hover { color: var(--nl-amber-light); transform: scale(1.15); }

/* ---- Subscription banner ------------------------------------------- */
.subscription-banner-overlay-unique,
.subscription-banner-overlay-mobile {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscription-banner-unique {
    background: rgba(255,255,255,0.97);
    padding: 32px;
    border-radius: var(--nl-radius-xl);
    box-shadow: var(--nl-shadow-xl);
    border: 1px solid rgba(124, 58, 237, 0.1);
    width: 95%;
    max-width: 1100px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 10000;
    animation: nl-fade-in 0.35s ease;
}

.subscription-banner-unique .banner-content-unique {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 8px;
}

.subscription-banner-unique .plan-cards-unique {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}

.subscription-banner-unique .plan-card-unique {
    background: var(--nl-white);
    border: 2px solid var(--nl-gray-200);
    padding: 28px 24px;
    border-radius: var(--nl-radius-xl);
    flex: 1 1 280px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: var(--nl-shadow-sm);
    transition: var(--nl-transition-bounce);
    position: relative;
    overflow: hidden;
}

.subscription-banner-unique .plan-card-unique::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--nl-gray-200);
    transition: var(--nl-transition);
}

.subscription-banner-unique .plan-card-unique:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--nl-shadow-lg);
}

.subscription-banner-unique .plan-card-unique h3 {
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: var(--nl-text);
}

.subscription-banner-unique .plan-card-unique .price-unique {
    font-family: var(--primary-font);
    font-size: 32px;
    font-weight: 800;
    color: var(--nl-purple);
    margin: 0;
}

.subscription-banner-unique .plan-card-unique ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    text-align: left;
}

.subscription-banner-unique .plan-card-unique ul li {
    font-size: 14px;
    padding-left: 24px;
    position: relative;
    font-family: var(--secondary-font);
    color: var(--nl-gray-500);
}

.subscription-banner-unique .plan-card-unique ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--nl-purple-light);
    font-size: 12px;
}

/* Plan variants */
.plan-card-free::before     { background: var(--nl-gradient-warm) !important; }
.plan-card-standard::before { background: linear-gradient(90deg, #F59E0B, #FCD34D) !important; }
.plan-card-premium::before  { background: var(--nl-gradient-primary) !important; }

.plan-card-free:hover     { border-color: var(--nl-coral); }
.plan-card-standard:hover { border-color: var(--nl-amber); }
.plan-card-premium:hover  { border-color: var(--nl-purple); }

.plan-card-premium {
    border-color: rgba(124, 58, 237, 0.25);
    background: linear-gradient(160deg, #FAFAFE 0%, #F3F0FF 100%);
}

/* Mobile subscription banner */
.subscription-banner-mobile {
    background: rgba(255,255,255,0.97);
    padding: 24px 20px;
    border-radius: var(--nl-radius-xl);
    box-shadow: var(--nl-shadow-xl);
    width: 90%;
    max-width: 360px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    overflow-y: auto;
    z-index: 10000;
    animation: nl-fade-in 0.35s ease;
}

.plan-cards-mobile { display: flex; flex-direction: column; gap: 12px; width: 100%; }

.plan-card-mobile {
    background: var(--nl-white);
    border: 2px solid var(--nl-gray-200);
    padding: 18px;
    border-radius: var(--nl-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: var(--nl-shadow-sm);
    transition: var(--nl-transition-bounce);
}

.plan-card-mobile:hover {
    transform: translateY(-4px);
    box-shadow: var(--nl-shadow-md);
    border-color: var(--nl-purple-light);
}

.plan-card-mobile h3 { font-size: 17px; margin: 0; }
.plan-card-mobile .price-mobile { font-size: 22px; font-weight: 800; color: var(--nl-purple); }

/* ---- Audio player -------------------------------------------------- */
@media (min-width: 769px) {
    .pg-audio-player-desktop { display: block !important; }
    .pg-audio-player-mobile  { display: none !important; }
}
@media (max-width: 768px) {
    .pg-audio-player-desktop { display: none !important; }
    .pg-audio-player-mobile  { display: block !important; }
}

.pg-audio-player-desktop button:hover,
.pg-audio-player-mobile button:hover { transform: scale(1.08); }

.pg-audio-player-desktop button:active,
.pg-audio-player-mobile button:active { transform: scale(0.94); }

.parents-guide-content { overflow-y: auto; max-height: 80vh; }

@media (max-width: 768px) {
    .parents-guide-content { max-height: 60vh; }
}

/* ---- Subscription banner responsive -------------------------------- */
@media (max-width: 768px) {
    .subscription-banner-unique { padding: 20px; max-height: 95vh; }
    .subscription-banner-unique .plan-cards-unique { flex-direction: column; align-items: center; }
    .subscription-banner-unique .plan-card-unique { max-width: 100%; width: 100%; }
}
