/* ============================================
   SUBSCRIPTION PAGE - MODERN DESIGN
   ============================================ */

:root {
    --primary-gradient: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    --secondary-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --premium-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --dark-gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);

    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --glow-shadow: 0 0 30px rgba(30, 58, 138, 0.3);

    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.subscription-hero {
    background: linear-gradient(145deg, #1a8cf1 0%, #00b5fa 100%);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.subscription-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.subscription-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.subscription-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.emails-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 1.25rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.emails-badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.emails-badge i {
    font-size: 1.8rem;
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.emails-badge .badge-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.emails-badge span:not(.count) {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: -0.2rem;
}

.emails-badge .count {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    margin: 2rem auto;
    border-radius: 2px;
}

/* ============================================
   SINGLE EMAILS SECTION
   ============================================ */
.single-emails-section {
    margin-bottom: 5rem;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-section {
    margin-bottom: 5rem;
}

.package-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: 100%;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.12);
    border-color: rgba(30, 58, 138, 0.1);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
}

.package-card:hover::before {
    opacity: 1;
}

.package-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #1e40af;
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.package-card:hover .package-icon {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
    border-color: transparent;
}

.package-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.package-price {
    text-align: center;
    margin-bottom: 0.1rem;
    padding-bottom: 0.1rem;
    border-bottom: none !important;

}

.package-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    display: inline-block;
    line-height: 1;
}

.package-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
    vertical-align: super;
    margin-left: 2px;
}

.package-emails {
    margin: 0 auto 1.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    background: rgba(59, 130, 246, 0.05);
    color: #1e40af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    width: fit-content;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
}

.package-features li:not(:last-child) {
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

.package-features li i {
    color: #10b981;
    font-size: 1rem;
}

.package-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    background: #4f46e5;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.package-btn:hover {
    color: white !important;
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.15);
}

.popular-badge {
    position: absolute;
    top: 1.25rem;
    right: -2.5rem;
    background: #4338ca;
    color: white;
    padding: 0.35rem 2rem 0.35rem 4rem; text-align: center; display: block; line-height: 1.5;
    font-weight: 700;
    font-size: 0.75rem;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.discount-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: #ef4444;
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.8rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* ============================================
   SUBSCRIPTIONS SECTION
   ============================================ */
.subscriptions-section {
    padding: 6rem 0;
}

.subscription-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: 100%;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
}

.subscription-card.featured {
    border: 2px solid #1e40af;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.08);
    transform: scale(1.03);
    z-index: 2;
}

.subscription-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.subscription-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4338ca;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
    z-index: 10;
    white-space: nowrap;
}

.current-plan-badge {
    background: #10b981;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.plan-price {
    text-align: center;
    margin-bottom: 0.1rem;
    padding: 0.1rem 0 0.1rem;
    border-bottom: none !important;

}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.9rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
}

.plan-features li:not(:last-child) {
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

.plan-features li i {
    color: #10b981;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.plan-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    background: #4f46e5;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.plan-btn:hover:not(:disabled) {
    color: white !important;
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(30, 58, 138, 0.15);
    color: white;
}

.plan-btn.current {
    background: #f1f5f9;
    color: #64748b;
    cursor: default;
    box-shadow: none;
}

.plan-btn.downgrade {
    background: #fff;
    color: #ef4444;
    border: 2px solid #fee2e2;
}

.plan-btn.downgrade:hover {
    background: #fef2f2;
    border-color: #ef4444;
    color: #ef4444 !important;
}

.plan-btn.upgrade {
    background: #10b981;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.plan-btn.upgrade:hover {
    background: #059669;
}

/* ============================================
   CURRENT PLAN CARD
   ============================================ */
.current-plan-card {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 3rem;
    color: white;
    margin-bottom: 4rem;
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.current-plan-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Estilos específicos para cada plan - Gradientes más ricos */
.current-plan-card.stats-card-plan-free {
    background: linear-gradient(135deg, #4b5563 0%, #1f2937 100%) !important;
    box-shadow: 0 20px 50px rgba(31, 41, 55, 0.3);
}

.current-plan-card.stats-card-plan-bronze,
.current-plan-card.stats-card-plan-basic {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
    box-shadow: 0 20px 50px rgba(180, 83, 9, 0.3);
}

.current-plan-card.stats-card-plan-silver,
.current-plan-card.stats-card-plan-standard {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%) !important;
    color: white !important;
    box-shadow: 0 20px 50px rgba(100, 116, 139, 0.3);
}

.current-plan-card.stats-card-plan-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%) !important;
    box-shadow: 0 20px 50px rgba(217, 119, 6, 0.3);
}

