/* IPTV Landing Page Styles */

/* Sophisticated Header Styles */
.sophisticated-header {
    background: linear-gradient(135deg, #0f1a4a 0%, #1a2a6c 50%, #2a4b8d 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animated Top Bar */
.top-bar-animated {
    background: linear-gradient(90deg, #ff6b00, #ff8c00, #ff6b00);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    padding: 8px 0;
    font-size: 14px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    font-weight: 600;
}

.offer-announcement, .support-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-text, .support-text {
    opacity: 0.9;
}

.offer-badge {
    background: #ff0000;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    animation: pulse 1.5s infinite;
}

.support-number {
    font-weight: 700;
    color: #ffeb3b;
}

/* Main Navigation Container */
.main-navigation-container {
    padding: 15px 0;
}

.navigation-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styles */
.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.site-title {
    color: white;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.highlight {
    color: #ff6b00;
}

.tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

/* Navigation Menu */
.primary-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #ff6b00;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff6b00;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Premium CTA Button */
.premium-cta-button {
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.premium-cta-button:hover {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-navigation {
    display: none;
    background: rgba(16, 26, 74, 0.95);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-navigation.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu {
    list-style: none;
    padding: 20px;
}

.mobile-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-cta-button {
    display: block;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .primary-navigation .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 768px) {
    .navigation-content {
        flex-wrap: wrap;
    }
    
    .logo-placeholder {
        flex: 1;
    }
    
    .header-cta-container {
        display: none;
    }
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #1a2a6c 0%, #0f1b3c 100%) !important;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 2;
}

.footer-column {
    animation: fadeInUp 0.8s ease;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-company .wp-block-site-title a {
    color: #ffffff !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-nav-list {
    list-style: none !important;
}

.footer-nav-list li {
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.footer-nav-list li:hover {
    transform: translateX(5px);
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-nav-list a:hover {
    color: #ff6b00 !important;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.social-links .wp-block-social-links {
    gap: 10px !important;
}

.social-links .wp-block-social-link {
    transition: all 0.3s ease;
}

.social-links .wp-block-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.footer-cta .wp-block-button__link {
    background: rgba(255, 107, 0, 0.1) !important;
    border: 2px solid #ff6b00 !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600 !important;
}

.footer-cta .wp-block-button__link:hover {
    background: #ff6b00 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
    margin: 0 !important;
}

/* Modern Header Styles */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.9), rgba(42, 75, 141, 0.9));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modern-header.scrolled {
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.95), rgba(42, 75, 141, 0.95));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-left: 20px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Ensure body has top margin for fixed header */
body {
    margin-top: 120px;
}

@media (max-width: 768px) {
    body {
        margin-top: 100px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(26, 42, 108, 0.98), rgba(42, 75, 141, 0.98));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }
    
    .main-navigation.mobile-menu-open {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    .main-navigation a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        font-size: 18px;
        border-radius: 0;
        margin: 0;
    }
    
    .main-navigation a:last-child {
        border-bottom: none;
    }
    
    .main-navigation a::after {
        display: none;
    }
    
    .header-cta {
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
    }
    
    .header-navigation {
        position: relative;
    }
    
    .header-main .wp-block-group.alignwide {
        flex-wrap: wrap;
    }
    
    .header-logo-section h1 {
        font-size: 22px !important;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 0, 0.2);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Header Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-top-bar {
        padding: 6px 5% !important;
        font-size: 12px !important;
    }
    
    .header-top-bar .wp-block-group {
        flex-direction: column !important;
        gap: 5px !important;
    }
    
    .header-main {
        padding: 15px 5% !important;
    }
    
    .header-logo-section {
        flex-direction: row !important;
        text-align: left !important;
        gap: 15px !important;
    }
    
    .header-navigation {
        display: none !important;
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        margin-top: 20px !important;
        background: rgba(26, 42, 108, 0.95);
        padding: 20px;
        border-radius: 12px;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header-navigation.mobile-menu-open {
        display: flex !important;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-navigation {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100%;
    }
    
    .main-navigation .wp-block-navigation-item a {
        padding: 15px 20px !important;
        font-size: 16px !important;
        text-align: center !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 8px !important;
        margin-bottom: 5px;
    }
    
    .main-navigation .wp-block-navigation-item a:hover {
        background: rgba(255, 107, 0, 0.2) !important;
    }
    
    .header-cta {
        width: 100% !important;
        margin-top: 15px;
    }
    
    .header-cta-button {
        width: 100% !important;
    }
    
    .header-cta-button .wp-block-button__link {
        width: 100% !important;
        text-align: center !important;
        padding: 15px 20px !important;
        font-size: 16px !important;
    }
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    .footer-main {
        padding: 60px 5% 40px !important;
    }
    
    .footer-main .wp-block-group.alignwide {
        flex-direction: column !important;
        gap: 40px !important;
    }
    
    .footer-column {
        width: 100% !important;
        text-align: center !important;
    }
    
    .footer-company {
        text-align: center !important;
    }
    
    .social-links {
        justify-content: center !important;
    }
    
    .footer-bottom .wp-block-group.alignwide {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
    }
}

/* Animation Styles */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes badgePulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .pricing-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-card.animated, .pricing-card.animated {
    opacity: 1;
    transform: translateY(0);
}
/* Modern Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 4%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}
.hero-badge i {
    color: #ffd700;
}
/* Sophisticated Animations */
@keyframes sophisticatedFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}
@keyframes sophisticatedTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg);
        filter: blur(20px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(25px) rotateX(45deg);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0);
    }
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

.hero-content {
    flex: 1;
    max-width: 650px;
    padding-right: 50px;
    position: relative;
    z-index: 2;
}

/* Hero Title */
.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.title-accent {
    color: #ff6b00;
    font-weight: 800;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.5;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.hero-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}
.hero-feature i {
    color: #ff6b00;
    font-size: 1.2rem;
}
.hero-feature span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Sophisticated Quality Badges */
.hero-quality-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    animation: sophisticatedFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}
.quality-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: 
        linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.05) 100%),
        rgba(0, 255, 136, 0.08);
    color: #00ff88;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px rgba(0, 255, 136, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.quality-badge:hover {
    background: 
        linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 255, 136, 0.1) 100%),
        rgba(0, 255, 136, 0.12);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 8px 24px rgba(0, 255, 136, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}
.quality-badge i {
    font-size: 1rem;
}

/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Sophisticated CTA Button Styles */
.hero-cta-main {
    position: relative;
    overflow: hidden;
    min-width: 320px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%),
        linear-gradient(135deg, #ff6b00, #ff8c00, #ffa500);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 40px rgba(255, 107, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.button-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 2;
}
.button-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}
.button-subtitle {
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: buttonGlow 3s infinite;
}
@keyframes buttonGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}
.hero-cta-secondary {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%),
        rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-cta-secondary:hover {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%),
        rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Sophisticated Offer Banner */
.hero-offer-banner {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(135deg, rgba(255, 107, 0, 0.95), rgba(255, 140, 0, 0.95), rgba(255, 165, 0, 0.95));
    border-radius: 20px;
    padding: 24px 28px;
    margin-bottom: 40px;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: sophisticatedFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
    box-shadow: 
        0 16px 40px rgba(255, 107, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}
.offer-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.offer-icon {
    width: 56px;
    height: 56px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%),
        rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sophisticatedPulse 3s ease-in-out infinite;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}
@keyframes sophisticatedPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); }
    50% { transform: scale(1.05); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); }
}
.offer-icon i {
    color: white;
    font-size: 1.5rem;
}
.offer-text {
    flex: 1;
    min-width: 200px;
}
.offer-title {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}
.offer-subtitle {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.01em;
    opacity: 0.95;
}
.offer-countdown {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%),
        rgba(0, 0, 0, 0.25);
    padding: 12px 24px;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
#countdown-timer {
    font-family: 'SF Mono', 'Monaco', 'Menlo', 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00ff88;
    text-shadow: 
        0 0 15px rgba(0, 255, 136, 0.5),
        0 0 30px rgba(0, 255, 136, 0.2);
    letter-spacing: 0.1em;
}

/* Enhanced Trust Signals */
.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0.9;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}
.trust-item i {
    color: #4CAF50;
    font-size: 1rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.button.primary {
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.button.primary:hover {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.button.primary.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 0, 0.6), 0 0 0 10px rgba(255, 107, 0, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    }
}

.button-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
}

.button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.button.large {
    padding: 20px 40px;
    font-size: 1.1rem;
    min-width: 220px;
}

/* PayPal Button Styles */
.button.paypal {
    background: #ffc439;
    color: #222;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 24px;
    padding: 12px 28px;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
    box-shadow: 0 2px 10px rgba(34,34,34,0.08);
    font-size: 1rem;
    line-height: 1.2;
}
.button.paypal i {
    font-size: 1.3em;
    color: #003087;
    transition: color 0.2s;
}
.button.paypal:hover, .button.paypal:focus {
    background: #ffb800;
    color: #111;
    box-shadow: 0 4px 20px rgba(34,34,34,0.12);
    text-decoration: none;
}
.button.paypal.large {
    padding: 18px 36px;
    font-size: 1.15rem;
}

/* Responsive PayPal Button Styles */
@media (max-width: 768px) {
    .button.paypal {
        width: 100%;
        padding: 14px 0;
        font-size: 1rem;
        justify-content: center;
        gap: 10px;
    }
    .button.paypal.large {
        padding: 16px 0;
        font-size: 1.05rem;
    }
    .button.paypal i {
        font-size: 1.5em;
    }
}
@media (max-width: 480px) {
    .button.paypal {
        font-size: 0.98rem;
        padding: 12px 0;
        border-radius: 18px;
        gap: 8px;
    }
    .button.paypal i {
        font-size: 1.3em;
    }
}

/* Hero CTA Section */
.hero-cta-section {
    flex: 1;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
}

/* Pricing Card */
.hero-pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.hero-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b00, #ffa500);
}
.pricing-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricing-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}
.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff6b00;
}
.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin: 0 5px;
}
.price-period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}
.pricing-original {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    margin-bottom: 5px;
}
.pricing-savings {
    font-size: 1rem;
    color: #00ff88;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Benefits */
.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}
.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}
.benefit-item i {
    color: #00ff88;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.benefit-item span {
    font-weight: 500;
    font-size: 0.95rem;
    color: white;
}

