/* ─── PROFESSIONAL PAGES STYLES ─── */

/* Global Page Elements */
.page-hero {
    background: #0d1b4b;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(227, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(241, 196, 15, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 100px 0 80px;
    margin-bottom: 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--body-bg, #e8edf5), transparent);
}

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.page-hero-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 25px rgba(227,0,0,0.4));
    animation: floatingIcon 4s ease-in-out infinite;
}

@keyframes floatingIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0 0 10px;
    line-height: 1;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero-sub {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto;
    color: #94a3b8;
}

main.page-card, .page-card {
    display: block !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    margin: 60px auto 80px !important;
    position: relative;
    z-index: 20;
    padding: 60px;
    max-width: 1100px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.page-main-title {
    font-size: 2.6rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    color: var(--primary);
    margin-bottom: 45px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-bottom: 2px dashed #f1f5f9;
    padding-bottom: 25px;
}

.page-main-title i {
    color: var(--accent);
    filter: drop-shadow(0 0 10px rgba(227, 0, 0, 0.25));
}

/* ─── NOSOTROS.PHP (MODERN) ─── */
.about-grid-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-visual-box {
    position: relative;
}

.about-logo-img {
    width: 100%;
    max-width: 400px;
    border-radius: 40px;
    transform: perspective(1000px) rotateY(-5deg);
    box-shadow: 30px 30px 60px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.about-logo-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-content-box {
    padding-left: 20px;
}

.about-badge {
    display: inline-block;
    background: #fee2e2;
    color: #dc2626;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-section-title {
    font-size: 2.2rem;
    font-weight: 950;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-history-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #475569;
}

.about-features-minimal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 15px;
    font-weight: 700;
    color: #1e293b;
}

.feature-mini i {
    width: 35px;
    height: 35px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.about-mv-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 80px;
}

.mv-card-modern {
    padding: 45px;
    border-radius: 35px;
    background: #fff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.mv-card-modern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
}

.mv-card-modern.mission::before { background: var(--accent); }
.mv-card-modern.vision::before { background: var(--gold); }

.mv-card-modern h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #0f172a;
}

.mv-card-modern p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
}

/* ─── PROGRAMACION.PHP (MODERN) ─── */
.prog-container-modern {
    max-width: 1200px;
    margin: 0 auto;
}

.prog-day-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.day-pill-btn {
    background: #fff;
    border: 2.5px solid #f1f5f9;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.day-pill-btn:hover { border-color: var(--primary); color: var(--primary); }
.day-pill-btn.active { 
    background: var(--primary); 
    border-color: var(--primary); 
    color: #fff; 
    box-shadow: 0 10px 20px rgba(13, 27, 75, 0.2);
}

.prog-list-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prog-row-item {
    background: #fff;
    border-radius: 25px;
    padding: 25px 40px;
    display: grid;
    grid-template-columns: 180px 1fr 200px 150px;
    align-items: center;
    gap: 30px;
    border: 1.5px solid #f1f5f9;
    transition: all 0.3s;
}

.prog-row-item:hover {
    transform: translateX(10px);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.prog-row-item.is-live {
    background: linear-gradient(to right, #ffffff, #fffafa);
    border-color: var(--accent);
    border-width: 2px;
}

.prog-time-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--primary);
}

.prog-time-modern i { color: var(--accent); font-size: 1rem; }

.prog-info-main h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 5px;
}

.prog-announcer-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-weight: 700;
    font-size: 0.95rem;
}

.prog-announcer-modern img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.prog-status-tag {
    justify-self: center;
}

.live-badge-modern {
    background: #fee2e2;
    color: #dc2626;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0.5; }
}

/* ─── PUBLICIDAD.PHP (PREMIUM) ─── */
.pub-hero-modern {
    background: #060b1d;
    border-radius: 40px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.pub-hero-modern::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(227,0,0,0.15) 0%, transparent 70%);
    z-index: 1;
}

.pub-content-modern {
    position: relative;
    z-index: 5;
}

.pub-title-modern {
    font-size: 4rem;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #f1c40f, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pub-desc-modern {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 40px;
}

