/* 🔹 Global */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* 🔹 Navbar */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
    position: relative;
    color: white;
}

/* Hover underline effect */
.navbar-nav .nav-link::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #0d6efd;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
}

.btn-outline-primary {
    border-radius: 30px;
    padding: 8px 20px;
}

/* 🔹 Hero Section */
.hero {
    background: linear-gradient(135deg, #000000, #550dc8);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

/* Optional background glow */
.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

/* Heading */
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Paragraph */
.hero p {
    font-size: 1.1rem;
    margin-top: 15px;
    opacity: 0.9;
}

/* Hero buttons */
.hero .btn {
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
}

/* Button hover */
.hero .btn-light:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.hero .btn-outline-light:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Small text */
.hero small {
    display: block;
    margin-top: 20px;
    opacity: 0.8;
}

/* Image */
.hero img {
    max-width: 100%;
}
.mt-4 {
    z-index: 1 !important;
    position: relative;
}
/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* 🔹 Responsive */
@media (max-width: 992px) {
    .hero {
        text-align: center;
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .navbar-nav {
        text-align: center;
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        margin: 8px 0;
    }
}

/* STRIP BG */
.logo-strip {
    background: linear-gradient(135deg, #000000, #550dc8);
}

/* SLIDER */
.logo-slider {
    overflow: hidden;
    position: relative;
}

/* TRACK */
.logo-track {
    display: flex;
    width: calc(200px * 10);
    animation: scroll 20s linear infinite;
}

/* LOGO */
.logo-track img {
    width: 30px;
    margin: 0 40px;
    opacity: 0.7;
    transition: 0.3s;
}

.logo-track img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* SECTION */
.about-clean {
    background: #ffffff;
}

/* TAG */
.tag {
    background: #eef2ff;
    color: #4f46e5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* TRUST BOX */
.trust-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    line-height: 2;
}

/* RIGHT CARDS */
.about-card-clean {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.about-card-clean:hover {
    background: #eef2ff;
}

/* HIGHLIGHT */
.about-card-highlight {
    background: #111827;
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

/* AFFILIATE */
.affiliate-clean {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}
.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
}

.text-gold {
    color: #FFD700;
} 

/* SECTION */
.services-section {
    background: linear-gradient(135deg, #550dc8,#000000);
}

/* SERVICE CARD */
.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
}

/* HIGHLIGHT SERVICE */
.service-card.highlight {
    background: #111827;
    color: #fff;
}

/* VALUES BOX */
.values-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* VALUE CARD */
.value-card {
    background: #f3f4f6;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.value-card:hover {
    background: #e5e7eb;
}

/* HIGHLIGHT VALUE */
.highlight-value {
    background: #667eea;
    color: #fff;
}

/* SECTION */
.audience-section {
    background: #ffffff;
}

/* CARDS */
.audience-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
}

.audience-card:hover {
    transform: translateY(-6px);
    background: #eef2ff;
}

/* HIGHLIGHT */
.audience-card.highlight {
    background: #111827;
    color: #fff;
}

/* CONTACT BOX */
.contact-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
}

/* FORM */
.contact-form input {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #ddd;
}

.contact-form input:focus {
    border-color: #667eea;
    box-shadow: none;
}

/* SECTION */
.plans-section {
    background: #f9fafc;
}

/* CARD */
.plan-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
    text-align: left;
}

.plan-card:hover {
    transform: translateY(-8px);
}

/* LIST */
.plan-card ul {
    padding-left: 0;
    list-style: none;
    margin: 20px 0;
}

.plan-card ul li {
    margin-bottom: 10px;
}

/* GOLD PLAN */
.gold-plan {
    border: 2px solid #FFD700;
    transform: scale(1.05);
}

/* GOLD BUTTON */
.btn-gold {
    background: linear-gradient(135deg, #FFD700, #FFC107);
    border: none;
    color: #000;
    font-weight: 600;
}

/* PREMIUM */
.premium-plan {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
}
/* CANVAS FULL SCREEN */
#dots-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* ===== HERO SECTION ===== */        
        #dots-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .btn-custom {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
        }
        
        .hero small {
            opacity: 0.8;
        }
        
        .hero img {
            max-width: 100%;
            height: auto;
        }
        
        /* ===== NAVBAR ===== */
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 8px 16px !important;
        }
        
        .navbar-nav .nav-link:hover {
            color: #4da6ff !important;
        }
        
        /* ===== PRICING ULTRA ===== */
        .pricing-ultra {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .ultra-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px 20px;
            height: 100%;
            transition: transform 0.3s;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .ultra-card:hover {
            transform: translateY(-5px);
        }
        
        .ultra-card.featured {
            background: rgba(255,255,255,0.95);
            color: #333;
            border: 2px solid #ffc107;
        }
        
        .ultra-card.premium {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border: 1px solid #4da6ff;
        }
        
        .ultra-card h6 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .ultra-card h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        /* ===== ABOUT SECTION ===== */
        .about-clean {
            background: #ffffff;
        }
        
        .tag {
            background: #4da6ff;
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .trust-box {
            background: #f8f9fa;
            padding: 15px 20px;
            border-radius: 10px;
            border-left: 4px solid #4da6ff;
        }
        
        .about-card-clean {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 15px;
        }
        
        .about-card-highlight {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
        }
        
        .affiliate-clean {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 20px;
            margin-top: 50px;
        }
        
        /* ===== SERVICES SECTION ===== */
        .services-section {
            background: #f8f9fa;
        }
        
        .service-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            height: 100%;
            transition: all 0.3s;
        }
        
        .service-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        
        .service-card.highlight {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .service-card h5 {
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .values-box {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .value-card {
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            height: 100%;
        }
        
        .value-card.highlight-value {
            background: #4da6ff;
            color: white;
        }
        
        /* ===== PLANS SECTION ===== */
        .plans-section {
            background: white;
        }
        
        .plan-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 20px;
            height: 100%;
            transition: all 0.3s;
            border: 1px solid #eee;
        }
        
        .plan-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .plan-card.gold-plan {
            background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
            border: 2px solid #ffc107;
        }
        
        .plan-card.premium-plan {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
        }
        
        .plan-card h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 15px 0;
        }
        
        .plan-card ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .plan-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .btn-gold {
            background: #ffc107;
            color: #000;
            font-weight: 600;
        }
        
        .btn-gold:hover {
            background: #ffb300;
        }
        
        /* ===== AUDIENCE SECTION ===== */
        .audience-section {
            background: #f8f9fa;
        }
        
        .audience-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            height: 100%;
            transition: all 0.3s;
        }
        
        .audience-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .audience-card.highlight {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .audience-card h5 {
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .contact-box {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
        }
        
        .contact-form input {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #ddd;
        }
        
        .contact-form .btn-primary {
            padding: 12px;
            font-weight: 600;
            border-radius: 8px;
        }
        
        /* ===== RESPONSIVE FIXES ===== */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
                margin-top: 50px;
            }
            
            .hero {
                padding: 50px 0;
                text-align: center;
            }
            
            .navbar-brand img {
                width: 50px;
                height: 50px;
            }
        }
        /* ===== PREMIUM PRICING SECTION ===== */
.pricing-ultra-premium {
    position: relative;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Animated Background */
.pricing-bg-animation {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    background: radial-gradient(circle, #667eea 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.orb-2 {
    background: radial-gradient(circle, #764ba2 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-delay: -10s;
}

.orb-3 {
    background: radial-gradient(circle, #f093fb 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
    width: 800px;
    height: 800px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.container.position-relative {
    z-index: 2;
}

/* Premium Header */
.premium-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 100px;
    color: #a8b8ff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.premium-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.highlight-text {
    color: #667eea;
    font-weight: 600;
}

/* Billing Toggle */
.billing-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.billing-toggle {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.billing-option {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    transition: color 0.3s;
}

.billing-option.active {
    color: white;
}

.save-badge {
    margin-left: 8px;
    padding: 2px 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 100px;
    font-size: 0.75rem;
    color: white;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

/* Premium Cards */
.premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(102, 126, 234, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.premium-card:hover .card-glow {
    opacity: 1;
}

/* Featured Card */
.featured-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.5);
    transform: scale(1.05);
}

.featured-card:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Elite Card */
.elite-card {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(240, 147, 251, 0.3);
}

.elite-badge {
    position: absolute;
    top: 15px;
    left: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

/* Card Icon */
.card-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s;
}

.premium-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(102, 126, 234, 0.2);
}

.card-icon-wrapper.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-color: rgba(102, 126, 234, 0.5);
}

.card-icon-wrapper.elite {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2) 0%, rgba(102, 126, 234, 0.2) 100%);
    border-color: rgba(240, 147, 251, 0.5);
}

.card-icon {
    font-size: 2rem;
}

/* Card Content */
.card-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.card-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-wrapper {
    margin-bottom: 15px;
}

.currency {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    vertical-align: super;
}

.price {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

.period {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.card-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.check-icon {
    color: #667eea;
    margin-right: 10px;
    font-weight: 700;
}

/* Premium Buttons */
.premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-2px);
}

.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-elite {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.btn-elite:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
    color: white;
}

.btn-icon {
    transition: transform 0.3s;
}

.premium-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Trust Indicators */
.trust-indicators {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
}

.trust-icon {
    font-size: 2rem;
}

.trust-text h6 {
    color: white;
    margin-bottom: 5px;
    font-weight: 600;
}

.trust-text p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-title {
        font-size: 2.5rem;
    }
    
    .featured-card {
        transform: scale(1);
    }
    
    .featured-card:hover {
        transform: translateY(-8px);
    }
    
    .premium-card {
        margin-bottom: 20px;
    }
    
    .billing-toggle {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.about-premium {
    position: relative;
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Background Pattern */
.about-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0px, rgba(0,0,0,0.02) 2px, transparent 2px, transparent 8px);
    pointer-events: none;
    z-index: 1;
}

.container.position-relative {
    z-index: 2;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

/* Premium Tag */
.premium-tag-wrapper {
    display: inline-block;
}

.premium-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #667eea;
    backdrop-filter: blur(10px);
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Premium Heading */
.premium-heading {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.gradient-text-large {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.flag-emoji {
    -webkit-text-fill-color: initial;
    margin-left: 8px;
    animation: wave 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

/* Stats Counter */
.stats-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #667eea, transparent);
}

/* Premium Description */
.premium-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #495057;
}

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon {
    font-size: 1.8rem;
}

.feature-content h6 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a2e;
}

.feature-content p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

/* Trust Badges */
.trust-badges-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: white;
    border-radius: 100px;
    font-weight: 600;
    color: #1a1a2e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.badge-icon {
    font-size: 1.1rem;
}

/* Premium Cards */
.premium-mission-card,
.premium-vision-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.15);
}

.premium-mission-card:hover,
.premium-vision-card:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.premium-mission-card:hover .card-shine,
.premium-vision-card:hover .card-shine {
    left: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
}

.premium-mission-card:hover .icon-circle,
.premium-vision-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
}