/* Main CTA */
.hero-main-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00, #ffa500);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 12px 28px rgba(255, 107, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: ctaShine 3s infinite;
}
@keyframes ctaShine {
    0% { left: -100%; }
    100% { left: 100%; }
}
.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 45px rgba(255, 107, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}
.cta-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cta-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}
.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}
.cta-guarantee i {
    color: #00ff88;
    font-size: 1rem;
}

/* Social Proof */
.hero-social-proof {
    text-align: center;
}
.proof-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
}
.proof-stars i {
    color: #ffd700;
    font-size: 1rem;
}
.proof-rating {
    margin-left: 8px;
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
}
.proof-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}



.hero-video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-video-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: playPulse 2s infinite;
}

.play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 4px;
}

.hero-video-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

@keyframes playPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

/* Features Section */
.features-section {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6b00;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section - Modern White Design */
.pricing-section {
    padding: 100px 5%;
    background: #fff !important;
    text-align: center;
    position: relative;
    border-radius: 24px !important;
    box-shadow: 0 10px 32px rgba(26,42,108,0.07) !important;
    margin: 60px auto 80px auto !important;
    max-width: 1200px !important;
    z-index: 2;
}

.pricing-section h2,
.pricing-section h3 {
    color: #1a2a6c !important;
    font-weight: 800 !important;
    margin-bottom: 24px !important;
    line-height: 1.2 !important;
}

.pricing-section p,
.pricing-section .section-description {
    color: #333 !important;
    font-size: 18px !important;
    opacity: 0.95 !important;
    margin-bottom: 32px !important;
}

.pricing-section .cta-button.primary {
    background: linear-gradient(45deg, #ff6b00, #ff8c00) !important;
    color: #fff !important;
    border-radius: 25px !important;
    padding: 15px 36px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.18) !important;
    margin-top: 18px !important;
    transition: all 0.3s !important;
}

.pricing-section .cta-button.primary:hover {
    background: linear-gradient(45deg, #ff8c00, #ff6b00) !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 32px rgba(255, 107, 0, 0.22) !important;
}

.pricing-section .pricing-grid {
    margin: 50px 0 0 0 !important;
}

@media (max-width: 900px) {
    .pricing-section {
        padding: 50px 2% !important;
        border-radius: 18px !important;
    }
    .pricing-section h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 600px) {
    .pricing-section {
        padding: 24px 0 !important;
        border-radius: 10px !important;
        margin: 32px 0 32px 0 !important;
    }
    .pricing-section h2 {
        font-size: 1.3rem !important;
    }
    .pricing-section p,
    .pricing-section .section-description {
        font-size: 15px !important;
    }
}

.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 30px;
    animation: urgencyPulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

@keyframes urgencyPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 60px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Four Column Pricing Grid */
.pricing-grid.four-columns {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .pricing-grid.four-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .pricing-grid.four-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.3);
}

.pricing-card.featured {
    transform: scale(1.02);
    background: linear-gradient(135deg, rgba(42, 75, 141, 0.2) 0%, rgba(26, 42, 108, 0.1) 100%);
    border: 2px solid #ff6b00;
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.3);
}

.pricing-card.ultimate {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(42, 75, 141, 0.1) 100%);
    border: 2px solid #1a2a6c;
    box-shadow: 0 20px 40px rgba(26, 42, 108, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #6c757d;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-badge.popular {
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: white;
    animation: pulse 2s infinite;
}

.plan-badge.ultimate {
    background: linear-gradient(135deg, #1a2a6c, #2a4b8d);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 42, 108, 0.4);
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin: 20px 0;
    color: #1a2a6c;
    font-weight: 700;
}

.pricing-card.featured h3 {
    color: white;
}

.price-container {
    margin-bottom: 30px;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ff6b00;
    margin: 15px 0 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1;
}

.price span {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

.pricing-card.featured .price {
    color: white;
}

.pricing-card.featured .price span {
    color: rgba(255, 255, 255, 0.8);
}

.savings {
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-card li {
    padding: 12px 0;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card li i {
    color: #28a745;
    font-size: 0.9rem;
    width: 16px;
}

.pricing-card.featured li {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-card.featured li i {
    color: #4CAF50;
}

.pricing-guarantee {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 107, 0, 0.2);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-weight: 600;
}

.guarantee-item i {
    color: #28a745;
    font-size: 1.2rem;
}

/* Hero Section - FIXED Z-INDEX CONFLICTS */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    z-index: 1; /* Lower z-index to allow FAQ to appear above */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2a6c, #2a3f7f);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

/* FAQ Section - FIXED TO APPEAR ABOVE HERO */
/* FAQ Section - Premium Sophisticated Design */
#faq.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

#faq.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(26, 42, 108, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(42, 63, 127, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

#faq .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

#faq .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

#faq .section-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

#faq .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#faq .section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#faq .section-badge:hover::before {
    left: 100%;
}

#faq .section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
}

#faq .section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #1a2a6c, #2a3f7f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#faq .section-header p {
    font-size: 20px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}

#faq .faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

#faq .faq-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26, 42, 108, 0.08);
    position: relative;
}

#faq .faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b00, #ff8c00);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#faq .faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 20px 50px rgba(0, 0, 0, 0.15);
}

#faq .faq-item:hover::before {
    opacity: 1;
}

#faq .faq-item.active {
    transform: translateY(-6px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 20px 50px rgba(0, 0, 0, 0.15);
}

#faq .faq-item.active::before {
    opacity: 1;
}

#faq .faq-question {
    padding: 32px 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #fff, #fafafa);
    position: relative;
}

#faq .faq-question::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#faq .faq-question:hover::after {
    opacity: 1;
}

#faq .faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a2a6c;
    margin: 0;
    flex: 1;
    line-height: 1.5;
    transition: color 0.3s ease;
}

#faq .faq-item.active .faq-question h3 {
    color: #ff6b00;
}

#faq .faq-question::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ff6b00;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
}

#faq .faq-item.active .faq-question::after {
    content: '\f068';
    transform: rotate(180deg);
    background: rgba(255, 107, 0, 0.15);
}

#faq .faq-answer {
    padding: 0 36px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #fafafa, #f8f9fa);
}

#faq .faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 36px 36px;
}

#faq .faq-answer p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
    opacity: 0.9;
}

#faq .faq-answer ul {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

#faq .faq-answer li {
    margin-bottom: 14px;
    color: #495057;
    position: relative;
    padding-left: 32px;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

#faq .faq-answer li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: #28a745;
    font-size: 16px;
    font-weight: 600;
    width: 24px;
    height: 24px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#faq .device-categories,
#faq .speed-requirements,
#faq .channel-categories,
#faq .support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

#faq .device-category,
#faq .speed-tier,
#faq .category,
#faq .support-method {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 28px;
    border-radius: 16px;
    border-left: 4px solid #ff6b00;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#faq .device-category::before,
#faq .speed-tier::before,
#faq .category::before,
#faq .support-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#faq .device-category:hover::before,
#faq .speed-tier:hover::before,
#faq .category:hover::before,
#faq .support-method:hover::before {
    opacity: 1;
}

#faq .device-category:hover,
#faq .speed-tier:hover,
#faq .category:hover,
#faq .support-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

#faq .device-category h4,
#faq .speed-tier h4,
#faq .category h4,
#faq .support-method h4 {
    color: #1a2a6c;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

#faq .faq-cta {
    text-align: center;
    margin-top: 100px;
    padding: 80px 60px;
    background: linear-gradient(135deg, #1a2a6c, #2a3f7f);
    border-radius: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 42, 108, 0.3);
}

#faq .faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

#faq .faq-cta h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

#faq .faq-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
    position: relative;
}

@media (max-width: 768px) {
    #faq.faq-section {
        padding: 80px 0;
    }
    
    #faq .section-header h2 {
        font-size: 36px;
    }
    
    #faq .section-header p {
        font-size: 18px;
    }
    
    #faq .faq-question {
        padding: 24px 24px;
    }
    
    #faq .faq-question h3 {
        font-size: 18px;
    }
    
    #faq .faq-item.active .faq-answer {
        padding: 0 24px 24px;
    }
    
    #faq .faq-answer p {
        font-size: 16px;
    }
    
    #faq .device-categories,
    #faq .speed-requirements,
    #faq .channel-categories,
    #faq .support-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #faq .faq-cta {
        padding: 60px 40px;
        margin: 80px 20px 0;
    }
    
    #faq .faq-cta h3 {
        font-size: 28px;
    }
    
    #faq .faq-cta p {
        font-size: 18px;
    }
}

#faq .container {
    position: relative !important;
    z-index: 101 !important;
}

/* Ensure FAQ appears above hero content */
#faq * {
    position: relative !important;
    z-index: 102 !important;
}

/* CTA Section */
.cta-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #1a2a6c 0%, #2a4b8d 50%, #3a6cb0 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: ctaIconFloat 3s ease-in-out infinite;
}

.cta-icon i {
    font-size: 2.5rem;
    color: white;
}

@keyframes ctaIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.cta-feature i {
    color: #ff6b00;
    font-size: 1.2rem;
}

.cta-feature span {
    font-weight: 600;
    font-size: 1rem;
}

.cta-buttons {
    margin-bottom: 30px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.cta-guarantee i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.cta-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.2);
    padding: 15px 30px;
    border-radius: 25px;
    border: 2px solid rgba(255, 107, 0, 0.3);
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    font-weight: 600;
    animation: urgencyGlow 2s infinite;
}

.cta-urgency i {
    color: #ff6b00;
    animation: fireFlicker 1.5s infinite;
}

@keyframes urgencyGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
    }
}

@keyframes fireFlicker {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(0.95);
    }
}

