:root {
    --primary-color: #53A5A4;
    --secondary-color: #3b8ea5;
    --accent-color: #f7b733;
    --dark-color: #1a2a3a;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --logo-bg: rgba(255, 255, 255, 0.98);
    --logo-border: rgba(255, 255, 255, 0.9);
    --hero-bg: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    --hero-text: #fff;
}

/* ===== Hero Section ===== */

.hero-section {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    border-radius: 24px;
    min-height: 32vh;
    padding: 1.4rem 1.4rem;
    margin-bottom: 2rem;
    box-shadow: 0 18px 36px rgba(79, 70, 229, 0.35), 0 6px 14px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="0.3" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="0.4" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    flex: 1;
    text-align: center;
    max-width: none;
    margin: 0;
    padding-left: 3rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.logo-card {
    background: rgba(255, 255, 255, 0.98);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(255, 255, 255, 0.3);
    margin: 0;
    flex-shrink: 0;
    backdrop-filter: blur(25px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.logo-card img {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.hero-title {
    font-size: 2.1rem;
    color: #ffffff;
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), 0 3px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.8px;
    font-weight: 900;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

.hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 500;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.4;
}

.hero-highlight-number {
    font-weight: 800;
    background: linear-gradient(135deg, #facc15 0%, #f97316 40%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-inline: 0.15rem;
}

/* ===== Marketing Banner ===== */

.subscription-banner-compact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    padding: 1rem 1.35rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    box-sizing: border-box;
}

.subscription-banner-compact .banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.1rem;
    position: relative;
    z-index: 2;
}

.subscription-banner-compact .banner-text {
    flex: 1;
}

.subscription-banner-compact .banner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.15rem;
}

.subscription-banner-compact .banner-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.subscription-banner-compact .banner-title i {
    color: #ffd700;
    font-size: 0.9rem;
}

.subscription-banner-compact .banner-subtitle {
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.82rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    line-height: 1.4;
    word-break: break-word;
}

.subscription-banner-compact .banner-actions {
    flex-shrink: 0;
}

.subscription-banner-compact .banner-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #8b4513;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.subscription-banner-compact .banner-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    color: #8b4513;
    text-decoration: none;
}

.subscription-banner-compact .banner-btn i {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .subscription-banner-compact .banner-item {
        min-height: 90px !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .subscription-banner-compact .banner-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 0.5rem;
    }

    .subscription-banner-compact .banner-text {
        width: 100%;
    }

    .subscription-banner-compact .banner-header {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }

    .subscription-banner-compact .banner-actions {
        width: 100%;
        margin-top: 0.1rem;
        display: flex;
        justify-content: center;
    }

    .subscription-banner-compact .banner-btn {
        width: 100%;
        justify-content: center;
    }

    .logo-card {
        width: 70px;
        height: 70px;
        border-width: 2px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    }

    .logo-card img {
        width: 40px;
        height: 40px;
    }
}