.icon-circle.purple {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.15) 0%, rgba(102, 126, 234, 0.15) 100%);
    border-color: rgba(240, 147, 251, 0.3);
}

.icon-large {
    font-size: 2rem;
}

.card-title-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.card-text-large {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 20px;
}

.gradient-underline {
    position: relative;
    font-weight: 600;
    color: #667eea;
}

.gradient-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #f093fb);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
}

.premium-mission-card:hover .gradient-underline::after,
.premium-vision-card:hover .gradient-underline::after {
    transform: scaleX(1);
    transform-origin: left;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.learn-more .arrow {
    transition: transform 0.3s;
}

.learn-more:hover {
    color: #764ba2;
}

.learn-more:hover .arrow {
    transform: translateX(5px);
}

/* Philosophy Card */
.premium-philosophy-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    padding: 35px;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.3);
    transition: all 0.4s;
}

.premium-philosophy-card:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.philosophy-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.15), transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: rgba(102, 126, 234, 0.1);
    font-family: serif;
    line-height: 1;
}

.philosophy-content {
    position: relative;
    z-index: 2;
}

.philosophy-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.philosophy-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #f093fb);
    border-radius: 2px;
    margin-bottom: 20px;
}

.philosophy-subtitle {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f093fb 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.philosophy-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.bold-highlight {
    color: #f093fb;
    font-weight: 700;
}

.philosophy-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #667eea;
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 4s infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 70%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 40%; left: 60%; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; left: 30%; animation-delay: 3s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    50% { transform: translate(10px, -10px); opacity: 1; }
}