.pub-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #1ebd54 100%);
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.pub-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #1ebd54 0%, #159e43 100%);
}

.pub-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pub-stat-item {
    text-align: center;
}

.pub-stat-item h4 {
    font-size: 2.5rem;
    font-weight: 950;
    color: #fff;
    margin-bottom: 5px;
}

.pub-stat-item p {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pub-visual-modern img {
    width: 100%;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
    border-radius: 20px;
    transform: rotate(2deg);
}

.pub-benefits-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card-premium {
    background: #fff;
    padding: 50px 40px;
    border-radius: 35px;
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: all 0.4s;
}

.benefit-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    border-color: var(--accent);
}

.benefit-icon-box {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent);
    margin: 0 auto 30px;
    transition: all 0.4s;
}

.benefit-card-premium:hover .benefit-icon-box {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

.benefit-card-premium h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 15px;
}

.benefit-card-premium p {
    color: #64748b;
    line-height: 1.6;
}

/* ─── NOSOTROS ADDITIONS ─── */
.about-logo-wrapper {
    position: relative;
    display: inline-block;
    padding: 10px;
    width: 100%;
    text-align: center;
}
.about-logo-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; height: 90%;
    background: radial-gradient(circle, rgba(227, 0, 0, 0.15) 0%, transparent 70%);
    z-index: 1;
    filter: blur(25px);
    pointer-events: none;
}
.about-logo-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
}
.about-values-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px dashed #e2e8f0;
}
.about-values-sub {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 50px;
    font-weight: 500;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.value-card-premium {
    background: #fff;
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.value-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--accent);
}
.value-icon {
    width: 60px;
    height: 60px;
    background: #fff5f5;
    color: var(--accent);
    border-radius: 18px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.value-card-premium:hover .value-icon {
    background: var(--accent);
    color: #fff;
    transform: rotate(360deg);
}
.value-card-premium h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}
.value-card-premium p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}
.mv-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 20px;
}
.mv-card-modern.vision .mv-icon {
    color: var(--gold);
}

/* ─── PUBLICIDAD ADDITIONS ─── */
.pub-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
.pub-img-glow {
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.2) 0%, transparent 70%);
    z-index: 1;
    filter: blur(20px);
    pointer-events: none;
}
.pub-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
}
.pub-pricing-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px dashed #e2e8f0;
}
.pub-pricing-sub {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 50px;
    font-weight: 500;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}
.pricing-card {
    background: #fff;
    border-radius: 30px;
    padding: 45px 35px;
    border: 1.5px solid #f1f5f9;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}
.pricing-card.popular {
    border-color: var(--gold);
    border-width: 2.5px;
    box-shadow: 0 15px 35px rgba(245, 176, 65, 0.12);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1px;
    white-space: nowrap;
}
.pricing-badge {
    display: inline-block;
    padding: 5px 14px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: fit-content;
}
.pricing-badge.gold {
    background: #fef9c3;
    color: #ca8a04;
}
.pricing-badge.platinum {
    background: #fae8ff;
    color: #c084fc;
}
.pricing-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
}
.pricing-price {
    font-size: 1.8rem;
    font-weight: 950;
    color: var(--primary);
    margin-bottom: 30px;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}
