/* Premium Social Media Hero Section - 11/10 Design */

/* Hero Container */
.premium-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f1419 25%, #1a1a2e 50%, #16213e 75%, #0f1419 100%);
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

/* Subtle animated background pattern */
.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(79, 172, 254, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 242, 254, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(79, 172, 254, 0.02) 0%, transparent 50%);
    animation: subtle-pulse 8s ease-in-out infinite alternate;
}

@keyframes subtle-pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Hero Content Container */
.premium-hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
    animation: fade-in-up 1s ease-out;
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 172, 254, 0.25); /* Increased from 0.1 to 0.25 for better contrast */
    border: 1px solid rgba(79, 172, 254, 0.5); /* Increased from 0.3 to 0.5 for better visibility */
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff; /* Changed from #4facfe to white for much better contrast */
    margin-bottom: 40px;
    margin-top: 60px; /* Increased top margin for more breathing room */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    animation: badge-glow 3s ease-in-out infinite alternate;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); /* Added text shadow for better readability */
}

.premium-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3); /* Slightly increased glow on hover */
}

@keyframes badge-glow {
    0% { box-shadow: 0 0 20px rgba(79, 172, 254, 0.15); } /* Slightly increased glow */
    100% { box-shadow: 0 0 30px rgba(79, 172, 254, 0.25); } /* Slightly increased glow */
}

/* Main Headlines */
.premium-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* Blue Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #4facfe 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shimmer 4s ease-in-out infinite;
    display: inline-block;
}

/* Hero Subtitle - Higher specificity */
.premium-hero .premium-hero-content .premium-hero-subtitle,
.premium-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
    font-weight: 400;
    line-height: 1.6;
    color: #a0aec0;
    margin-bottom: 48px;
    max-width: 900px !important; /* Much wider than hero text for better flow to 3 lines */
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 32px !important; /* Increased left/right padding for better breathing room */
    width: 100% !important;
}

/* Standout first sentence styling */
.premium-hero-subtitle .standout-sentence {
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 600;
    color: #ffffff;
    display: block;
    margin-bottom: 16px;
    line-height: 1.4;
}

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

/* Hero Subtitle */
.premium-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    color: #a0aec0;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 32px; /* Increased left/right padding for better breathing room */
}

/* Hero Subtitle */
.premium-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    color: #a0aec0;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.premium-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.premium-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

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

.premium-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.4);
}

.premium-cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element-2 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element-3 {
    bottom: 20%;
    left: 12%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(2deg); }
    66% { transform: translateY(10px) rotate(-2deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-hero {
        padding: 0 16px;
        min-height: 90vh;
    }
    
    .premium-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
        margin-bottom: 32px;
    }
    
    .premium-hero h1 {
        margin-bottom: 20px;
    }
    
    .premium-hero-subtitle {
        margin-bottom: 40px;
        font-size: 1rem;
    }
    
    .premium-cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .premium-hero {
        padding: 0 12px;
    }
    
    .premium-hero-content {
        max-width: 100%;
    }
    
    .premium-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    
    .premium-cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Ultra-premium hover effects */
.premium-hero-content:hover .gradient-text {
    animation-duration: 2s;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .premium-hero::before,
    .gradient-text,
    .badge-glow,
    .float,
    .fade-in-up,
    .subtle-pulse {
        animation: none;
    }
    
    .premium-cta-button:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .premium-badge {
        background: rgba(79, 172, 254, 0.2);
        border: 2px solid #4facfe;
    }
    
    .premium-hero-subtitle {
        color: #e2e8f0;
    }
}

/* ===== PRICING SECTION STYLES ===== */

/* Pricing Container */
.pricing-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    align-items: flex-start; /* Ensure both cards start at the same top position */
}

/* Individual Pricing Cards */
.pricing-card {
    flex: 1;
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(79, 172, 254, 0.2);
    border-color: rgba(79, 172, 254, 0.4);
}

/* Plan Badges - Ensure consistent positioning */
.pricing-container .plan-badge {
    position: absolute;
    top: -18px; /* Optimized positioning for alignment across both cards */
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 10;
}

.essential-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Premium badge for pricing card - renamed to avoid conflict with hero section */
.premium-badge-pricing {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation: premium-pulse 3s ease-in-out infinite alternate;
}

@keyframes premium-pulse {
    0% { box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3); }
    100% { box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5); }
}

/* Plan Title */
.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 16px;
}

/* Plan Price */
.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4facfe;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1;
}

/* Plan Description */
.plan-description {
    color: #cbd5e0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 32px;
    padding: 0 8px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.features-list li {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.features-list li strong {
    color: #ffffff;
    font-weight: 600;
}

/* Ideal For Section */
.ideal-for {
    background: rgba(79, 172, 254, 0.05);
    border: 1px solid rgba(79, 172, 254, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}

.ideal-for h4 {
    color: #4facfe;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ideal-for ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ideal-for ul li {
    color: #cbd5e0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.ideal-for ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
}

/* CTA Button */
.cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    text-align: center;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 32px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
    text-decoration: none;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        gap: 40px;
        margin: 40px auto;
        padding: 0 16px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .plan-price {
        font-size: 2rem;
    }
}