/* Affiliate CTA */
.affiliate-premium {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 50px 40px;
    overflow: hidden;
    margin-top: 60px;
}

.affiliate-bg-animation {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.05) 20px, rgba(255,255,255,0.05) 40px);
    animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

.affiliate-content {
    position: relative;
    z-index: 2;
}

.affiliate-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.affiliate-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.money-emoji {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.affiliate-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.commission-highlight {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fbbf24;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
}

.affiliate-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.affiliate-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.check-circle {
    color: #4ade80;
    font-weight: 700;
}

/* Premium CTA Button */
.premium-cta-btn {
    position: relative;
    padding: 18px 40px;
    background: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #667eea;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.premium-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon-wrapper {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s;
}

.premium-cta-btn:hover .btn-icon-wrapper {
    transform: translateX(5px);
}

.btn-arrow {
    font-size: 1.2rem;
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.premium-cta-btn:hover .btn-glow {
    transform: translateX(100%);
}

.affiliate-note {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    font-size: 0.9rem;
}

.sparkle {
    display: inline-block;
    animation: sparkle 1.5s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-heading {
        font-size: 2rem;
    }
    
    .stats-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-mission-card,
    .premium-vision-card {
        padding: 20px;
    }
    
    .philosophy-title {
        font-size: 1.5rem;
    }
    
    .philosophy-subtitle {
        font-size: 1.5rem;
    }
    
    .affiliate-title {
        font-size: 2rem;
    }
    
    .affiliate-premium {
        padding: 30px 20px;
    }
    
    .premium-cta-btn {
        width: 100%;
        margin-top: 20px;
    }
}
/* ===== PREMIUM SERVICES SECTION ===== */
.premium-services {
    position: relative;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Animated Background */
.services-bg-animation {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #667eea, transparent);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #764ba2, transparent);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #f093fb, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Section Header */
.section-header {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 100px;
    color: #a8b8ff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.title-highlight {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

/* Service Premium Card */
.service-premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    cursor: pointer;
}

.service-premium-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-inner {
    position: relative;
    z-index: 2;
}

.card-border-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
                               rgba(102, 126, 234, 0.3) 0%, 
                               transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-premium-card:hover .card-border-glow {
    opacity: 1;
}

/* Service Icon */
.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.service-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    transition: all 0.3s;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.service-premium-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
}

.icon-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.2), transparent);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-premium-card:hover .icon-glow {
    opacity: 1;
}

/* Service Content */
.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.service-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 5px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-features .check {
    color: #4ade80;
    margin-right: 10px;
    font-weight: 700;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-link .arrow {
    transition: transform 0.3s;
}

.service-link:hover {
    color: #f093fb;
    gap: 12px;
}

.service-link:hover .arrow {
    transform: translateX(5px);
}

/* Featured Card */
.service-premium-card.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.5);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 100px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

/* Elite Card */
.service-premium-card.elite {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(240, 147, 251, 0.3);
}

.elite-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 100px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

/* Values Section */
.values-premium {
    position: relative;
    z-index: 2;
    margin-top: 80px;
}

.values-header {
    margin-bottom: 50px;
}

.values-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.values-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.values-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Value Premium Card */
.value-premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.value-premium-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s;
}