.pricing-features li {
    font-size: 0.95rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li i.fa-check {
    color: #10b981;
}
.pricing-features li i.fa-times {
    color: #ef4444;
}
.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}
.pricing-btn:hover {
    background: var(--primary);
    color: #fff;
}
.pricing-btn.btn-gold {
    background: var(--gold);
    color: #000;
}
.pricing-btn.btn-gold:hover {
    background: #d4952c;
    color: #000;
    box-shadow: 0 10px 20px rgba(245, 176, 65, 0.2);
}
.pub-faq-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px dashed #e2e8f0;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
}
.faq-question {
    padding: 20px 25px;
    font-weight: 800;
    font-size: 1.05rem;
    color: #0f172a;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
    color: #64748b;
    transition: transform 0.3s;
}
details[open] .faq-question::after {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 25px 20px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

/* ─── PROGRAMACION ADDITIONS ─── */
.show-day-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
}
.prog-row-item {
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s, border 0.3s, box-shadow 0.3s;
}
.prog-action-box {
    justify-self: end;
}
.prog-participate-btn {
    background: #25d366;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
    transition: all 0.3s;
}
.prog-participate-btn:hover {
    background: #1ebd54;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}
.live-pulse-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    display: inline-block;
    animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
    0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* ─── GLOBAL RESPONSIVE MEDIA QUERIES ─── */
@media (max-width: 992px) {
    .page-hero-title { font-size: 2.5rem; }
    .about-grid-main, .pub-hero-modern { grid-template-columns: 1fr; gap: 40px; }
    .about-values-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .prog-row-item { grid-template-columns: 1fr 1fr; gap: 25px; padding: 30px; }
    .pub-benefits-modern { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-hero { padding: 60px 0 50px; }
    .page-hero-title { font-size: 2rem; letter-spacing: -1px; }
    .page-hero-sub { font-size: 1rem; }
    .page-hero-icon { font-size: 2.5rem; }
    main.page-card, .page-card { padding: 25px !important; border-radius: 25px !important; margin: 45px auto 40px !important; }
    
    .about-grid-main { gap: 30px; }
    .about-visual-box { text-align: center; }
    .about-logo-img { max-width: 220px; transform: none; }
    .about-content-box { padding-left: 0; }
    .about-section-title { font-size: 1.5rem; text-align: center; }
    .about-history-text { font-size: 1rem; text-align: center; }
    .about-features-minimal { grid-template-columns: 1fr; gap: 12px; }
    .about-mv-modern { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
    .mv-card-modern { padding: 30px; }
    .mv-card-modern h3 { font-size: 1.3rem; }
    
    .about-values-section, .pub-pricing-section, .pub-faq-section { margin-top: 50px; padding-top: 40px; }
    .about-values-sub, .pub-pricing-sub { font-size: 0.95rem; margin-bottom: 30px; }
    .about-values-grid, .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
    .pricing-card { padding: 35px 25px; }

    .prog-container-modern { padding: 0; }
    .prog-row-item { grid-template-columns: 1fr; gap: 15px; padding: 20px; text-align: center; justify-items: center; }
    .prog-time-modern { font-size: 1.1rem; }
    .prog-info-main h3 { font-size: 1.2rem; }
    .prog-status-tag { justify-self: center; }
    .prog-action-box { justify-self: center; width: 100%; }
    .prog-participate-btn { display: flex; justify-content: center; width: 100%; max-width: 250px; margin: 0 auto; }
    
    .pub-hero-modern { padding: 40px 25px; text-align: center; }
    .pub-title-modern { font-size: 2.2rem; }
    .pub-desc-modern { font-size: 1rem; }
    .pub-stats-grid { gap: 15px; margin-top: 30px; }
    .pub-stat-item h4 { font-size: 1.8rem; }
    .pub-benefits-modern { gap: 20px; margin-top: 40px; }
    .benefit-card-premium { padding: 35px 25px; }
    .benefit-card-premium h3 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .page-hero { padding: 40px 0 35px; }
    .page-hero-title { font-size: 1.5rem; }
    .page-hero-sub { font-size: 0.9rem; }
    main.page-card, .page-card { padding: 15px !important; border-radius: 20px !important; margin: 35px auto 30px !important; }
    .about-logo-img { max-width: 180px; }
    .about-section-title { font-size: 1.2rem; }
    .about-mv-modern { margin-top: 25px; }
    .mv-card-modern { padding: 20px; border-radius: 20px; }
    .prog-row-item { padding: 15px; }
    .pub-hero-modern { padding: 30px 15px; border-radius: 25px; }
    .pub-title-modern { font-size: 1.6rem; }
    .pub-stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .pub-stat-item h4 { font-size: 1.5rem; }
    .benefit-card-premium { padding: 25px 20px; border-radius: 20px; }
    .pricing-card { padding: 25px 20px; }
    .pricing-title { font-size: 1.25rem; }
    .pricing-price { font-size: 1.5rem; }
}