.current-plan-card.stats-card-plan-professional,
.current-plan-card.stats-card-plan-premium {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    box-shadow: 0 20px 50px rgba(29, 78, 216, 0.3);
}

.current-plan-card.stats-card-plan-enterprise,
.current-plan-card.stats-card-plan-business {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%) !important;
    box-shadow: 0 20px 50px rgba(49, 46, 129, 0.3);
}

.current-plan-content {
    position: relative;
    z-index: 1;
}

.current-plan-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1.5rem;
}

.current-plan-header h4 {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.current-plan-header h4 i {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    font-size: 1.8rem;
}

.current-plan-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.info-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.8;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.info-item .value {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
}

.info-item .badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.info-item .badge.bg-success {
    background-color: #10b981 !important;
}

.info-item .badge.bg-warning {
    background-color: #f59e0b !important;
    color: #1e1b4b;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    margin-top: 5rem;
}

.accordion {
    --bs-accordion-border-color: rgba(226, 232, 240, 0.8);
    --bs-accordion-border-radius: 20px;
    --bs-accordion-inner-border-radius: 20px;
}

.accordion-item {
    border: 1px solid var(--bs-accordion-border-color);
    margin-bottom: 1.25rem;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(30, 58, 138, 0.1);
}

.accordion-button {
    background: #ffffff;
    color: #1e293b;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.75rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: #f8fafc;
    color: #1e40af;
    box-shadow: none;
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 1.5rem;
    background: #f8fafc;
    color: #475569;
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .subscription-hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .package-price .amount,
    .plan-price .amount {
        font-size: 2.5rem;
    }

    .subscription-card.featured {
        transform: scale(1);
    }

    .current-plan-info {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card,
.subscription-card {
    animation: fadeInUp 0.6s ease-out;
}

.package-card:nth-child(1) {
    animation-delay: 0.1s;
}

.package-card:nth-child(2) {
    animation-delay: 0.2s;
}

.package-card:nth-child(3) {
    animation-delay: 0.3s;
}

.package-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* ============================================
   EFECTO DE DESTELLO EN PLAN ACTUAL
   ============================================ */
.current-plan-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 25%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.1) 75%,
            transparent 100%);
    transform: skewX(-25deg);
    animation: shine 5s infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* ============================================
   PREMIUM STATS CARDS (DASHBOARD STYLE)
   ============================================ */
.premium-stats-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 1.25rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    min-height: 130px;
}

.premium-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    border-color: #e2e8f0;
}

.card-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stats-icon-container {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.premium-stats-card:hover .stats-icon-container {
    transform: scale(1.1) rotate(-5deg);
}

.icon-bg-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.icon-bg-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.stats-info-wrap {
    display: flex;
    flex-direction: column;
}

.premium-stats-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 4px;
}

.premium-stats-label {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-stats-meta {
    font-size: 0.85rem;
    font-weight: 500;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-stats-link-pill {
    margin-top: 20px;
    padding: 10px 20px;
    background: #f8fafc;
    color: #64748b;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    width: fit-content;
    align-self: flex-end;
}

.premium-stats-card:hover .premium-stats-link-pill {
    background: #ffffff;
    border-color: #3b82f6;
    color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

.pill-buy {
    background: #4f46e5;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.premium-stats-card:hover .pill-buy {
    background: #4338ca;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Plan Card Specific */
.plan-card-premium {
    background: #ffffff !important;
    border: 1px solid #dbeafe;
}

.plan-card-premium .stats-icon-container {
    background: #1e3a8a;
    color: #ffffff !important;
}

.btn-upgrade-minimal {
    margin-top: 20px;
    background: #4f46e5;
    color: #ffffff !important;
    border: none;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    align-self: flex-end;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-upgrade-minimal:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

.btn-upgrade-minimal:hover {
    background: #f59e0b;
    transform: scale(1.05);
}
 

/* Modern Offer Countdown */
.modern-offer-banner {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
    border: 1px solid #fda4af;
    border-radius: 12px;
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.1);
}

.offer-timer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine-fast 3s infinite;
    transform: skewX(-25deg);
}

@keyframes shine-fast {
    0% { left: -100%; }
    100% { left: 200%; }
}

.offer-title {
    font-size: 0.85rem;
    color: #be123c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.offer-timer {
    font-size: 1.2rem;
    font-weight: 900;
    color: #e11d48;
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
    display: inline-block;
    background: white;
    padding: 4px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.15);
    border: 1px solid #fecdd3;
    position: relative;
    overflow: hidden;
}

@keyframes pricePulse { 0% { transform: scale(1); color: #1e293b; } 50% { transform: scale(1.15); color: #e11d48; } 100% { transform: scale(1); color: #1e293b; } }
.price-pulse { display: inline-block; animation: pricePulse 2s infinite ease-in-out; }