.value-premium-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
}

.icon-emoji {
    font-size: 2rem;
}

.value-premium-card h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-premium-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.value-hover-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(102, 126, 234, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.value-premium-card:hover .value-hover-effect {
    opacity: 1;
}

/* Highlight Value Card */
.value-premium-card.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(240, 147, 251, 0.15) 100%);
    border: 2px solid rgba(102, 126, 234, 0.5);
}

.value-premium-card.highlight .value-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.value-premium-card.highlight .icon-emoji {
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .service-premium-card {
        padding: 25px 20px;
    }
}
/* ===== PREMIUM PLANS SECTION ===== */
.premium-plans {
    position: relative;
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
    overflow: hidden;
}

.plans-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(0,0,0,0.01) 0px, rgba(0,0,0,0.01) 2px, 
                                  transparent 2px, transparent 8px);
    pointer-events: none;
}

/* Plans Header */
.plans-header {
    margin-bottom: 40px;
}

.plans-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 100px;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-star {
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.plans-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.title-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plans-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
}

/* Billing Switcher */
.billing-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 10px;
    background: white;
    border-radius: 100px;
    display: inline-flex;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.billing-label {
    font-weight: 600;
    color: #6c757d;
    transition: color 0.3s;
}

.billing-label.active {
    color: #667eea;
}