#countdown {
    color: #ff6b00;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    /* Mobile Hero Title */
    .hero-title {
        font-size: 2.5rem;
    }
    .title-highlight {
        font-size: 0.8em;
        letter-spacing: 1px;
    }
    .title-main {
        font-size: 1em;
    }
    .title-sub {
        font-size: 0.65em;
    }
    
    /* Mobile Hero Description */
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    /* Mobile Hero Features */
    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
    }
    .hero-feature {
        padding: 15px;
        gap: 12px;
    }
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    .feature-icon i {
        font-size: 1.2rem;
    }
    .feature-number {
        font-size: 1rem;
    }
    .feature-label {
        font-size: 0.8rem;
    }
    
    /* Mobile Quality Badges */
    .hero-quality-badges {
        justify-content: center;
        gap: 10px;
        margin-bottom: 25px;
    }
    .quality-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Mobile Hero Buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }
    .hero-cta-main {
        min-width: auto;
        width: 100%;
    }
    .button-text {
        font-size: 1rem;
    }
    .button-subtitle {
        font-size: 0.75rem;
    }
    
    /* Mobile Offer Banner */
    .hero-offer-banner {
        padding: 15px;
        margin-bottom: 25px;
    }
    .offer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .offer-text {
        min-width: auto;
    }
    .offer-title {
        font-size: 1rem;
    }
    .offer-subtitle {
        font-size: 0.85rem;
    }
    #countdown-timer {
        font-size: 1rem;
    }
    
    /* Mobile Trust Signals */
    .hero-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-content: center;
    }
    .trust-item {
        padding: 12px 15px;
        min-width: auto;
        flex: 1;
    }
    .trust-icon {
        width: 35px;
        height: 35px;
    }
    .trust-icon i {
        font-size: 1rem;
    }
    .trust-number {
        font-size: 0.9rem;
    }
    .trust-label {
        font-size: 0.75rem;
    }
    
    /* Mobile Hero Visual */
    .hero-floating-stats {
        display: none; /* Hide floating stats on mobile for cleaner look */
    }
    .demo-play-button {
        width: 70px;
        height: 70px;
    }
    .play-icon {
        font-size: 1.5rem;
    }
    .demo-text {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .button {
        width: 100%;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .site-header {
        padding: 15px 5% !important;
    }
    
    .site-header .wp-block-group.alignwide {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-section {
        padding: 50px 5%;
    }
    
    .features-section,
    .pricing-section,
    .cta-section {
        padding: 60px 5%;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .pricing-card.featured:before {
        font-size: 0.7rem;
        padding: 3px 20px;
        right: -25px;
    }
}

/* Enhanced Features Section Styles */
.features-section {
    padding: 120px 0 100px !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    position: relative !important;
    overflow: visible !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
    width: 100% !important;
    min-height: 800px !important;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e0e0e0" stroke-width="1" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.features-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    position: relative !important;
    z-index: 20 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

/* Features Grid Base */
.features-grid {
    display: grid !important;
    width: 100% !important;
    margin: 40px 0 !important;
}

/* Section Header */
.features-section .section-header {
    text-align: center !important;
    margin-bottom: 80px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 25 !important;
    position: relative !important;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.features-section .section-title {
    font-size: 48px !important;
    font-weight: 800 !important;
    color: #1a2a6c !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 30 !important;
}

.features-section .section-description {
    font-size: 20px !important;
    color: #666 !important;
    line-height: 1.6 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 30 !important;
}

/* Main Features Grid - Multiple Selectors for Compatibility */
.features-section .main-features,
#features .main-features,
.main-features {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 40px !important;
    margin-bottom: 80px !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 15 !important;
    position: relative !important;
}

/* Secondary Features Grid - Multiple Selectors for Compatibility */
.features-section .secondary-features,
#features .secondary-features,
.secondary-features {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    margin-bottom: 80px !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 15 !important;
    position: relative !important;
}

/* Feature Cards - Multiple Selectors for Compatibility */
.features-section .feature-card,
#features .feature-card,
.feature-card {
    background: white !important;
    padding: 40px 30px !important;
    border-radius: 20px !important;
    text-align: center !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    min-height: auto !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card.featured {
    background: linear-gradient(135deg, #1a2a6c 0%, #2a4b8d 100%);
    color: white;
    transform: scale(1.05);
    border: 2px solid #ff6b00;
}

.feature-card.featured h3,
.feature-card.featured p {
    color: white;
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b00;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.gradient-icon {
    background: linear-gradient(45deg, #ff6b00, #ff8c00, #ffa500);
    animation: pulse 2s infinite;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-card p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 25px;
}

.feature-highlights li {
    padding: 8px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-highlights i {
    color: #ff6b00;
    font-size: 14px;
}

.quality-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.quality-badge {
    background: rgba(255, 107, 0, 0.1);
    border: 2px solid #ff6b00;
    color: #ff6b00;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.device-item {
    background: rgba(255, 107, 0, 0.1);
    padding: 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #1a2a6c;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.device-item i {
    font-size: 20px;
    color: #ff6b00;
}

/* Secondary Features */
.secondary-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card.compact {
    padding: 30px 25px !important;
    text-align: left !important;
    min-height: 180px !important;
    background: white !important;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.feature-card.compact .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin: 0 0 20px 0;
    float: left;
    margin-right: 20px;
}

.feature-card.compact h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-card.compact p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Comparison Table */
.feature-comparison {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

.feature-comparison h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a2a6c;
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-row {
    display: contents;
}

.comparison-cell {
    background: white;
    padding: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60px;
}

.comparison-row.header .comparison-cell {
    background: #1a2a6c;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.comparison-cell.our-service {
    background: rgba(255, 107, 0, 0.1);
    color: #1a2a6c;
}

.comparison-cell.our-service i {
    color: #28a745;
    margin-right: 8px;
}

.comparison-cell.competitor i {
    color: #dc3545;
    margin-right: 8px;
}

/* Features CTA */
.features-cta {
    background: linear-gradient(135deg, #1a2a6c 0%, #2a4b8d 100%);
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.features-cta h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.features-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Enhanced Mobile Responsive */
@media (max-width: 768px) {
    .features-section {
        padding: 80px 0 60px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .main-features {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .feature-card.featured {
        transform: none;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .feature-card h3 {
        font-size: 24px;
    }
    
    .secondary-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .device-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-comparison {
        padding: 30px 20px;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell {
        padding: 15px;
        min-height: 50px;
    }
    
    .features-cta {
        padding: 40px 25px;
    }
    
    .features-cta h3 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Pricing Comparison Section */
.pricing-comparison {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pricing-comparison h3 {
    font-size: 2.2rem;
    color: #1a2a6c;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.comparison-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: rgba(255, 107, 0, 0.3);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #ff6b00;
    margin-bottom: 20px;
    display: block;
}

.benefit-item h4 {
    font-size: 1.4rem;
    color: #1a2a6c;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Total Price Styling */
.total-price {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 10px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .pricing-comparison {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .pricing-comparison h3 {
        font-size: 1.8rem;
    }
    
    .comparison-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 25px 20px;
    }
    
    .benefit-item i {
        font-size: 2rem;
    }
    
    .benefit-item h4 {
        font-size: 1.2rem;
    }
    
    /* Features Grid Mobile */
    .main-features {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .secondary-features {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .feature-card {
        padding: 30px 25px !important;
    }
    
    .feature-card.compact {
        padding: 25px 20px !important;
        min-height: 150px !important;
    }
    
    .section-title {
        font-size: 32px !important;
    }
    
    .section-description {
        font-size: 16px !important;
    }
}

/* PROFESSIONAL FEATURES SECTION STYLING */
#features {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    padding: 80px 0 !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 10 !important;
}

#features .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    position: relative !important;
    z-index: 15 !important;
}

/* Section Header Styling */
#features .section-header {
    text-align: center !important;
    margin-bottom: 60px !important;
    position: relative !important;
    z-index: 20 !important;
}

#features .section-badge {
    display: inline-block !important;
    background: linear-gradient(45deg, #ff6b00, #ff8c00) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3) !important;
}

#features .section-title {
    font-size: 48px !important;
    font-weight: 800 !important;
    color: #1a2a6c !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1) !important;
}

#features .section-description {
    font-size: 20px !important;
    color: #666 !important;
    line-height: 1.6 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* Main Features Grid */
#features .main-features {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 40px !important;
    margin-bottom: 80px !important;
    position: relative !important;
    z-index: 15 !important;
}

/* Secondary Features Grid */
#features .secondary-features {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    margin-bottom: 60px !important;
    position: relative !important;
    z-index: 15 !important;
}

/* Feature Cards Styling */
#features .feature-card {
    background: white !important;
    padding: 40px 30px !important;
    border-radius: 20px !important;
    text-align: center !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    margin: 0 !important;
    min-height: auto !important;
}

#features .feature-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

#features .feature-card.featured {
    background: linear-gradient(135deg, #1a2a6c 0%, #2a4b8d 100%) !important;
    color: white !important;
    transform: scale(1.02) !important;
    border: 2px solid #ff6b00 !important;
}

#features .feature-card.compact {
    padding: 30px 25px !important;
    text-align: left !important;
    min-height: 180px !important;
}

/* Feature Card Content */
#features .feature-card h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #1a2a6c !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
}

#features .feature-card.featured h3 {
    color: white !important;
}

#features .feature-card.compact h4 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1a2a6c !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
}

#features .feature-card p {
    font-size: 16px !important;
    color: #666 !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

#features .feature-card.featured p {
    color: rgba(255, 255, 255, 0.9) !important;
}

#features .feature-card.compact p {
    font-size: 14px !important;
    margin: 0 !important;
}

/* Feature Icons */
#features .feature-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(45deg, #ff6b00, #ff8c00) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 25px !important;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3) !important;
}

#features .feature-card.compact .feature-icon {
    width: 60px !important;
    height: 60px !important;
    float: left !important;
    margin: 0 20px 20px 0 !important;
}

#features .feature-icon i {
    font-size: 32px !important;
    color: white !important;
}

#features .feature-card.compact .feature-icon i {
    font-size: 24px !important;
}

/* Feature Badges */
#features .feature-badge {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: linear-gradient(45deg, #ff6b00, #ff8c00) !important;
    color: white !important;
    padding: 6px 15px !important;
    border-radius: 15px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

/* Quality Indicators */
#features .quality-indicators {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 20px !important;
}

#features .quality-badge {
    background: #28a745 !important;
    color: white !important;
    padding: 4px 10px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

/* Device Grid */
#features .device-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
    margin-top: 20px !important;
}

#features .device-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 15px 10px !important;
    background: rgba(26, 42, 108, 0.05) !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #1a2a6c !important;
}

#features .device-item i {
    font-size: 20px !important;
    margin-bottom: 8px !important;
    color: #ff6b00 !important;
}

/* Feature Highlights */
#features .feature-highlights {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 0 0 !important;
    text-align: left !important;
}

