/* ========== style.css ========== */
/* StarShare IPTV - PREMIUM RED THEME (Optimized, Full Length) */
/* Mobile First, fully responsive, rich streaming icons */

/* ---------- RESET & GLOBAL VARIABLES (premium red tones) ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red-deep: #9B1D1D;        /* Deep burgundy red - premium base */
    --red-bright: #E31B23;       /* Vibrant red for accents & CTAs */
    --red-soft: #F9E6E6;         /* Soft red tint for backgrounds */
    --cream: #FDFAF7;            /* Warm off-white */
    --cream-dark: #F5F0EB;
    --charcoal: #1A1A1A;
    --text-primary: #2C2C2C;
    --text-secondary: #6B6B6B;
    --white: #FFFFFF;
    --shadow-sm: 0 15px 35px -15px rgba(155, 29, 29, 0.15);
    --shadow-hover: 0 25px 45px -15px rgba(155, 29, 29, 0.3);
    --shadow-premium: 0 30px 50px -20px rgba(0, 0, 0, 0.25);
    --border-radius-card: 28px;
    --border-radius-btn: 50px;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --header-height: 80px;
}

/* ===== GLOBAL LAYOUT FIX ===== */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--cream);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- PREMIUM TYPOGRAPHY & COMMON ELEMENTS ---------- */
.section-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red-bright);
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--red-bright), transparent);
}

.section-tag i {
    margin-right: 8px;
    font-size: 1rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.gradient-text {
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* ---------- PREMIUM BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    color: var(--white);
    box-shadow: 0 15px 30px -10px rgba(155, 29, 29, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(155, 29, 29, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--red-deep);
    border: 2px solid var(--red-deep);
    box-shadow: 0 10px 20px -8px rgba(155, 29, 29, 0.2);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--red-deep);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -8px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    white-space: normal;
}

/* ---------- SKIP LINK & PRELOADER ---------- */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    color: var(--white);
    padding: 10px 20px;
    z-index: 200;
    text-decoration: none;
    border-radius: 0 0 30px 0;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream), var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(155, 29, 29, 0.1);
    border-top-color: var(--red-bright);
    border-right-color: var(--red-deep);
    border-radius: 50%;
    animation: spin 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    box-shadow: 0 0 20px rgba(155, 29, 29, 0.2);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---------- STICKY HEADER (premium glass) ---------- */
.sticky-header {
    position: sticky;
    top: 0;
    background: rgba(253, 250, 247, 0.85);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    z-index: 100;
    padding: 12px 0;
    border-bottom: 1px solid rgba(155, 29, 29, 0.1);
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--charcoal);
}

.logo .accent {
    color: var(--red-deep);
}

.logo-badge {
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    color: var(--white);
    font-size: 0.6rem;
    padding: 4px 10px;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 6px;
}

.logo-icon {
    font-size: 1.4rem;
    margin-right: 2px;
}

.nav-links, .header-actions {
    display: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red-deep), var(--red-bright));
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--red-deep);
    font-weight: 600;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    width: 32px;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--red-deep), var(--red-bright));
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ---------- MOBILE MENU (premium slide) ---------- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: linear-gradient(145deg, var(--white), var(--cream));
    z-index: 200;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 30px 25px;
    border-left: 3px solid var(--red-deep);
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(155, 29, 29, 0.15);
}

.mobile-logo {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    color: var(--charcoal);
}

.mobile-logo .accent {
    color: var(--red-deep);
}

.mobile-nav-close {
    font-size: 2.4rem;
    background: none;
    border: none;
    color: var(--red-deep);
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
    transition: transform 0.3s;
}

.mobile-nav-close:hover {
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(155, 29, 29, 0.08);
    transition: var(--transition-smooth);
}

.mobile-nav-links a i {
    width: 24px;
    color: var(--red-deep);
    font-size: 1.2rem;
}

.mobile-nav-links a:hover {
    color: var(--red-deep);
    padding-left: 5px;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(155, 29, 29, 0.15);
}

.mobile-nav-contact a, .mobile-nav-contact span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    word-break: break-word;
    transition: var(--transition-smooth);
}

.mobile-nav-contact a:hover {
    color: var(--red-deep);
    transform: translateX(5px);
}

.mobile-nav-contact i {
    color: var(--red-deep);
    width: 22px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.mobile-nav-social {
    display: flex;
    gap: 25px;
    margin-top: 25px;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--red-deep);
}