.save-tag {
    margin-left: 8px;
    padding: 3px 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 100px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e0e0e0;
    border-radius: 30px;
    transition: 0.3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Plan Premium Card */
.plan-premium-card {
    position: relative;
    background: white;
    border-radius: 30px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
}

.plan-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Popular Card */
.plan-premium-card.popular {
    background: linear-gradient(135deg, white 0%, #f8f9ff 100%);
    border: 2px solid #667eea;
    transform: scale(1.05);
}

.plan-premium-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Diamond Card */
.plan-premium-card.diamond {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(240, 147, 251, 0.3);
}

.plan-premium-card.diamond .plan-name,
.plan-premium-card.diamond .plan-features li {
    color: rgba(255, 255, 255, 0.9);
}

.plan-premium-card.diamond .plan-price {
    color: white;
}

.diamond-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 15px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 100px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    flex-wrap: wrap;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #667eea;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}
.amount1{
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}
.period {
    font-size: 0.9rem;
    color: #6c757d;
}

.original-price {
    width: 100%;
    margin-top: 5px;
}

.original-price del {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Plan Body */
.plan-body {
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 10px 0;
    color: #495057;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.plan-features .check {
    color: #4ade80;
    font-weight: 700;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Plan Footer */
.plan-footer {
    text-align: center;
}

.plan-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-diamond {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(240, 147, 251, 0.3);
}

.btn-diamond:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 147, 251, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .plans-title {
        font-size: 2.5rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-premium-card.popular {
        transform: scale(1);
    }
    
    .plan-premium-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .billing-switcher {
        width: 90%;
    }
}
/* ===== PREMIUM AUDIENCE SECTION ===== */
.premium-audience {
    position: relative;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
    overflow: hidden;
}

.audience-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #667eea, transparent);
    top: -200px;
    left: -200px;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #f093fb, transparent);
    bottom: -150px;
    right: -150px;
}

/* Audience Header */
.audience-header {
    margin-bottom: 50px;
}

.audience-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 100px;
    color: #a8b8ff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.audience-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.title-underline {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #f093fb);
    border-radius: 3px;
}

.audience-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Audience Premium Card */
.audience-premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.audience-premium-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #667eea, #f093fb, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.audience-premium-card:hover .card-decoration {
    opacity: 1;
}

/* Audience Icon */
.audience-icon {
    margin-bottom: 25px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s;
}

.icon-circle span {
    font-size: 2.5rem;
}

.audience-premium-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
}

/* Audience Content */
.audience-premium-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.audience-premium-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-stats {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 100px;
    color: #667eea;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Featured Audience Card */
.audience-premium-card.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.5);
}

.featured-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1), transparent);
    animation: glowPulse 3s ease-in-out infinite;
}

.icon-circle.featured-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.icon-circle.featured-icon span {
    filter: brightness(0) invert(1);
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Contact Section */
.contact-premium {
    margin-top: 80px;
}

.contact-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-info {
    padding: 50px 40px;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.contact-header {
    margin-bottom: 40px;
}

.contact-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(102, 126, 234, 0.15);
    border-radius: 100px;
    color: #a8b8ff;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.contact-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.contact-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Features */
.contact-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.feature-text h6 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.02);
    height: 100%;
}

.premium-contact-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.floating {
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.form-label {
    position: absolute;
    left: 0;
    top: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    transition: all 0.3s;
    pointer-events: none;
    z-index: 1;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    font-size: 0.8rem;
    color: #667eea;
}

.form-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.form-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #f093fb);
    transition: width 0.3s;
}

.form-input:focus ~ .form-border::after {
    width: 100%;
}

/* Submit Button */
.submit-btn {
    position: relative;
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.submit-btn span {
    position: relative;
    z-index: 2;
}

.btn-arrow {
    margin-left: 10px;
    transition: transform 0.3s;
    display: inline-block;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-shine {
    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.6s;
}

.submit-btn:hover .btn-shine {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .audience-title {
        font-size: 2.5rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-header h3 {
        font-size: 2rem;
    }
}
/* ===== PREMIUM NAVBAR - FULLY FIXED ===== */

/* Base Navbar Styles */
.navbar-premium {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 12px 0 !important;
    background: rgba(10, 15, 30, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
}

/* Background Animation */
.navbar-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.navbar-glow {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    animation: navbarGlow 8s ease-in-out infinite;
}

@keyframes navbarGlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(5%, 2%) rotate(1deg); }
    66% { transform: translate(-3%, -1%) rotate(-1deg); }
}

/* Logo */
.navbar-brand-premium {
    display: flex !important;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.navbar-brand-premium:hover {
    text-decoration: none !important;
}

.logo-wrapper {
    position: relative;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.3));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.logo-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlowPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes logoGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Toggle Button */
.navbar-toggler-premium {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    background: rgba(102, 126, 234, 0.1) !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler-premium:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2) !important;
}

.navbar-toggler-premium:hover {
    background: rgba(102, 126, 234, 0.2) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
}

.toggler-icon {
    position: relative;
    width: 22px;
    height: 18px;
    display: block;
}

.line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
    left: 0;
}