#features .feature-highlights li {
    display: flex !important;
    align-items: center !important;
    padding: 8px 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
}

/* ===========================
   PRICING GRID STYLES
   =========================== */

/* Pricing Section */
.pricing-section {
    padding: 50px 4%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.pricing-grid.four-columns {
    grid-template-columns: repeat(4, 1fr);
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 14px;
    padding: 22px 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

/* Featured Card */
.pricing-card.featured {
    border-color: #ff6b00;
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.15);
    transform: scale(1.03);
    z-index: 3;
    margin: 0 -5px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, #ff6b00, #ff8c00);
    transform: scaleX(1);
}

/* Popular Ribbon */
.popular-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    transform-origin: center;
    width: 150px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ultimate-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    transform-origin: center;
    width: 150px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Plan Header */
.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.plan-badge {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge.starter {
    background: linear-gradient(45deg, #10b981, #34d399);
    color: white;
}

.plan-badge.value {
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    color: white;
}

.plan-badge.popular {
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: white;
}

.plan-badge.ultimate {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: white;
}

.plan-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
    font-size: 1.3rem;
}

.pricing-card.featured .plan-icon {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 140, 0, 0.1));
    color: #ff6b00;
}

/* Plan Title */
.plan-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2a6c;
    margin: 10px 0 12px;
    text-align: center;
    line-height: 1.3;
}

/* Price Container */
.price-container {
    text-align: center;
    margin-bottom: 16px;
    padding: 14px 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
    margin-right: 2px;
    transform: translateY(-8px);
}

.amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a2a6c;
    line-height: 1;
    margin: 0 2px;
}

.period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
    margin-left: 2px;
    transform: translateY(-8px);
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.total-price {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.price-note {
    font-size: 0.8rem;
    color: #9ca3af;
    font-style: italic;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(45deg, #10b981, #34d399);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings-badge.highlight {
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    animation: pulse 2s infinite;
}

/* Features List */
.features-list {
    flex: 1;
    margin: 10px 0 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
    line-height: 1.4;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    background: rgba(102, 126, 234, 0.05);
    padding-left: 8px;
    border-radius: 6px;
}

.feature-item i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-item.premium i {
    color: #ff6b00;
}

.feature-item span {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.3;
}

/* Plan CTA */
.plan-cta {
    margin-top: auto;
    text-align: center;
    padding: 0 8px;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 180px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    margin: 4px 0 12px;
    line-height: 1.2;
}

.cta-button.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.cta-button.featured {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.cta-button.featured:hover {
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.5);
}

.cta-text {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1px;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.1;
}

/* Payment Options */
.payment-options {
    text-align: center;
    margin: 4px auto 0;
    max-width: 90%;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
}

.payment-icons i {
    font-size: 1.5rem;
    color: #6b7280;
    transition: color 0.2s ease;
}

.payment-icons i:hover {
    color: #374151;
}

.secure-text {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s infinite;
}

.secure-text {
    color: #9ca3af;
    font-weight: 500;
}

/* ===========================
   MOBILE RESPONSIVE STYLES
   =========================== */

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-section {
        padding: 35px 3%;
        gap: 20px;
    }
    
    /* Pricing Grid Tablet */
    .pricing-grid.four-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 8px;
    }
    
    .pricing-card {
        padding: 18px 14px;
    }
    
    .amount {
        font-size: 2.1rem;
    }
    
    .plan-title {
        font-size: 1.2rem;
        margin-bottom: 14px;
    }
    
    .price-container {
        padding: 14px 0;
        margin-bottom: 16px;
    }
    
    .hero-cta-section {
        max-width: 320px;
        gap: 12px;
    }
    
    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 8px;
    }
    
    .hero-description {
        margin-bottom: 12px;
    }
    
    .price-amount {
        font-size: 2.8rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        min-height: auto;
        gap: 20px;
    }
    
    /* Pricing Grid Mobile */
    .pricing-section {
        padding: 35px 3%;
    }
    
    .pricing-grid.four-columns {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0 10px;
    }
    
    .pricing-card {
        padding: 16px 14px;
        margin: 0 4px;
        border-radius: 12px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .popular-ribbon,
    .ultimate-ribbon {
        display: none;
    }
    
    .plan-header {
        margin-bottom: 12px;
    }
    
    .plan-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .plan-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .price-container {
        padding: 12px 0;
        margin-bottom: 16px;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .features-list {
        margin-bottom: 16px;
    }
    
    .feature-item {
        padding: 6px 0;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 12px 16px;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .payment-icons i {
        font-size: 1.3rem;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .hero-features {
        gap: 12px;
        margin-bottom: 12px;
        justify-content: center;
    }
    
    .hero-feature {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .hero-buttons {
        gap: 10px;
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .hero-trust {
        gap: 15px;
        justify-content: center;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    /* Mobile CTA Section */
    .hero-cta-section {
        max-width: 100%;
        gap: 12px;
    }
    
    .hero-pricing-card {
        padding: 16px;
        border-radius: 12px;
        margin: 0 10px;
    }
    
    .pricing-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 10px;
    }
    
    .price-currency {
        font-size: 1.2rem;
    }
    
    .price-amount {
        font-size: 2.8rem;
    }
    
    .price-period {
        font-size: 1rem;
    }
    
    .pricing-original {
        font-size: 0.85rem;
    }
    
    .pricing-savings {
        font-size: 0.9rem;
    }
    
    .benefit-item {
        padding: 8px 12px;
        border-radius: 8px;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
    }
    
    .benefit-item i {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 14px 20px;
        border-radius: 10px;
        margin: 0 10px;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-subtitle {
        font-size: 0.8rem;
    }
    
    .cta-guarantee {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .proof-stars i {
        font-size: 0.9rem;
    }
    
    .proof-rating {
        font-size: 0.9rem;
    }
    
    .proof-text {
        font-size: 0.8rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-section {
        padding: 20px 10px;
        gap: 15px;
    }
    
    /* Pricing Grid Small Mobile */
    .pricing-section {
        padding: 25px 2%;
    }
    
    .pricing-grid {
        gap: 10px;
        padding: 0 6px;
    }
    
    .pricing-card {
        padding: 14px 10px;
        margin: 0 2px;
        border-radius: 10px;
    }
    
    .plan-badge {
        padding: 3px 10px;
        font-size: 0.7rem;
    }
    
    .plan-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .amount {
        font-size: 1.8rem;
    }
    
    .price-container {
        padding: 10px 0;
        margin-bottom: 14px;
    }
    
    .currency {
        font-size: 1rem;
    }
    
    .period {
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 5px 0;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 10px 14px;
        margin-bottom: 10px;
    }
    
    .cta-text {
        font-size: 0.95rem;
    }
    
    .cta-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-pricing-card {
        padding: 12px;
        margin: 0 5px;
    }
    
    .price-amount {
        font-size: 2.4rem;
    }
    
    .cta-button {
        padding: 12px 16px;
        margin: 0 5px;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .benefit-item {
        padding: 6px 10px;
    }
    
    .benefit-item span {
        font-size: 0.85rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .pricing-grid {
        gap: 25px;
        max-width: 1300px;
    }
    
    .pricing-card {
        padding: 28px 24px;
    }
    
    .amount {
        font-size: 2.8rem;
    }
    
    .plan-title {
        font-size: 1.4rem;
    }
    
    .feature-item span {
        font-size: 0.95rem;
    }
}

#features .feature-highlights i {
    color: #4CAF50 !important;
    margin-right: 10px !important;
    font-size: 12px !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #features .section-title {
        font-size: 32px !important;
    }
    
    #features .section-description {
        font-size: 16px !important;
    }
    
    #features .main-features {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    #features .secondary-features {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    #features .feature-card {
        padding: 30px 25px !important;
    }
    
    #features .feature-card.compact {
        padding: 25px 20px !important;
    }
    
    #features .device-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* MODERN FEATURES STYLING - IPTV FOCUSED */

/* Main Features - Clean White Cards */
.main-feature-card {
    background: #fff !important;
    color: #111 !important;
    border-radius: 22px !important;
    box-shadow: 0 10px 32px rgba(26,42,108,0.07) !important;
    padding: 42px 32px !important;
    text-align: left !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid #f0f0f0 !important;
    transition: box-shadow 0.3s, transform 0.3s !important;
    min-height: 440px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.main-feature-card:hover {
    box-shadow: 0 20px 48px rgba(26,42,108,0.15) !important;
    transform: translateY(-8px) !important;
}

.main-feature-card h3 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #1a2a6c !important;
    margin-bottom: 14px !important;
    line-height: 1.25 !important;
}

.main-feature-card .feature-subtitle {
    font-size: 16px !important;
    color: #333 !important;
    opacity: 0.95 !important;
    margin-bottom: 22px !important;
    font-weight: 500 !important;
}

.main-feature-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 18px 0 0 0 !important;
    text-align: left !important;
    flex: 1 1 auto !important;
}

.main-feature-list li {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-size: 15px !important;
    color: #222 !important;
    padding: 9px 0 !important;
    font-weight: 500 !important;
}

.main-feature-list i {
    color: #ff6b00 !important;
    font-size: 18px !important;
    margin-right: 6px !important;
    width: 22px !important;
    text-align: center !important;
}

.main-feature-card .feature-cta {
    margin-top: 28px !important;
}

/* Main Feature Icon Styling */
.main-icon {
    width: 64px !important;
    height: 64px !important;
    background: #f7f7fa !important;
    border: 2px solid #eee !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 12px !important;
    box-shadow: 0 4px 16px rgba(26,42,108,0.08) !important;
    font-size: 28px !important;
    color: #1a2a6c !important;
    transition: background 0.3s, color 0.3s !important;
}

.main-icon i {
    font-size: 28px !important;
    color: #1a2a6c !important;
}

.main-feature-card:hover .main-icon {
    background: #ff6b00 !important;
    color: #fff !important;
    border-color: #ff6b00 !important;
}

.main-feature-card:hover .main-icon i {
    color: #fff !important;
}

/* Main Feature Badge Styling */
.main-badge {
    position: absolute !important;
    top: 22px !important;
    right: 24px !important;
    background: #fff3ea !important;
    color: #ff6b00 !important;
    border-radius: 14px !important;
    padding: 7px 18px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 8px rgba(255,107,0,0.08) !important;
    z-index: 2 !important;
}

@media (max-width: 900px) {
    .main-feature-card {
        padding: 28px 14px !important;
        min-height: 320px !important;
    }
    .main-feature-card h3 {
        font-size: 21px !important;
    }
}

@media (max-width: 600px) {
    .main-feature-card {
        padding: 16px 6px !important;
        min-height: 220px !important;
    }
    .main-feature-card h3 {
        font-size: 18px !important;
    }
    .main-feature-list li {
        font-size: 13px !important;
    }
}

/* Remove old colored/gradient backgrounds for main features */
.feature-card.premium-channels,
.feature-card.streaming-tech,
.feature-card.device-support {
    background: #fff !important;
    color: #111 !important;
    box-shadow: 0 10px 32px rgba(26,42,108,0.07) !important;
}

.feature-card.premium-channels::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.1) 0%, transparent 50%) !important;
    pointer-events: none !important;
}

.feature-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    margin-bottom: 25px !important;
}

.feature-icon.premium {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(45deg, #ff6b00, #ff8c00) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4) !important;
}

.feature-icon.premium i {
    font-size: 28px !important;
    color: white !important;
}

.feature-badge.trending {
    background: linear-gradient(45deg, #ff6b00, #ff8c00) !important;
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3) !important;
    animation: pulse 2s infinite !important;
}

.feature-subtitle {
    font-size: 16px !important;
    opacity: 0.9 !important;
    margin-bottom: 25px !important;
    font-weight: 500 !important;
}

.channel-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin: 25px 0 !important;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    backdrop-filter: blur(10px) !important;
}

.stat-item {
    text-align: center !important;
}

.stat-number {
    display: block !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #ff6b00 !important;
    margin-bottom: 5px !important;
}

.stat-label {
    font-size: 12px !important;
    opacity: 0.8 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.premium-highlights {
    margin: 25px 0 !important;
}

.highlight-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 12px !important;
    font-size: 14px !important;
}

.highlight-item i {
    color: #ff6b00 !important;
    margin-right: 12px !important;
    font-size: 16px !important;
    width: 20px !important;
}

.feature-cta {
    margin-top: 30px !important;
}

.cta-button.primary {
    display: inline-block !important;
    background: linear-gradient(45deg, #ff6b00, #ff8c00) !important;
    color: white !important;
    padding: 15px 30px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3) !important;
}

.cta-button.primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4) !important;
}