.mobile-nav-social a {
    transition: var(--transition-smooth);
}

.mobile-nav-social a:hover {
    transform: translateY(-3px);
    color: var(--red-bright);
}

/* ========== FIXED MOBILE CTA - SINGLE BUTTON CENTERED ========== */
.sticky-mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 99;
    border-top: 2px solid var(--red-deep);
}

.sticky-mobile-cta .container {
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

.sticky-mobile-cta .btn {
    width: 100%;
    max-width: 300px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(155, 29, 29, 0.3);
    white-space: nowrap;
}

.sticky-mobile-cta .btn i {
    margin-right: 8px;
    font-size: 1rem;
}

/* WhatsApp floating button only */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 15px;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ===== Small screens ===== */
@media (max-width: 380px) {
    .sticky-mobile-cta .btn {
        max-width: 260px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        bottom: 75px;
        right: 12px;
    }
}

/* ===== Desktop fixes + Premium Icon Styling ===== */
@media (min-width: 992px) {

    /* Hide mobile CTA */
    .sticky-mobile-cta {
        display: none;
    }

    /* WhatsApp desktop positioning */
    .whatsapp-float {
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        font-size: 2rem;
        max-width: calc(100% - 30px);
    }

    /* Desktop navigation layout */
    .nav-links {
        display: flex;
        align-items: center;
        gap: 28px;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
        white-space: nowrap;
        transition: all 0.3s ease;
    }

    /* ===== ICON DESIGN ===== */
    .nav-links a i {
        font-size: 0.9rem;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(155, 29, 29, 0.08);
        color: var(--red-deep);
        transition: all 0.3s ease;
    }

    .nav-links a:hover i {
        background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
        color: #fff;
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 18px rgba(155, 29, 29, 0.35);
    }

    /* Header action icons (like search) */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .header-actions i {
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        color: var(--red-deep);
    }

    .header-actions i:hover {
        color: var(--red-bright);
        transform: scale(1.15);
    }
}

/* Ensure no overlap with content */
@media (max-width: 991px) {
    body {
        padding-bottom: 70px;
    }
}

/* ---------- HERO SECTION (premium cinematic) ---------- */
.hero {
    background: linear-gradient(145deg, var(--cream), var(--white));
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(155, 29, 29, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(155, 29, 29, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge-wrapper {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-badge {
    background: var(--white);
    border: 1px solid rgba(155, 29, 29, 0.2);
    color: var(--red-deep);
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(5px);
}

.hero-badge i {
    margin-right: 6px;
    color: var(--red-bright);
}

.hero-title {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(145deg, var(--red-deep), var(--red-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 25px;
    padding: 0 15px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    min-width: 90px;
    background: var(--white);
    backdrop-filter: blur(5px);
    padding: 12px 18px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(155, 29, 29, 0.1);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red-deep);
    display: block;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(155,29,29,0.2);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    margin: 30px 0 20px;
    padding: 0 15px;
}

.hero-cta .btn {
    width: 100%;
    box-shadow: 0 10px 25px rgba(155,29,29,0.2);
}

.trust-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 25px 0 15px;
    font-size: 0.85rem;
}

.trust-badge-row span {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    padding: 6px 15px;
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
}

.trust-badge-row span i {
    color: var(--red-bright);
    margin-right: 6px;
}

.hero-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    align-items: center;
}

.hero-contact a {
    color: var(--red-deep);
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 20px;
    border-radius: 40px;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.hero-contact a:hover {
    background: var(--red-deep);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-wave {
    margin-top: 30px;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 -5px 10px rgba(155,29,29,0.1));
}

/* ---------- TRUSTED BY SECTION (premium) ---------- */
.trusted-by {
    padding: 30px 0;
    background: linear-gradient(90deg, rgba(155,29,29,0.02), rgba(155,29,29,0.05), rgba(155,29,29,0.02));
    border-top: 1px solid rgba(155,29,29,0.1);
    border-bottom: 1px solid rgba(155,29,29,0.1);
}

.trusted-by-text {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.trusted-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.trusted-logos span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    background: var(--white);
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(155,29,29,0.1);
}

.trusted-logos i {
    color: var(--red-bright);
    font-size: 1rem;
}

/* ---------- FEATURES SECTION (premium cards) ---------- */
.features {
    padding: 60px 0;
    background: linear-gradient(145deg, var(--white), var(--cream));
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 35px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-card);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(155, 29, 29, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    transition: height 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--red-deep);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--red-soft), transparent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.2rem;
    color: var(--red-deep);
    border: 1px solid rgba(155,29,29,0.2);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    color: var(--white);
    transform: scale(1.05) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list i {
    color: var(--red-bright);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* ---------- STATS COUNTER (premium) ---------- */
.stats-counter {
    background: linear-gradient(135deg, var(--red-deep), #7A1818);
    color: var(--white);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.stats-counter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-counter-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 25px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.stat-counter-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-counter-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.counter-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.counter-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ---------- CHANNEL PREVIEW (premium with streaming icons) ---------- */
.channel-preview {
    padding: 60px 0;
    background: linear-gradient(145deg, var(--cream), var(--white));
}

.channel-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
    font-weight: 600;
    color: var(--red-deep);
    font-size: 0.9rem;
}

.channel-highlights span {
    background: var(--white);
    padding: 8px 22px;
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(155,29,29,0.1);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 35px 0;
}

.category-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(155, 29, 29, 0.1);
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.category-header {
    padding: 25px;
    color: var(--white);
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    overflow: hidden;
}

.category-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
}

.category-header .category-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.category-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.channel-count {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.category-channels {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.category-channels li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    background: rgba(155,29,29,0.02);
    padding: 5px 10px;
    border-radius: 30px;
}

.category-channels i {
    color: var(--red-bright);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.category-link {
    display: block;
    padding: 15px 20px;
    background: linear-gradient(90deg, var(--cream), var(--white));
    font-weight: 600;
    color: var(--red-deep);
    border-top: 1px solid rgba(155, 29, 29, 0.1);
    text-align: center;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.category-link:hover {
    background: linear-gradient(90deg, var(--red-deep), var(--red-bright));
    color: var(--white);
    letter-spacing: 0.5px;
}

.channel-cta {
    text-align: center;
    margin-top: 35px;
}

.channel-cta .btn {
    padding: 16px 35px;
    background: var(--white);
    color: var(--red-deep);
    border: 1px solid var(--red-deep);
}

.channel-cta .btn:hover {
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    color: var(--white);
}

/* ---------- PRICING SECTION (premium) ---------- */
.pricing {
    padding: 60px 0;
    background: linear-gradient(145deg, var(--white), var(--cream));
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 35px 0;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-card);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(155, 29, 29, 0.15);
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card.popular {
    border: 2px solid var(--red-deep);
    transform: scale(1.02);
    background: linear-gradient(145deg, var(--white), rgba(155,29,29,0.02));
    box-shadow: 0 20px 40px -10px rgba(155,29,29,0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    color: var(--white);
    padding: 6px 22px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(155,29,29,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(155, 29, 29, 0.2);
    margin-bottom: 20px;
}

.plan-icon {
    font-size: 2.5rem;
    color: var(--red-deep);
    margin-bottom: 10px;
    filter: drop-shadow(0 5px 10px rgba(155,29,29,0.2));
}

.price-box {
    margin: 15px 0;
}

.old-price {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-decoration: line-through 2px var(--red-bright);
    margin-right: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red-deep);
    line-height: 1;
    text-shadow: 0 2px 5px rgba(155,29,29,0.2);
}

.period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.savings {
    background: var(--red-soft);
    color: var(--red-deep);
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    display: inline-block;
    border: 1px solid rgba(155,29,29,0.2);
}

.pricing-features {
    margin: 20px 0;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid rgba(155, 29, 29, 0.05);
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--red-bright);
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-footer {
    margin-top: 20px;
}

.pricing-footer .btn {
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    color: var(--white);
}

.pricing-footer .btn:hover {
    box-shadow: 0 15px 30px -8px rgba(155,29,29,0.5);
}

.pricing-guarantee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 35px;
}

.guarantee-item {
    display: flex;
    gap: 18px;
    align-items: center;
    background: var(--white);
    padding: 20px;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(155,29,29,0.1);
}

.guarantee-icon {
    font-size: 2rem;
    color: var(--red-deep);
    flex-shrink: 0;
    background: var(--red-soft);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.guarantee-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.guarantee-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-payment-methods {
    margin-top: 30px;
    text-align: center;
}

.pricing-payment-methods p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.payment-icons i {
    background: var(--white);
    padding: 10px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.payment-icons i:hover {
    color: var(--red-bright);
    transform: translateY(-3px);
}

/* ---------- TESTIMONIALS (premium) ---------- */
.testimonials {
    padding: 60px 0;
    background: linear-gradient(145deg, var(--cream), var(--white));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(155, 29, 29, 0.1);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    color: #ffb400;
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 3px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    flex-wrap: wrap;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(155,29,29,0.3);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.verified-badge {
    color: var(--red-bright);
    margin-left: auto;
    font-size: 0.85rem;
    white-space: nowrap;
    background: var(--red-soft);
    padding: 5px 12px;
    border-radius: 30px;
}

.verified-badge i {
    margin-right: 4px;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.testimonials-nav button {
    background: var(--white);
    border: 1px solid var(--red-deep);
    color: var(--red-deep);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.testimonials-nav button:hover {
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    color: var(--white);
    transform: scale(1.1);
}

.testimonials-cta {
    text-align: center;
    margin-top: 30px;
}

/* ---------- FAQ ACCORDION (premium) ---------- */
.faq {
    padding: 60px 0;
    background: linear-gradient(145deg, var(--white), var(--cream));
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 22px;
    margin-bottom: 15px;
    border: 1px solid rgba(155, 29, 29, 0.1);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 25px;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.faq-question i:first-child {
    color: var(--red-bright);
    margin-right: 12px;
    font-size: 1rem;
}

.faq-question .fa-chevron-down {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--red-deep);
    font-size: 1.1rem;
}

.faq-item.open .faq-question .fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: linear-gradient(145deg, rgba(155,29,29,0.02), transparent);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 25px 25px;
}

.faq-cta-banner {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    border-radius: 28px;
    padding: 35px 30px;
    color: var(--white);
    box-shadow: 0 20px 40px -10px rgba(155,29,29,0.4);
}

.faq-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.faq-cta-content .cta-icon {
    font-size: 3rem;
    filter: drop-shadow(0 5px 15px rgba(255,255,255,0.3));
}

.faq-cta-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.faq-cta-content p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ---------- PRE-FOOTER CTA (premium) ---------- */
.prefooter-cta {
    background: linear-gradient(135deg, var(--red-deep), #7A1818);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prefooter-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.prefooter-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.prefooter-cta p {
    margin: 20px 0;
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    background: var(--white);
    color: var(--red-deep);
}

.cta-buttons .btn:hover {
    background: var(--cream);
    transform: translateY(-3px);
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.cta-trust span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 40px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-trust span i {
    margin-right: 8px;
}

/* ---------- FOOTER (premium dark) ---------- */
.footer {
    background: linear-gradient(145deg, #1a1a1a, #222);
    color: #999;
    padding: 60px 0 20px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
}

.footer-about p {
    margin: 20px 0;
    color: #aaa;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-logo .accent {
    color: var(--red-bright);
}

.footer-social {
    display: flex;
    gap: 22px;
    font-size: 1.4rem;
}

.footer-social a {
    color: #aaa;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    color: var(--red-bright);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 22px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.footer-col ul li {
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.footer-col ul li a {
    color: #aaa;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--red-bright);
    transform: translateX(5px);
}

.footer-col ul li i {
    width: 22px;
    margin-right: 8px;
    color: var(--red-bright);
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #aaa;
    font-size: 0.9rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
}

.footer-links a:hover {
    color: var(--red-bright);
}

.footer-seo {
    margin-top: 35px;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
    line-height: 1.7;
}

.footer-seo strong {
    color: #999;
    font-weight: 600;
}

/* ---------- MEDIA QUERIES FOR TABLET AND UP ---------- */
@media (min-width: 640px) {
    .container {
        padding: 0 35px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-cta {
        flex-direction: row;
    }
    
    .hero-cta .btn {
        width: auto;
        padding: 16px 40px;
    }
    
    .hero-contact {
        flex-direction: row;
        gap: 25px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-guarantee {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .nav-links, .header-actions {
        display: flex;
    }
    
    .mobile-menu-toggle, .sticky-mobile-cta {
        display: none;
    }
    
    .whatsapp-float {
        bottom: 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-item {
        padding: 15px 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.4rem;
    }
}

/* ---------- UTILITY CLASSES ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 10px; }
.mt-4 { margin-top: 20px; }
.mt-6 { margin-top: 30px; }
.mb-2 { margin-bottom: 10px; }
.mb-4 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 30px; }

/* ===== BLOG HERO - COMPLETELY INDEPENDENT ===== */
.blog-hero {
    background: linear-gradient(145deg, var(--cream), var(--white));
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    display: block !important;
    width: 100%;
    min-height: 500px;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1;
}

/* Override any inherited hero styles */
.blog-hero,
.blog-hero *,
.blog-hero .hero-content,
.blog-hero .hero-title,
.blog-hero .hero-subtitle,
.blog-hero .hero-stats,
.blog-hero .hero-cta,
.blog-hero .hero-badge-wrapper,
.blog-hero .hero-badge,
.blog-hero .stat-item,
.blog-hero .stat-number,
.blog-hero .stat-label {
    all: revert;
    /* Re-apply specific styles after revert */
    font-family: inherit;
    box-sizing: border-box;
}

.blog-hero .hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(155, 29, 29, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.blog-hero .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.4;
    background-image: radial-gradient(rgba(227, 27, 35, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
}

.blog-hero .container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 15;
}

/* Hero Badge Wrapper */
.blog-hero .hero-badge-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.blog-hero .hero-badge {
    background: var(--white);
    border: 1px solid rgba(155, 29, 29, 0.2);
    color: var(--red-deep);
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px -8px rgba(155, 29, 29, 0.15);
    backdrop-filter: blur(5px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-hero .hero-badge i {
    color: var(--red-bright);
}

.blog-hero .hero-badge.secondary {
    background: rgba(255, 255, 255, 0.95);
}

/* Hero Title */
.blog-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

.blog-hero .hero-title .gradient-text {
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.blog-hero .hero-title .highlight {
    background: linear-gradient(145deg, var(--red-deep), var(--red-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.blog-hero .hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
}

/* Hero Subtitle */
.blog-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.blog-hero .hero-subtitle strong {
    color: var(--red-bright);
    font-weight: 700;
}

/* Hero Stats */
.blog-hero .hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 40px 0 30px;
}

.blog-hero .stat-item {
    text-align: center;
    min-width: 110px;
    background: var(--white);
    padding: 18px 22px;
    border-radius: 24px;
    box-shadow: 0 15px 30px -12px rgba(155, 29, 29, 0.15);
    border: 1px solid rgba(155, 29, 29, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-hero .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -12px rgba(155, 29, 29, 0.25);
    border-color: var(--red-bright);
}

.blog-hero .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--red-bright);
    display: block;
    line-height: 1.2;
    margin-bottom: 5px;
}

.blog-hero .stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Hero CTA Buttons */
.blog-hero .hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.blog-hero .hero-cta .btn {
    min-width: 200px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.blog-hero .hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    color: var(--white);
    box-shadow: 0 15px 30px -10px rgba(155, 29, 29, 0.4);
    border: none;
}

.blog-hero .hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -10px rgba(155, 29, 29, 0.6);
}

.blog-hero .hero-cta .btn-outline {
    background: transparent;
    color: var(--red-deep);
    border: 2px solid var(--red-deep);
}

.blog-hero .hero-cta .btn-outline:hover {
    background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
}

/* Hero Wave */
.blog-hero .hero-wave {
    margin-top: 40px;
    line-height: 0;
    position: relative;
    z-index: 5;
}

.blog-hero .hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
    fill: var(--white);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .blog-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .blog-hero .stat-item {
        min-width: 90px;
        padding: 15px 18px;
    }
    
    .blog-hero .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .blog-hero .hero-title {
        font-size: 2rem;
    }
    
    .blog-hero .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .blog-hero .hero-stats {
        gap: 15px;
        margin: 30px 0 20px;
    }
    
    .blog-hero .stat-item {
        min-width: 70px;
        padding: 12px 12px;
    }
    
    .blog-hero .stat-number {
        font-size: 1.4rem;
    }
    
    .blog-hero .stat-label {
        font-size: 0.7rem;
    }
    
    .blog-hero .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 30px 0 20px;
    }
    
    .blog-hero .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .blog-hero .hero-title {
        font-size: 1.6rem;
    }
    
    .blog-hero .hero-badge-wrapper {
        gap: 8px;
    }
    
    .blog-hero .hero-badge {
        padding: 5px 14px;
        font-size: 0.75rem;
    }
    
    .blog-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .blog-hero .hero-stats {
        gap: 10px;
    }
    
    .blog-hero .stat-item {
        min-width: 60px;
        padding: 10px 8px;
    }
    
    .blog-hero .stat-number {
        font-size: 1.2rem;
    }
    
    .blog-hero .stat-label {
        font-size: 0.6rem;
    }
}