.line-1 { top: 0; }
.line-2 { top: 50%; transform: translateY(-50%); }
.line-3 { bottom: 0; }

/* Toggle Animation when expanded */
.navbar-toggler-premium[aria-expanded="true"] .line-1 {
    transform: rotate(45deg) translate(5px, 6px);
}

.navbar-toggler-premium[aria-expanded="true"] .line-2 {
    opacity: 0;
    transform: translateX(-20px);
}

.navbar-toggler-premium[aria-expanded="true"] .line-3 {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Navigation Collapse - Desktop */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto !important;
        justify-content: flex-end !important;
    }
    
    .navbar-nav-premium {
        display: flex !important;
        flex-direction: row !important;
        gap: 5px;
        list-style: none;
        padding: 0;
        margin: 0 auto !important;
    }
    
    .navbar-actions {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 8px;
        margin-left: 20px;
    }
    .navbar-toggler-premium{
        display: none !important;
    }
}

/* Navigation Menu Items */
.navbar-nav-premium {
    display: flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item-premium {
    position: relative;
}

.nav-link-premium {
    position: relative;
    display: block;
    padding: 10px 18px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    border-radius: 12px;
    white-space: nowrap;
}

.nav-link-premium:hover {
    color: white !important;
    background: rgba(102, 126, 234, 0.1);
}

.nav-link-premium.active {
    color: white !important;
    background: rgba(102, 126, 234, 0.15);
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Action Buttons */
.action-btn {
    position: relative;
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1) !important;
    border: 1px solid rgba(102, 126, 234, 0.2) !important;
    border-radius: 12px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.action-btn:hover {
    background: rgba(102, 126, 234, 0.2) !important;
    border-color: rgba(102, 126, 234, 0.4) !important;
    color: white !important;
    transform: translateY(-2px);
}

.action-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.action-btn:hover .action-icon {
    transform: scale(1.1);
}

/* Notification Badge */
.notification-btn {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 9px;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(10, 15, 30, 0.95);
}

/* Divider */
.action-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(102, 126, 234, 0.3), transparent);
    margin: 0 5px;
}

/* Login Button */
.btn-login-premium {
    position: relative;
    padding: 10px 20px !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    font-weight: 500;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-login-premium:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    transform: translateY(-2px);
    text-decoration: none !important;
}

.btn-login-premium .btn-text {
    position: relative;
    z-index: 2;
}

.btn-login-premium .btn-icon {
    transition: transform 0.3s;
}

.btn-login-premium:hover .btn-icon {
    transform: translateX(3px);
}

/* Enroll Button */
.btn-enroll-premium {
    position: relative;
    padding: 10px 24px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 12px !important;
    color: white !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    white-space: nowrap;
}

.btn-enroll-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white !important;
    text-decoration: none !important;
}

/* Progress Bar */
.navbar-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transition: width 0.3s;
}