/* Streaming Tech Card */
.feature-card.streaming-tech {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

.feature-icon.tech {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(45deg, #667eea, #764ba2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 15px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    backdrop-filter: blur(10px) !important;
}

.tech-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
    margin: 20px 0 !important;
}

.tech-item {
    text-align: center !important;
    padding: 15px 10px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    backdrop-filter: blur(10px) !important;
}

.tech-icon {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #ff6b00 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.tech-item span {
    font-size: 11px !important;
    opacity: 0.9 !important;
}

.performance-metrics {
    display: flex !important;
    justify-content: space-around !important;
    margin-top: 25px !important;
    padding: 15px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
}

.metric {
    display: flex !important;
    align-items: center !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.metric i {
    color: #4CAF50 !important;
    margin-right: 8px !important;
}

/* Device Support Card */
.feature-card.device-support {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%) !important;
    color: white !important;
}

.feature-icon.devices {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(45deg, #11998e, #38ef7d) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4) !important;
}

.compatibility-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 15px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

.device-showcase {
    margin: 25px 0 !important;
}

.device-category {
    margin-bottom: 20px !important;
}

.device-category h4 {
    font-size: 14px !important;
    margin-bottom: 10px !important;
    opacity: 0.9 !important;
}

.device-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.device-tag {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    backdrop-filter: blur(10px) !important;
}

.sync-feature {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 25px !important;
    padding: 15px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.sync-feature i {
    margin-right: 10px !important;
    color: #4CAF50 !important;
}

/* Secondary Features - Value Cards */
.value-card {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-radius: 20px !important;
    padding: 30px 25px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    border-left: 4px solid #ff6b00 !important;
    position: relative !important;
    overflow: hidden !important;
    color: #333 !important;
}

.value-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.value-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 100px !important;
    height: 100px !important;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%) !important;
    pointer-events: none !important;
}

.value-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(45deg, #ff6b00, #ff8c00) !important;
    border-radius: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.2) !important;
}

.value-icon i {
    font-size: 24px !important;
    color: white !important;
}

.value-content h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a2a6c !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
}

.value-content p {
    font-size: 14px !important;
    color: #333 !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
    text-shadow: none !important;
    background: transparent !important;
}

.value-metric {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 15px !important;
}

.metric-number {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #ff6b00 !important;
}

.metric-label {
    font-size: 12px !important;
    color: #999 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.savings-comparison {
    margin-top: 15px !important;
}

.old-price {
    font-size: 12px !important;
    color: #999 !important;
    text-decoration: line-through !important;
    margin-bottom: 5px !important;
}

.new-price {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #28a745 !important;
}

.content-categories {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    margin-top: 15px !important;
}

.category-tag {
    background: #f8f9fa !important;
    color: #1a2a6c !important;
    padding: 4px 10px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    border: 1px solid #e9ecef !important;
}

.tech-stats {
    display: flex !important;
    gap: 20px !important;
    margin-top: 15px !important;
}

.stat {
    text-align: center !important;
}

.stat span {
    display: block !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #28a745 !important;
    margin-bottom: 3px !important;
}

.connection-visual {
    margin-top: 15px !important;
    text-align: center !important;
}

.device-dots {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
}

.dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #ddd !important;
}

.dot.active {
    background: #28a745 !important;
    animation: pulse 2s infinite !important;
}

.connection-label {
    font-size: 12px !important;
    color: #666 !important;
    font-weight: 600 !important;
}

.support-channels {
    display: flex !important;
    justify-content: space-between !important;
    margin-top: 15px !important;
}

.support-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 10px !important;
    background: #f8f9fa !important;
    border-radius: 10px !important;
    flex: 1 !important;
    margin: 0 5px !important;
}

.support-item i {
    font-size: 18px !important;
    color: #28a745 !important;
    margin-bottom: 5px !important;
}

.support-item span {
    font-size: 10px !important;
    color: #666 !important;
    font-weight: 600 !important;
    text-align: center !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .channel-stats {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .device-list {
        justify-content: center !important;
    }
    
    .support-channels {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .support-item {
        margin: 0 !important;
    }
}

/* EMERGENCY BACKUP - Ensure grids are always visible */
.main-features, .secondary-features {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.main-features {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 40px !important;
}

.secondary-features {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 25px !important;
}

.feature-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Free Trial Button Styling */
.free-trial-button {
    margin-top: 15px !important;
    text-align: center !important;
}

.trial-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(45deg, #28a745, #20c997) !important;
    color: white !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3) !important;
    border: none !important;
    margin: 0 auto !important;
}

.trial-button i {
    margin-right: 6px !important;
    font-size: 12px !important;
}

.trial-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4) !important;
    background: linear-gradient(45deg, #20c997, #28a745) !important;
}

@media (max-width: 768px) {
    .trial-button {
        width: 100% !important;
        font-size: 13px !important;
        padding: 7px 14px !important;
    }
}

/* Main CTA Button Styling for Pricing Plans */
.cta-button {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 14px 20px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    margin-bottom: 15px !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    border: none !important;
}

.cta-button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(100%) !important;
    transition: transform 0.4s ease !important;
    z-index: -1 !important;
}

.cta-button:hover::before {
    transform: translateY(0) !important;
}

.cta-button:hover {
    transform: translateY(-3px) !important;
}

.cta-button.primary {
    background: linear-gradient(45deg, #1a2a6c, #2a4b8d) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(26, 42, 108, 0.3) !important;
}

.cta-button.primary:hover {
    box-shadow: 0 8px 20px rgba(26, 42, 108, 0.4) !important;
}

.cta-button.secondary {
    background: linear-gradient(45deg, #4a6fa5, #6889bb) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(74, 111, 165, 0.3) !important;
}

.cta-button.secondary:hover {
    box-shadow: 0 8px 20px rgba(74, 111, 165, 0.4) !important;
}

.cta-button.featured {
    background: linear-gradient(45deg, #ff6b00, #ff8c00) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3) !important;
}

.cta-button.featured:hover {
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4) !important;
}

.cta-text {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 2px !important;
}

.cta-subtitle {
    font-size: 12px !important;
    opacity: 0.9 !important;
    font-weight: 500 !important;
}

/* Features Grid Styling */
.features-grid {
    display: grid !important;
    gap: 30px !important;
    margin-bottom: 60px !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Modern Sophisticated Main Features Grid */
.main-features {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 40px !important;
    position: relative !important;
    z-index: 1 !important;
    padding: 20px 0 !important;
}

.main-features::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, rgba(26, 42, 108, 0), rgba(26, 42, 108, 0.2), rgba(26, 42, 108, 0)) !important;
    z-index: -1 !important;
}

.main-features .feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    padding: 40px 30px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 380px !important;
}

.main-features .feature-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 5px !important;
    background: linear-gradient(90deg, #1a2a6c, #2a4b8d, #4a6fa5) !important;
}

.main-features .feature-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1) !important;
}

.main-features .feature-card .feature-icon {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 25px !important;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.1), rgba(26, 42, 108, 0.05)) !important;
    position: relative !important;
    margin: 0 auto 30px !important;
}