/* Scrolled State */
.navbar-premium.scrolled {
    padding: 8px 0 !important;
    background: rgba(10, 15, 30, 0.98) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile Styles */
@media (max-width: 991px) {
    .navbar-premium {
        padding: 10px 0 !important;
    }
    
    .navbar-collapse {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(10, 15, 30, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px !important;
        border-bottom: 1px solid rgba(102, 126, 234, 0.2);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }
    
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-nav-premium {
        flex-direction: column !important;
        gap: 5px !important;
        margin: 10px 0 !important;
        width: 100% !important;
    }
    
    .nav-item-premium {
        width: 100% !important;
    }
    
    .nav-link-premium {
        padding: 12px 20px !important;
        width: 100% !important;
        white-space: normal !important;
    }
    
    .navbar-actions {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-top: 20px !important;
        padding-top: 20px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        width: 100% !important;
    }
    
    .action-divider {
        display: none !important;
    }
    
    .btn-login-premium,
    .btn-enroll-premium {
        flex: 1 !important;
        justify-content: center !important;
        min-width: 120px !important;
    }
    
    .brand-text {
        font-size: 1.1rem !important;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .navbar-brand-premium {
        gap: 8px !important;
    }
    
    .logo-wrapper {
        width: 40px !important;
        height: 40px !important;
    }
    
    .brand-text {
        font-size: 1rem !important;
    }
    
    .action-btn {
        width: 38px !important;
        height: 38px !important;
    }
    
    .btn-login-premium,
    .btn-enroll-premium {
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
    }
}

/* Fix Bootstrap Overrides */
.navbar {
    --bs-navbar-padding-y: 0 !important;
    --bs-navbar-padding-x: 0 !important;
}

.navbar-nav {
    --bs-nav-link-padding-x: 0 !important;
    --bs-nav-link-padding-y: 0 !important;
}

/* ===== SITE FOOTER ===== */
.site-footer {
    position: relative;
    background:
        radial-gradient(circle at 14% 6%, rgba(255, 193, 7, 0.16), transparent 24%),
        radial-gradient(circle at 88% 16%, rgba(20, 184, 166, 0.14), transparent 28%),
        linear-gradient(135deg, #071014 0%, #101827 48%, #070b12 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    padding: 46px 0 26px;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px);
    opacity: 0.45;
    pointer-events: none;
}

.footer-accent {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(4px);
}

.footer-accent-one {
    width: 220px;
    height: 220px;
    right: -90px;
    top: -90px;
    border: 1px solid rgba(45, 212, 191, 0.24);
}

.footer-accent-two {
    width: 120px;
    height: 120px;
    left: 5%;
    bottom: 18px;
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.footer-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    margin-bottom: 42px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.footer-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: #facc15;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-cta h5 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.3;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: #facc15;
    color: #0f172a;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 12px 34px rgba(250, 204, 21, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-cta-btn:hover {
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 16px 42px rgba(250, 204, 21, 0.34);
}

.site-footer-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(250px, 1.2fr) minmax(130px, 0.55fr) minmax(150px, 0.65fr) minmax(280px, 1fr);
    gap: 34px;
    z-index: 1;
}

.footer-column h6 {
    color: white;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.footer-logo-mark::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.42), rgba(45, 212, 191, 0.34));
    opacity: 0.35;
    z-index: -1;
}

.footer-logo-mark img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
    margin: 0;
    max-width: 360px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.footer-socials a:hover {
    background: rgba(45, 212, 191, 0.16);
    border-color: rgba(45, 212, 191, 0.36);
    color: #5eead4;
    transform: translateY(-2px);
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact address {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    line-height: 1.55;
    margin: 0;
}

.footer-contact a,
.footer-contact address {
    display: grid;
    grid-template-columns: 98px 1fr;
    gap: 12px;
}

.footer-contact span {
    color: #5eead4;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-contact span i {
    margin-right: 6px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #5eead4;
}

.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.9rem;
    z-index: 1;
}

@media (max-width: 992px) {
    .site-footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .footer-cta {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 14px;
    }

    .footer-cta-btn {
        width: 100%;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-contact a,
    .footer-contact address {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ===== CUSTOMER REVIEWS ===== */
.reviews-premium {
    position: relative;
    padding-top: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.review-card,
.review-empty {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 28px;
    min-height: 260px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(102, 126, 234, 0.45);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.review-text {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
}

.review-author h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.review-author span,
.review-empty p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

.review-empty {
    grid-column: 1 / -1;
    min-height: auto;
    text-align: center;
}

.review-empty h4 {
    color: white;
    font-weight: 700;
}

.review-form-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.review-form-copy {
    height: 100%;
    padding: 44px 36px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
}

.review-form-copy h3 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.review-form-copy p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.review-form {
    padding: 44px 36px;
}

.review-select {
    cursor: pointer;
}

.form-label-static {
    top: -10px;
    font-size: 0.8rem;
    color: #667eea;
}

.review-textarea {
    min-height: 120px;
    resize: vertical;
}

@media (max-width: 768px) {
    .review-form,
    .review-form-copy {
        padding: 30px 20px;
    }

    .review-card,
    .review-empty {
        padding: 24px;
    }
}

/* ===== TESTIMONIALS SHOWCASE ===== */
.testimonials-showcase {
    position: relative;
    padding: 82px 0 92px;
    background:
        radial-gradient(circle at 18% 10%, rgba(249, 115, 22, 0.11), transparent 24%),
        radial-gradient(circle at 78% 12%, rgba(59, 130, 246, 0.1), transparent 26%),
        linear-gradient(180deg, #070b12 0%, #0a0f18 100%);
    color: #ffffff;
    overflow: hidden;
}

.testimonials-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 20px);
    pointer-events: none;
}

.testimonials-header {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

.testimonials-header h2 {
    margin: 16px 0 12px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 900;
    line-height: 1.08;
}

.testimonials-header p {
    margin: 0 auto;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    line-height: 1.7;
}

.testimonials-stage {
    position: relative;
    z-index: 2;
    width: 100%;
}

.testimonials-marquee {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    padding: 18px max(24px, calc((100vw - 1140px) / 2)) 8px;
    width: max-content;
    animation: testimonialsMarquee 38s linear infinite;
    will-change: transform;
}

.testimonials-marquee:hover .testimonials-track {
    animation-play-state: paused;
}

@keyframes testimonialsMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 400px;
    min-height: 336px;
    padding: 34px 36px;
    overflow: hidden;
    font-size: 0.80rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(14px);
}

.testimonial-stars {
    color: #f97316;
    font-size: 0.80rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.testimonial-quote {
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.80rem;
    font-style: italic;
    font-weight: 650;
    line-height: 1.75;
    margin: 0 0 28px;
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial-author h3 {
    margin: 0;
    color: #ffffff;
    font-size: 0.80rem;
    font-weight: 850;
}

.testimonial-author span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.80rem;
}

.testimonial-author span i {
    color: #ec4899;
}

.testimonial-course-pill {
    align-self: flex-start;
    max-width: 100%;
    margin-top: 14px;
    padding: 6px 14px;
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, 0.24);
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    font-size: 0.80rem;
    font-weight: 900;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.testimonials-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(14vw, 180px);
    z-index: 3;
    pointer-events: none;
}

.testimonials-fade-left {
    left: 0;
    background: linear-gradient(90deg, #070b12 0%, rgba(7, 11, 18, 0) 100%);
}

.testimonials-fade-right {
    right: 0;
    background: linear-gradient(270deg, #070b12 0%, rgba(7, 11, 18, 0) 100%);
}

.testimonial-empty {
    position: relative;
    z-index: 2;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
    text-align: center;
}

.testimonial-empty h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-weight: 800;
}

.testimonial-empty p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 768px) {
    .testimonials-showcase {
        padding: 62px 0 70px;
    }

    .testimonials-track {
        gap: 18px;
        padding-inline: 18px;
        animation-duration: 30s;
    }

    .testimonial-card {
        flex-basis: 282px;
        min-height: 320px;
        padding: 28px 24px;
        border-radius: 20px;
    }

    .testimonials-fade {
        display: none;
    }
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-page {
    background: #0a0a0f;
}

.product-hero {
    position: relative;
    padding: 150px 0 80px;
    background:
        radial-gradient(circle at 18% 12%, rgba(102, 126, 234, 0.22), transparent 30%),
        radial-gradient(circle at 82% 20%, rgba(240, 147, 251, 0.16), transparent 28%),
        linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    color: white;
    overflow: hidden;
}

.product-back-link,
.product-secondary-link {
    display: inline-flex;
    color: #a8b8ff;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 22px;
}

.product-back-link:hover,
.product-secondary-link:hover {
    color: white;
}

.product-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 20px 0;
}

.product-subtitle {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.2rem;
    line-height: 1.7;
}

.product-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 34px;
}

.product-buy-btn,
.product-buy-link {
    width: auto;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.product-buy-link:hover {
    color: white;
}

.product-summary-card,
.product-info-panel {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 34px;
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.summary-label {
    color: #a8b8ff;
    font-weight: 700;
    margin-bottom: 12px;
}

.summary-price {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: white;
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1;
}

.summary-price .currency {
    font-size: 1.2rem;
    margin-top: 8px;
}

.product-summary-card p,
.product-info-panel p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 26px 0;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, 0.68);
    padding: 12px 0;
}

.summary-row strong {
    color: white;
}

.summary-row a,
.contact-feature a {
    color: inherit;
    text-decoration: none;
}

.summary-row a:hover,
.contact-feature a:hover {
    color: #a8b8ff;
}

.summary-address {
    align-items: flex-start;
}

.summary-address strong {
    max-width: 260px;
    text-align: right;
    line-height: 1.5;
}

.product-content-section,
.product-reviews-section {
    background: #0a0a0f;
    color: white;
    padding: 80px 0;
}

.product-info-panel h2 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin: 18px 0 14px;
}

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 16px;
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.18);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
}

.product-outcome-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.product-outcome-list li {
    color: rgba(255, 255, 255, 0.72);
    padding: 14px 0 14px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.product-outcome-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 800;
}

.product-not-found {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.product-not-found h1 {
    font-size: 3rem;
    font-weight: 900;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .product-hero {
        padding: 120px 0 56px;
    }

    .product-summary-card,
    .product-info-panel {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .summary-price {
        font-size: 2.6rem;
    }

    .product-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .product-buy-btn,
    .product-buy-link {
        width: 100%;
    }
}