.main-features .feature-card .feature-icon::after {
    content: '' !important;
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    border: 2px dashed rgba(26, 42, 108, 0.3) !important;
    animation: spin 30s linear infinite !important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.main-features .feature-card .feature-icon i {
    font-size: 36px !important;
    background: linear-gradient(45deg, #1a2a6c, #ff6b00) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

.main-features .feature-card h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    background: linear-gradient(45deg, #1a2a6c, #2a4b8d) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    position: relative !important;
}

.main-features .feature-card p {
    color: #555 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-bottom: 25px !important;
}

.main-features .feature-card.featured {
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.95), rgba(42, 75, 141, 0.9)) !important;
    transform: scale(1.05) !important;
    z-index: 2 !important;
}

.main-features .feature-card.featured::before {
    background: linear-gradient(90deg, #ff6b00, #ff8c00) !important;
    height: 6px !important;
}

.main-features .feature-card.featured h3,
.main-features .feature-card.featured p {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.main-features .feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, 0.1) !important;
}

.main-features .feature-card.featured .feature-icon::after {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.main-features .feature-card.featured .feature-icon i {
    background: linear-gradient(45deg, #fff, #ff8c00) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

.secondary-features {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    margin-bottom: 80px !important;
}

@media (max-width: 768px) {
    .main-features, .secondary-features {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .cta-button {
        padding: 12px 16px !important;
    }
    
    .cta-text {
        font-size: 16px !important;
    }
}

/* Modern Hero Section Styling - Compact & Beautiful */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
    padding: 60px 0;
    z-index: 1;
    box-sizing: border-box;
    isolation: isolate;
    margin: 0;
}

/* Compact hero section variant */
.hero-section.compact {
    min-height: 70vh;
    padding: 40px 0;
    background: none;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Background with Animated Shapes */
.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(135deg, #0f1b3a, #1a2a6c);
    overflow: hidden;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
    animation: floatAnimation 15s infinite ease-in-out;
}

.hero-shapes .shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shapes .shape-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, #1a2a6c, #4361ee);
    bottom: -200px;
    left: -200px;
    animation-delay: 5s;
}

.hero-shapes .shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #4cc9f0, #4895ef);
    top: 40%;
    right: 30%;
    animation-delay: 10s;
}

.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjMDAwMDAwIiBvcGFjaXR5PSIwLjA1Ij48L3JlY3Q+Cjwvc3ZnPg==');
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

@keyframes floatAnimation {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}

/* Hero Content Styling - Enhanced for SEO & Visual Appeal */
.hero-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
    text-align: center;
    z-index: 10;
    position: relative;
    box-sizing: border-box;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Hero Badge - Enhanced */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.9), rgba(255, 140, 0, 0.9));
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: badgePulse 2s infinite alternate;
}

.hero-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
}

.hero-badge i {
    font-size: 18px;
    margin-right: 8px;
    color: #fff;
}

.hero-badge .badge-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

/* Hero Title - SEO Enhanced */
.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-title .title-line {
    display: block;
    margin-bottom: 10px;
}

.hero-title .title-accent {
    display: block;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 0.9em;
}

.hero-title .title-accent::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    border-radius: 5px;
}

/* Hero Description - SEO Optimized */
.hero-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-description strong {
    color: #fff;
    font-weight: 700;
    position: relative;
}

.hero-description strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    border-radius: 2px;
}

/* Hero Features - Streamlined */
.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 0 auto 30px;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 240px;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.hero-feature:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.3), rgba(255, 140, 0, 0.3));
}

.hero-feature .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.2), rgba(255, 140, 0, 0.2));
    border-radius: 50%;
    font-size: 26px;
    color: #ff8c00;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-feature .feature-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.4), rgba(255, 140, 0, 0.4));
    z-index: -1;
    filter: blur(10px);
}

.hero-feature .feature-icon i {
    font-size: 24px;
    color: #fff;
}

.hero-feature .feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.hero-feature .feature-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Hero CTA Section - Compact & Modern */
.hero-cta-section {
    background: rgba(15, 27, 58, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.cta-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    box-sizing: border-box;
}

/* Pricing Card - Enhanced */
.hero-pricing-card {
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.8), rgba(15, 27, 58, 0.8));
    border-radius: 16px;
    padding: 22px;
    width: 260px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.hero-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6b00, #ff8c00);
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.pricing-badge span {
    margin-right: 5px;
}

.pricing-main {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-top: 5px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    margin-left: 5px;
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pricing-original {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.pricing-savings {
    font-size: 16px;
    font-weight: 700;
    color: #4cc9f0;
}

/* Benefits */
.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 250px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item i {
    color: #4cc9f0;
    font-size: 18px;
}

.benefit-item span {
    color: #fff;
    font-size: 16px;
}

/* Main CTA */
.hero-main-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 350px;
}

.cta-button.primary-cta {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cta-button.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.cta-button.primary-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

.cta-button.primary-cta:hover::before {
    left: 100%;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 15px;
}

.cta-icon i {
    font-size: 20px;
    color: #fff;
}

.cta-content {
    display: flex;
    flex-direction: column;
}

.cta-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.cta-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.cta-guarantee i {
    color: #4cc9f0;
}

/* Social Proof */
.hero-social-proof {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.proof-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffb800;
}

.proof-rating {
    color: #fff;
    margin-left: 10px;
    font-weight: 600;
}

.proof-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* Features Grid Styling */
.features-grid {
    display: grid !important;
    width: 100% !important;
    max-width: 1140px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.main-features {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 30px !important;
    margin-bottom: 60px !important;
}

.secondary-features {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 25px !important;
    margin-bottom: 60px !important;
}

.feature-card {
    background: #fff !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    box-sizing: border-box !important;
}

.feature-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

/* Main feature card styling */
.main-feature-card {
    padding: 30px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.feature-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    margin-bottom: 20px !important;
}

.feature-icon.main-icon {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #1a2a6c, #4a69bd) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 28px !important;
    margin-bottom: 20px !important;
}

.feature-badge.main-badge {
    background: linear-gradient(135deg, #ff6b00, #ff8c00) !important;
    color: #fff !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.main-feature-card h3 {
    font-size: 24px !important;
    color: #1a2a6c !important;
    margin: 0 0 10px !important;
    font-weight: 700 !important;
}

.feature-subtitle {
    color: #555 !important;
    font-size: 16px !important;
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
}

.channel-stats {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    gap: 15px !important;
    margin-top: 20px !important;
}

.stat-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: rgba(0, 0, 0, 0.03) !important;
    padding: 10px !important;
    border-radius: 10px !important;
}

.stat-number {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a2a6c !important;
}

.stat-label {
    font-size: 14px !important;
    color: #666 !important;
}

.feature-card.value-card {
    display: flex !important;
    flex-direction: row !important;
    padding: 25px !important;
    align-items: flex-start !important;
    gap: 20px !important;
}

.value-icon {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    background: linear-gradient(135deg, #1a2a6c, #4a69bd) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 24px !important;
    margin-top: 5px !important;
}

.value-content {
    flex: 1 !important;
}

.value-content h4 {
    margin: 0 0 10px !important;
    font-size: 20px !important;
    color: #1a2a6c !important;
    font-weight: 700 !important;
}

.value-content p {
    margin: 0 0 15px !important;
    font-size: 15px !important;
    color: #555 !important;
    line-height: 1.5 !important;
}

/* Additional responsive adjustments for hero section */
@media (max-width: 1200px) {
    .hero-content {
        max-width: 960px;
    }
    
    .cta-container {
        max-width: 960px;
    }
}

/* LUXURY HERO SECTION - PREMIUM STYLING */
.luxury-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 20px;
}

/* Premium Background Effects */
.hero-background-luxury {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, rgba(26, 42, 108, 0.2), rgba(15, 15, 35, 0.8));
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0%" stop-color="rgba(255,107,0,0.1)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="200" cy="200" r="1" fill="url(%23a)"/><circle cx="800" cy="300" r="1.5" fill="url(%23a)"/><circle cx="400" cy="700" r="1" fill="url(%23a)"/></svg>');
    animation: floatParticles 20s ease-in-out infinite;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 0, 0.05) 70%);
    animation: shimmer 3s ease-in-out infinite alternate;
}

@keyframes floatParticles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes shimmer {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Luxury Container */
.luxury-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: #ffffff;
    animation: fadeInUp 0.8s ease;
}

.trust-badge i {
    color: #ff6b00;
}

/* Luxury Headline */
.luxury-headline {
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.2s both;
}

.headline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.static-headline {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.luxury-title {
    margin-bottom: 30px;
    color: #1a2a6c;
}

.title-primary {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1a2a6c, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-secondary {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    color: #ff6b00;
    margin-bottom: 10px;
}

.title-tertiary {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
}

.luxury-description {
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.6;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Centered Feature Cards Row */
.centered-features {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 20px;
	margin-bottom: 60px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	flex-wrap: wrap;
}

.centered-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 15px;
	padding: 30px 20px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	flex: 1;
	min-width: 250px;
	max-width: 280px;
}

.centered-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.centered-card .feature-icon-luxury {
	width: 60px;
	height: 60px;
	margin: 0 auto 15px;
	background: linear-gradient(135deg, #ff6b00, #ff8c00);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: white;
}

.centered-card .feature-title-luxury {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #1a2a6c;
}

.centered-card .feature-description-luxury {
	font-size: 14px;
	color: #666;
	line-height: 1.4;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
	.centered-features {
		flex-direction: column;
		align-items: center;
	}
	
	.centered-card {
		min-width: 280px;
		max-width: 320px;
		margin-bottom: 15px;
	}
}

/* Luxury Features Grid */
.luxury-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.luxury-feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.luxury-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
    border-color: rgba(255, 107, 0, 0.3);
}

.feature-icon-luxury {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.feature-title-luxury {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-description-luxury {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.5;
}

/* Luxury CTA Section */
.luxury-cta-section {
    max-width: 600px;
    margin: 0 auto;
}

.luxury-pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pricing-badge-luxury {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-original {
    text-align: right;
}

.original-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.original-period {
    font-size: 14px;
    color: #999;
}

.pricing-main-luxury {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.price-currency-luxury {
    font-size: 24px;
    color: #ff6b00;
    font-weight: 600;
}

.price-amount-luxury {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 5px;
}

.price-period-luxury {
    font-size: 20px;
    color: #cccccc;
}

.pricing-savings-luxury {
    text-align: center;
}

.savings-amount {
    display: block;
    font-size: 18px;
    color: #ff6b00;
    font-weight: 600;
    margin-bottom: 5px;
}

.savings-timer {
    font-size: 14px;
    color: #cccccc;
}

/* Luxury CTA Buttons */
.luxury-cta-buttons {
    margin-bottom: 40px;
}

.cta-button-luxury {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.cta-button-luxury:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.4);
}

.cta-icon-luxury {
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-text-luxury {
    font-size: 20px;
    margin-bottom: 5px;
}

.cta-subtext {
    font-size: 14px;
    opacity: 0.8;
}

.cta-secondary-luxury {
    margin-top: 30px;
}

.guarantee-luxury {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
}

.trust-pillars {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    font-size: 14px;
}

.pillar i {
    color: #ff6b00;
}

/* Premium Social Proof */
.luxury-social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.proof-section {
    text-align: center;
}

.stars-luxury {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stars-luxury i {
    color: #ffd700;
    font-size: 18px;
}

.rating-luxury {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-left: 10px;
}

.reviews-luxury {
    font-size: 14px;
    color: #cccccc;
}

.user-count-luxury {
    text-align: center;
}

.count-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.count-display i {
    color: #ff6b00;
    font-size: 20px;
}

.count-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.count-label {
    font-size: 14px;
    color: #cccccc;
}

.security-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    color: #cccccc;
}

.badge-item i {
    color: #ff6b00;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Luxury Hero */
@media (max-width: 1200px) {
    .luxury-hero-section {
        padding: 60px 20px;
    }
    
    .luxury-title {
        font-size: clamp(36px, 5vw, 60px);
    }
    
    .luxury-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .luxury-hero-section {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
    
    .luxury-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .luxury-pricing-card {
        padding: 30px 20px;
    }
    
    .price-amount-luxury {
        font-size: 36px;
    }
    
    .luxury-social-proof {
        flex-direction: column;
        gap: 20px;
    }
    
    .trust-pillars {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .luxury-hero-section {
        padding: 30px 15px;
    }
    
    .luxury-title {
        font-size: clamp(28px, 8vw, 48px);
    }
    
    .luxury-description {
        font-size: 16px;
    }
    
    .luxury-feature {
        padding: 20px;
    }
    
    .luxury-pricing-card {
        padding: 20px;
    }
    
    .price-amount-luxury {
        font-size: 32px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 18px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        max-width: 700px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-pricing-card,
    .hero-benefits,
    .hero-main-cta {
        width: 100%;
        max-width: 400px;
    }
}

/* Features grid responsive styles */
@media (max-width: 992px) {
    .features-grid {
        padding: 0 15px !important;
    }
    
    .main-features {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 25px !important;
    }
    
    .secondary-features {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 20px !important;
    }
    
    .feature-card.value-card {
        padding: 20px !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-section.compact {
        min-height: 60vh;
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
        margin: 0 auto 25px;
        max-width: 90%;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-feature {
        width: 100%;
        max-width: 300px;
        padding: 20px;
    }
    
    .hero-cta-section {
        padding: 25px 0;
        margin-top: 15px;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-pricing-card {
        width: 100%;
        max-width: 260px;
        margin-bottom: 0;
    }
    
    .hero-badge {
        padding: 6px 14px;
        margin-bottom: 15px;
        font-size: 0.9em;
    }
    
    .main-features,
    .secondary-features {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .main-feature-card {
        padding: 25px !important;
    }
    
    .feature-card.value-card {
        padding: 20px !important;
    }
    
    .feature-icon.main-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
    }
    
    .main-feature-card h3 {
        font-size: 20px !important;
    }
    
    .feature-subtitle {
        font-size: 15px !important;
    }
    
    .value-content h4 {
        font-size: 18px !important;
    }
    
    .value-content p {
        font-size: 14px !important;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-title .title-accent {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .hero-feature {
        width: 100%;
        max-width: 320px;
    }

    .cta-container {
        flex-direction: column;
    }

    .pricing-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .cta-benefits {
        width: 100%;
    }

    .hero-cta-button {
        width: 100%;
        padding: 15px;
    }
    
    .hero-badge {
        padding: 8px 15px;
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .cta-button {
        padding: 12px 16px !important;
    }
    
    .cta-text {
        font-size: 16px !important;
    }
}
/ *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       B L O G   S E C T I O N   S T Y L E S 
       M o d e r n ,   S E O - o p t i m i z e d   b l o g   p o s t s   s e c t i o n 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . b l o g - s e c t i o n   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 8 f 9 f a   0 % ,   # e 9 e c e f   1 0 0 % ) ; 
         p a d d i n g :   1 0 0 p x   0   1 2 0 p x ; 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 . b l o g - s e c t i o n : : b e f o r e   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         r i g h t :   0 ; 
         h e i g h t :   1 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   t r a n s p a r e n t ,   # f f 6 b 0 0 ,   t r a n s p a r e n t ) ; 
 } 
 
 . b l o g - s e c t i o n   . c o n t a i n e r   { 
         m a x - w i d t h :   1 2 0 0 p x ; 
         m a r g i n :   0   a u t o ; 
         p a d d i n g :   0   2 0 p x ; 
 } 
 
 . b l o g - s e c t i o n   . s e c t i o n - h e a d e r   { 
         t e x t - a l i g n :   c e n t e r ; 
         m a r g i n - b o t t o m :   6 0 p x ; 
 } 
 
 . b l o g - s e c t i o n   . s e c t i o n - b a d g e   { 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   8 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 4 5 d e g ,   # f f 6 b 0 0 ,   # f f 8 c 0 0 ) ; 
         c o l o r :   w h i t e ; 
         p a d d i n g :   8 p x   2 0 p x ; 
         b o r d e r - r a d i u s :   2 5 p x ; 
         f o n t - s i z e :   1 4 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . b l o g - s e c t i o n   . s e c t i o n - h e a d e r   h 2   { 
         f o n t - s i z e :   c l a m p ( 3 2 p x ,   5 v w ,   4 8 p x ) ; 
         f o n t - w e i g h t :   8 0 0 ; 
         c o l o r :   # 1 a 2 a 6 c ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
         l i n e - h e i g h t :   1 . 2 ; 
 } 
 
 . b l o g - s e c t i o n   . s e c t i o n - d e s c r i p t i o n   { 
         f o n t - s i z e :   c l a m p ( 1 6 p x ,   2 v w ,   2 0 p x ) ; 
         c o l o r :   # 6 6 6 ; 
         m a x - w i d t h :   6 0 0 p x ; 
         m a r g i n :   0   a u t o ; 
         l i n e - h e i g h t :   1 . 6 ; 
 } 
 
 / *   B l o g   G r i d   L a y o u t   * / 
 . b l o g - g r i d   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 5 0 p x ,   1 f r ) ) ; 
         g a p :   4 0 p x ; 
         m a r g i n - b o t t o m :   6 0 p x ; 
 } 
 
 . b l o g - c a r d   { 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   2 0 p x ; 
         o v e r f l o w :   h i d d e n ; 
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
         t r a n s i t i o n :   a l l   0 . 4 s   e a s e ; 
         p o s i t i o n :   r e l a t i v e ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 6 ,   4 2 ,   1 0 8 ,   0 . 1 ) ; 
 } 
 
 . b l o g - c a r d : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 5 p x ) ; 
         b o x - s h a d o w :   0   2 5 p x   5 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 } 
 
 . b l o g - i m a g e   { 
         p o s i t i o n :   r e l a t i v e ; 
         h e i g h t :   2 2 0 p x ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 . b l o g - i m a g e   i m g   { 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         o b j e c t - f i t :   c o v e r ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 4 s   e a s e ; 
 } 
 
 . b l o g - c a r d : h o v e r   . b l o g - i m a g e   i m g   { 
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
 } 
 
 . b l o g - o v e r l a y   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         r i g h t :   0 ; 
         b o t t o m :   0 ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   r g b a ( 2 6 ,   4 2 ,   1 0 8 ,   0 . 8 ) ,   r g b a ( 2 5 5 ,   1 0 7 ,   0 ,   0 . 8 ) ) ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         o p a c i t y :   0 ; 
         t r a n s i t i o n :   o p a c i t y   0 . 4 s   e a s e ; 
 } 
 
 . b l o g - c a r d : h o v e r   . b l o g - o v e r l a y   { 
         o p a c i t y :   1 ; 
 } 
 
 . b l o g - o v e r l a y   i   { 
         c o l o r :   w h i t e ; 
         f o n t - s i z e :   2 4 p x ; 
         t r a n s f o r m :   s c a l e ( 0 . 8 ) ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 4 s   e a s e ; 
 } 
 
 . b l o g - c a r d : h o v e r   . b l o g - o v e r l a y   i   { 
         t r a n s f o r m :   s c a l e ( 1 ) ; 
 } 
 
 . b l o g - c a t e g o r y - b a d g e   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   1 5 p x ; 
         l e f t :   1 5 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 4 5 d e g ,   # f f 6 b 0 0 ,   # f f 8 c 0 0 ) ; 
         c o l o r :   w h i t e ; 
         p a d d i n g :   5 p x   1 2 p x ; 
         b o r d e r - r a d i u s :   1 5 p x ; 
         f o n t - s i z e :   1 2 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
         b o x - s h a d o w :   0   4 p x   1 0 p x   r g b a ( 2 5 5 ,   1 0 7 ,   0 ,   0 . 3 ) ; 
 } 
 
 . b l o g - c o n t e n t   { 
         p a d d i n g :   3 0 p x ; 
 } 
 
 . b l o g - m e t a   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   2 0 p x ; 
         m a r g i n - b o t t o m :   1 5 p x ; 
         f o n t - s i z e :   1 4 p x ; 
         c o l o r :   # 6 6 6 ; 
 } 
 
 . b l o g - m e t a   s p a n   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   5 p x ; 
 } 
 
 . b l o g - m e t a   i   { 
         c o l o r :   # f f 6 b 0 0 ; 
 } 
 
 . b l o g - t i t l e   { 
         f o n t - s i z e :   c l a m p ( 1 8 p x ,   2 . 5 v w ,   2 2 p x ) ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c o l o r :   # 1 a 2 a 6 c ; 
         m a r g i n - b o t t o m :   1 5 p x ; 
         l i n e - h e i g h t :   1 . 3 ; 
 } 
 
 . b l o g - t i t l e   a   { 
         c o l o r :   i n h e r i t ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         t r a n s i t i o n :   c o l o r   0 . 3 s   e a s e ; 
 } 
 
 . b l o g - t i t l e   a : h o v e r   { 
         c o l o r :   # f f 6 b 0 0 ; 
 } 
 
 . b l o g - e x c e r p t   { 
         c o l o r :   # 6 6 6 ; 
         l i n e - h e i g h t :   1 . 6 ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
         f o n t - s i z e :   1 5 p x ; 
 } 
 
 . b l o g - t a g s   { 
         d i s p l a y :   f l e x ; 
         f l e x - w r a p :   w r a p ; 
         g a p :   8 p x ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . b l o g - t a g   { 
         b a c k g r o u n d :   r g b a ( 2 6 ,   4 2 ,   1 0 8 ,   0 . 1 ) ; 
         c o l o r :   # 1 a 2 a 6 c ; 
         p a d d i n g :   4 p x   1 0 p x ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - s i z e :   1 2 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . b l o g - t a g : h o v e r   { 
         b a c k g r o u n d :   # 1 a 2 a 6 c ; 
         c o l o r :   w h i t e ; 
 } 
 
 . b l o g - f o o t e r   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         p a d d i n g - t o p :   2 0 p x ; 
         b o r d e r - t o p :   1 p x   s o l i d   # e e e ; 
 } 
 
 . b l o g - r e a d - m o r e   { 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   8 p x ; 
         c o l o r :   # f f 6 b 0 0 ; 
         f o n t - w e i g h t :   6 0 0 ; 
         f o n t - s i z e :   1 4 p x ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . b l o g - r e a d - m o r e : h o v e r   { 
         c o l o r :   # 1 a 2 a 6 c ; 
         t r a n s f o r m :   t r a n s l a t e X ( 5 p x ) ; 
 } 
 
 . b l o g - r e a d - m o r e   i   { 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ; 
 } 
 
 . b l o g - r e a d - m o r e : h o v e r   i   { 
         t r a n s f o r m :   t r a n s l a t e X ( 3 p x ) ; 
 } 
 
 . b l o g - s t a t s   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 5 p x ; 
         f o n t - s i z e :   1 3 p x ; 
         c o l o r :   # 6 6 6 ; 
 } 
 
 . b l o g - s t a t s   s p a n   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   5 p x ; 
 } 
 
 . b l o g - s t a t s   i   { 
         c o l o r :   # f f 6 b 0 0 ; 
 } 
 
 / *   N o   P o s t s   S t a t e   * / 
 . n o - p o s t s   { 
         g r i d - c o l u m n :   1   /   - 1 ; 
         t e x t - a l i g n :   c e n t e r ; 
         p a d d i n g :   6 0 p x   4 0 p x ; 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   2 0 p x ; 
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 } 
 
 . n o - p o s t s   i   { 
         f o n t - s i z e :   6 4 p x ; 
         c o l o r :   # f f 6 b 0 0 ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . n o - p o s t s   h 3   { 
         f o n t - s i z e :   2 4 p x ; 
         c o l o r :   # 1 a 2 a 6 c ; 
         m a r g i n - b o t t o m :   1 0 p x ; 
 } 
 
 . n o - p o s t s   p   { 
         c o l o r :   # 6 6 6 ; 
         f o n t - s i z e :   1 6 p x ; 
 } 
 
 / *   B l o g   C T A   * / 
 . b l o g - c t a   { 
         t e x t - a l i g n :   c e n t e r ; 
         m a r g i n - t o p :   6 0 p x ; 
 } 
 
 . b l o g - c t a   . b u t t o n   { 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 0 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 4 5 d e g ,   # f f 6 b 0 0 ,   # f f 8 c 0 0 ) ; 
         c o l o r :   w h i t e ; 
         p a d d i n g :   1 8 p x   4 0 p x ; 
         b o r d e r - r a d i u s :   5 0 p x ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         f o n t - w e i g h t :   7 0 0 ; 
         f o n t - s i z e :   1 6 p x ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 2 5 5 ,   1 0 7 ,   0 ,   0 . 3 ) ; 
         t r a n s i t i o n :   a l l   0 . 4 s   e a s e ; 
 } 
 
 . b l o g - c t a   . b u t t o n : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ; 
         b o x - s h a d o w :   0   1 5 p x   4 0 p x   r g b a ( 2 5 5 ,   1 0 7 ,   0 ,   0 . 4 ) ; 
 } 
 
 . b l o g - c t a   . b u t t o n - s u b t i t l e   { 
         d i s p l a y :   b l o c k ; 
         f o n t - s i z e :   1 2 p x ; 
         o p a c i t y :   0 . 8 ; 
         m a r g i n - t o p :   5 p x ; 
         t e x t - t r a n s f o r m :   n o n e ; 
         l e t t e r - s p a c i n g :   0 ; 
 } 
 
 / *   R e s p o n s i v e   B l o g   S t y l e s   * / 
 @ m e d i a   ( m a x - w i d t h :   1 2 0 0 p x )   { 
         . b l o g - g r i d   { 
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 2 0 p x ,   1 f r ) ) ; 
                 g a p :   3 0 p x ; 
         } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   9 9 2 p x )   { 
         . b l o g - s e c t i o n   { 
                 p a d d i n g :   8 0 p x   0   1 0 0 p x ; 
         } 
         
         . b l o g - g r i d   { 
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 0 0 p x ,   1 f r ) ) ; 
                 g a p :   2 5 p x ; 
         } 
         
         . b l o g - c o n t e n t   { 
                 p a d d i n g :   2 5 p x ; 
         } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . b l o g - s e c t i o n   { 
                 p a d d i n g :   6 0 p x   0   8 0 p x ; 
         } 
         
         . b l o g - g r i d   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
                 g a p :   3 0 p x ; 
         } 
         
         . b l o g - c a r d   { 
                 m a r g i n :   0   1 0 p x ; 
         } 
         
         . b l o g - c o n t e n t   { 
                 p a d d i n g :   2 0 p x ; 
         } 
         
         . b l o g - m e t a   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 a l i g n - i t e m s :   f l e x - s t a r t ; 
                 g a p :   1 0 p x ; 
         } 
         
         . b l o g - f o o t e r   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 a l i g n - i t e m s :   f l e x - s t a r t ; 
                 g a p :   1 5 p x ; 
         } 
         
         . b l o g - s t a t s   { 
                 a l i g n - s e l f :   f l e x - s t a r t ; 
         } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   { 
         . b l o g - s e c t i o n   { 
                 p a d d i n g :   4 0 p x   0   6 0 p x ; 
         } 
         
         . b l o g - s e c t i o n   . s e c t i o n - h e a d e r   { 
                 m a r g i n - b o t t o m :   4 0 p x ; 
         } 
         
         . b l o g - s e c t i o n   . s e c t i o n - h e a d e r   h 2   { 
                 f o n t - s i z e :   2 8 p x ; 
         } 
         
         . b l o g - c o n t e n t   { 
                 p a d d i n g :   1 5 p x ; 
         } 
         
         . b l o g - i m a g e   { 
                 h e i g h t :   1 8 0 p x ; 
         } 
         
         . b l o g - c a t e g o r y - b a d g e   { 
                 t o p :   1 0 p x ; 
                 l e f t :   1 0 p x ; 
                 f o n t - s i z e :   1 1 p x ; 
                 p a d d i n g :   4 p x   8 p x ; 
         } 
 } 
 
 / *   S E O   E n h a n c e m e n t   S t y l e s   * / 
 . b l o g - c a r d [ i t e m s c o p e ]   { 
         / *   S c h e m a . o r g   m a r k u p   s t y l e s   * / 
 } 
 
 . b l o g - c a r d [ i t e m t y p e =  
 h t t p s : / / s c h e m a . o r g / B l o g P o s t i n g ]   { 
         / *   S t r u c t u r e d   d a t a   s t y l i n g   * / 
 } 
 
 / *   P e r f o r m a n c e   o p t i m i z a t i o n s   * / 
 . b l o g - i m a g e   i m g [ l o a d i n g = l a z y ]   { 
         t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ; 
 } 
 
 . b l o g - i m a g e   i m g [ l o a d i n g = l a z y ] : n o t ( [ s r c ] )   { 
         o p a c i t y :   0 ; 
 } 
 
 / *   A c c e s s i b i l i t y   i m p r o v e m e n t s   * / 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
         . b l o g - c a r d , 
         . b l o g - c a r d : h o v e r , 
         . b l o g - i m a g e   i m g , 
         . b l o g - o v e r l a y , 
         . b l o g - o v e r l a y   i   { 
                 t r a n s i t i o n :   n o n e ; 
         } 
 } 
 
 / *   H i g h   c o n t r a s t   m o d e   s u p p o r t   * / 
 @ m e d i a   ( p r e f e r s - c o n t r a s t :   h i g h )   { 
         . b l o g - c a r d   { 
                 b o r d e r :   2 p x   s o l i d   # 1 a 2 a 6 c ; 
         } 
         
         . b l o g - r e a d - m o r e   { 
                 t e x t - d e c o r a t i o n :   u n d e r l i n e ; 
         } 
 } 
 
 / *   P r i n t   s t y l e s   * / 
 @ m e d i a   p r i n t   { 
         . b l o g - s e c t i o n   { 
                 b a c k g r o u n d :   w h i t e ; 
         } 
         
         . b l o g - c a r d   { 
                 b o x - s h a d o w :   n o n e ; 
                 b o r d e r :   1 p x   s o l i d   # c c c ; 
         } 
 }  
 