/* =====================================================
   Dark Premium Landing Page CSS - Following Design.json
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@400;500;600;700;800&display=swap');

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0A0A0F; /* background.darkest */
    color: #FFFFFF; /* text.primary */
    line-height: 1.6;
    overflow-x: hidden;
}

/* CONTAINER & LAYOUT */
.container {
    max-width: 1280px; /* layout.maxWidth */
    margin: 0 auto;
    padding: 0 48px; /* containerPadding.desktop */
}

@media (max-width: 1024px) {
    .container {
        padding: 0 32px; /* containerPadding.tablet */
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px; /* containerPadding.mobile */
    }
}

/* TYPOGRAPHY SCALE - Following Design.json exactly */
.hero-title {
    font-size: 56px; /* typography.scale.hero.fontSize */
    line-height: 64px; /* typography.scale.hero.lineHeight */
    font-weight: 800; /* typography.scale.hero.fontWeight */
    letter-spacing: -0.03em; /* typography.scale.hero.letterSpacing */
    color: #FFFFFF;
    margin-bottom: 24px;
}

h1 {
    font-size: 48px; /* typography.scale.h1.fontSize */
    line-height: 56px; /* typography.scale.h1.lineHeight */
    font-weight: 700; /* typography.scale.h1.fontWeight */
    letter-spacing: -0.02em; /* typography.scale.h1.letterSpacing */
}

h2 {
    font-size: 36px; /* typography.scale.h2.fontSize */
    line-height: 44px; /* typography.scale.h2.lineHeight */
    font-weight: 700; /* typography.scale.h2.fontWeight */
    letter-spacing: -0.01em; /* typography.scale.h2.letterSpacing */
    color: #FFFFFF;
}

h3 {
    font-size: 24px; /* typography.scale.h3.fontSize */
    line-height: 32px; /* typography.scale.h3.lineHeight */
    font-weight: 600; /* typography.scale.h3.fontWeight */
    color: #FFFFFF;
}

h4 {
    font-size: 20px; /* typography.scale.h4.fontSize */
    line-height: 28px; /* typography.scale.h4.lineHeight */
    font-weight: 600; /* typography.scale.h4.fontWeight */
    color: #FFFFFF;
}

h5 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

p {
    font-size: 16px; /* typography.scale.body.fontSize */
    line-height: 24px; /* typography.scale.body.lineHeight */
    font-weight: 400; /* typography.scale.body.fontWeight */
    color: #B8B8C8; /* text.secondary */
}

/* BUTTON COMPONENTS - Updated with Gradient Labs brand colors */
.btn-primary {
    background: #fb32bc; /* Gradient Labs primary brand color */
    color: #FFFFFF; /* components.button.primary.color */
    padding: 16px 32px; /* components.button.primary.padding */
    border-radius: 8px; /* components.button.primary.borderRadius */
    font-size: 16px; /* components.button.primary.fontSize */
    font-weight: 600; /* components.button.primary.fontWeight */
    border: none;
    cursor: pointer;
    transition: all 0.2s ease; /* components.button.primary.transition */
    box-shadow: 0 4px 14px rgba(251, 50, 188, 0.3); /* Gradient Labs primary shadow */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #fc5ec9; /* Gradient Labs primary light hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 50, 188, 0.4);
}

.btn-secondary {
    background: transparent; /* components.button.secondary.background */
    border: 2px solid #be38f8; /* Gradient Labs secondary color */
    color: #be38f8; /* Gradient Labs secondary color */
    padding: 14px 30px; /* components.button.secondary.padding */
    border-radius: 8px; /* components.button.secondary.borderRadius */
    font-size: 16px; /* components.button.secondary.fontSize */
    font-weight: 600; /* components.button.secondary.fontWeight */
    cursor: pointer;
    transition: all 0.2s ease; /* components.button.secondary.transition */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #be38f8;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 48px; /* components.button.large.padding */
    font-size: 18px; /* components.button.large.fontSize */
    border-radius: 12px; /* components.button.large.borderRadius */
}

/* BADGE COMPONENT - Following Design.json specifications */
.badge {
    padding: 6px 12px; /* components.badge.padding */
    border-radius: 6px; /* components.badge.borderRadius */
    font-size: 12px; /* components.badge.fontSize */
    font-weight: 600; /* components.badge.fontWeight */
    text-transform: uppercase; /* components.badge.textTransform */
    letter-spacing: 0.05em; /* components.badge.letterSpacing */
    display: inline-block;
}

.badge-primary {
    background: rgba(251, 50, 188, 0.2); /* Gradient Labs primary with opacity */
    color: #fb32bc; /* Gradient Labs primary color */
}

.badge-success {
    background: rgba(16, 185, 129, 0.2); /* components.badge.variants.success.background */
    color: #10B981; /* components.badge.variants.success.color */
}

/* VSL HERO SECTION - Video Sales Letter Layout */
.vsl-hero-section {
    background: radial-gradient(circle at top center, rgba(251, 50, 188, 0.08) 0%, rgba(190, 56, 248, 0.05) 30%, #0A0A0F 60%);
    padding: 40px 0 80px 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Assessment Icon Badge - Hero Section */
.assessment-icon-badge {
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    width: 70%; /* Stretch to 70% of the viewport width */
    max-width: 800px; /* Set a max-width for large screens */
    height: 80px; /* Fixed height for the banner */
    margin: 0 auto 32px; /* Center banner and add margin */
    background: rgba(251, 50, 188, 0.1);
    border-radius: 20px; /* Banner border radius */
    box-shadow: 0 8px 32px rgba(251, 50, 188, 0.2);
}

.assessment-icon {
    height: 64px; /* Increased height for a larger icon */
    width: auto; /* Maintain aspect ratio */
}

/* Centered Logo */
.vsl-logo {
    margin-bottom: 32px;
    text-align: center;
}

.vsl-logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.vsl-logo img:hover {
    transform: scale(1.05);
}

/* Assessment Specific Styles */
.assessment-subtitle {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .assessment-subtitle {
        font-size: 24px;
        line-height: 32px;
    }
}

/* Social Proof Avatars */
.vsl-social-proof {
    margin-bottom: 48px;
    text-align: center;
}

.avatar-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -8px;
    margin-bottom: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #fb32bc;
    margin-left: -8px;
    transition: all 0.3s ease;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: scale(1.1);
    z-index: 10;
    position: relative;
}

.vsl-social-proof .social-proof-text {
    font-size: 14px;
    color: #B8B8C8;
    font-weight: 500;
}

/* VSL Content Styles */
.vsl-content {
    max-width: 800px;
    margin: 0 auto;
}

.vsl-badge {
    margin-bottom: 24px;
}

.vsl-badge .badge {
    background: rgba(251, 50, 188, 0.15);
    color: #fb32bc;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 20px;
}

.vsl-headline {
    font-size: 52px;
    line-height: 60px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.02em;
}

.vsl-headline .highlight {
    color: #fb32bc;
    position: relative;
}

.vsl-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fb32bc 0%, #be38f8 100%);
    border-radius: 2px;
    opacity: 0.7;
}

.vsl-subtext {
    font-size: 20px;
    line-height: 30px;
    color: #B8B8C8;
    margin-bottom: 48px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Player Styles */
.vsl-video-container {
    margin-bottom: 40px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-player {
    position: relative;
    aspect-ratio: 16/9;
    background: #12121A;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-player:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Video Element */
.video-player video {
    border-radius: 16px;
    background: #12121A;
    position: relative;
    z-index: 1;
}

/* Thumbnail Overlay */
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: all;
    background: linear-gradient(135deg, #1A1A24 0%, #12121A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide thumbnail when playing */
.video-player.playing .video-thumbnail {
    display: none !important;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fb32bc 0%, #be38f8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #FFFFFF;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(251, 50, 188, 0.4);
}

.video-player:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(251, 50, 188, 0.6);
}

.play-button i {
    margin-left: 4px; /* Center the play icon */
}

.video-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
}

.video-text {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Video duration styles removed - using native browser controls */

/* CTA Styles */
.vsl-cta {
    text-align: center;
}

.btn-vsl {
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    background: #fb32bc;
    box-shadow: 0 6px 24px rgba(251, 50, 188, 0.4);
    text-align: center;
    display: inline-block;
}

.btn-vsl:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(251, 50, 188, 0.5);
}

.cta-subtext {
    font-size: 14px;
    color: #B8B8C8;
    margin-top: 16px;
    font-style: italic;
}

/* Tell Me More Section */
.tell-me-more-section {
    padding: 40px 0;
    text-align: center;
}

.btn-tell-more {
    background: transparent;
    border: 2px solid #be38f8;
    color: #be38f8;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-tell-more:hover {
    background: #be38f8;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(190, 56, 248, 0.4);
}

/* Mobile Responsive VSL */
@media (max-width: 768px) {
    .vsl-hero-section {
        padding: 40px 0 60px 0;
        min-height: 80vh;
    }

    .vsl-headline {
        font-size: 32px;
        line-height: 40px;
    }

    /* Remove title underline on mobile for cleaner look */
    .vsl-headline .highlight::after {
        display: none;
    }

    .vsl-subtext {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 32px;
        padding: 0 8px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .btn-vsl {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .avatar-group {
        gap: -4px;
        justify-content: center;
    }

    .avatar {
        width: 40px;
        height: 40px;
        margin-left: -4px;
    }

    /* Mobile Assessment Icon Adjustments */
    .assessment-icon-badge {
        width: 90%;
        max-width: 400px;
        height: 60px;
        margin: 0 auto 24px;
    }
    .assessment-icon {
        height: 48px;
    }

    .pricing-assessment-icon {
        width: 70px;
        height: 70px;
        padding: 8px;
    }
    
    /* Ensure video container is responsive */
    .vsl-video-container {
        margin: 32px auto;
        max-width: 100%;
        padding: 0 8px;
    }
    
    .video-player {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* SKILLS SECTION - Enhanced for Assessment */
.skills-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0A0A0F 0%, #0F0F18 50%, #0A0A0F 100%);
    position: relative;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(251, 50, 188, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Flexbox layout for skills content */
.skills-content {
    display: flex;
    align-items: center;
    gap: 80px;
    min-height: 600px;
}

/* Text content (left side) */
.skills-image {
    flex: 1;
    /* Placeholder for potential image */
}

.skills-text {
    flex: 1;
    text-align: center;
}

.skills-headline {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.skills-subtext {
    color: #B8B8C8;
    max-width: 800px;
    margin: 16px auto 0;
    font-size: 18px;
    line-height: 1.7;
}

.skills-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.skill-box {
    background: #14141E; /* background.darker */
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: left;
}

.skill-box:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(251, 50, 188, 0.3);
    box-shadow: 0 20px 40px rgba(251, 50, 188, 0.1);
}

.skill-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fb32bc 0%, #be38f8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(251, 50, 188, 0.3);
}

.skill-icon i {
    color: #FFFFFF;
    font-size: 24px;
}

.skill-box h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.skill-box p {
    font-size: 16px;
    line-height: 24px;
    color: #B8B8C8;
}

.skills-cta {
    text-align: center;
}

.btn-join {
    background: linear-gradient(135deg, #fb32bc 0%, #be38f8 100%);
    color: #FFFFFF;
    padding: 18px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(251, 50, 188, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(251, 50, 188, 0.5);
}

/* Experience Section - New styles for assessment */
.experience-section {
    padding: 80px 0;
    background: #0A0A0F;
    text-align: center;
}

/* Experience Stats - Top Row Style */
.experience-stats-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin: 48px 0 80px 0;
    text-align: center;
}

.top-stat-item {
    position: relative;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fb32bc 0%, #be38f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    font-weight: 400;
    color: #B8B8C8;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}

/* Hero Photo Section - Large, impactful presentation */
.hero-photo-section {
    text-align: center;
    margin: 80px 0 40px 0;
    position: relative;
}

.hero-photo-container {
    position: relative;
    display: inline-block;
    max-width: 700px;
    width: 100%;
}

.hero-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.3), 
                0 20px 60px rgba(251, 50, 188, 0.1);
    transition: all 0.4s ease;
    filter: brightness(1.1) contrast(1.1);
}

.hero-photo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 60px 160px rgba(0, 0, 0, 0.4), 
                0 30px 80px rgba(251, 50, 188, 0.15);
}

/* Hero Caption */
.hero-caption {
    margin-top: 40px;
    text-align: center;
}

.hero-caption p {
    color: #B8B8C8;
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .experience-stats-top {
        grid-template-columns: 1fr;
        gap: 32px;
        margin: 32px 0 60px 0;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .hero-photo-section {
        margin: 60px 0 32px 0;
    }
    
         .hero-photo-container {
         max-width: 450px;
     }
    
    .hero-photo {
        border-radius: 16px;
    }
    
    .hero-caption p {
        font-size: 16px;
        padding: 0 16px;
    }
}

/* Feature Numbers for Assessment Process */
.feature-item {
    position: relative;
}

.feature-number {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #fb32bc 0%, #be38f8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(251, 50, 188, 0.4);
}

/* Assessment Note */
.assessment-note {
    margin-top: 48px;
    text-align: center;
    padding: 24px;
    background: rgba(251, 50, 188, 0.05);
    border: 1px solid rgba(251, 50, 188, 0.1);
    border-radius: 12px;
}

.assessment-note p {
    color: #B8B8C8;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Description */
.pricing-wrapper {
    max-width: 480px;
    margin: 32px auto 0;
    position: relative;
}

.pricing-description {
    max-width: 680px;
    margin: 12px auto 0;
    text-align: center;
}

.pricing-description p {
    color: #B8B8C8;
    font-size: 16px;
    line-height: 1.6;
}

/* Pricing Amount Badge */
.pricing-amount-badge {
    background-color: #1A1A22;
    border: 2px solid #fb32bc;
    border-bottom: none;
    padding: 16px 24px;
    border-radius: 16px 16px 0 0;
    text-align: center;
    color: #fb32bc;
    font-family: 'DM Serif Display', serif;
}

.pricing-amount-badge .currency {
    font-size: 28px;
    font-weight: 400;
    vertical-align: super;
    margin-right: 4px;
    opacity: 0.8;
}

.pricing-amount-badge .amount {
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
}

/* Mobile Responsive for new sections */
@media (max-width: 1024px) {
    .skills-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .skill-box {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    .skills-section {
        padding: 60px 0;
    }
    
    .skills-headline {
        font-size: 28px;
        line-height: 36px;
    }
    
    .skills-subtext {
        font-size: 16px;
    }
    
    /* Fix skills-features to be vertical on mobile */
    .skills-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }
    
    .skill-box {
        padding: 24px;
        text-align: center;
    }

    /* Center align skill icons on mobile */
    .skill-icon {
        margin: 0 auto 20px;
    }
    
    .btn-join {
        padding: 16px 32px;
        font-size: 16px;
    }

    /* Fix features grid for mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    /* Fix assessment icon badge for mobile */
    .assessment-icon-badge {
        width: 90%;
        height: 60px;
        margin: 0 auto 24px;
    }
    
    .assessment-icon {
        height: 48px;
    }
}

/* Extra small devices - 480px and below */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .skills-features {
        gap: 16px;
        margin-top: 24px;
    }
    
    .skill-box {
        padding: 20px;
    }
    
    .features-grid {
        gap: 16px;
        margin-top: 32px;
    }
    
    .feature-item {
        padding: 24px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .assessment-icon-badge {
        width: 95%;
        height: 50px;
    }
    
    .assessment-icon {
        height: 40px;
    }
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 0;
}

.section-header p {
    color: #B8B8C8;
    max-width: 800px;
    margin: 16px auto 0;
    font-size: 18px;
    line-height: 1.7;
}

/* FEATURES SECTION */
.features-section {
    padding: 80px 0;
    background: #0A0A0F;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.feature-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid #22222c;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: #fb32bc;
    box-shadow: 0 10px 40px rgba(251, 50, 188, 0.1);
}

.feature-number {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: #fb32bc;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    z-index: 2;
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fb32bc 0%, #be38f8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon-wrapper i {
    font-size: 28px;
    color: #FFFFFF;
}

.feature-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 16px;
    color: #B8B8C8;
    line-height: 1.7;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0A0A0F 0%, #0F0F18 50%, #0A0A0F 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(251, 50, 188, 0.3);
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    color: #FFC107;
    margin-bottom: 16px;
}

.stars i {
    margin-right: 4px;
}

.testimonial-content p {
    font-style: italic;
    color: #FFFFFF;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #FFFFFF;
}

.author-info p {
    font-size: 14px;
    color: #B8B8C8;
}

/* PRICING SECTION */
.pricing-section {
    padding: 80px 0;
    background: #0A0A0F;
}

/* Assessment Icon in Pricing */
.pricing-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.pricing-assessment-icon {
    width: 90px;
    height: 90px;
    padding: 12px; /* Reduced padding to make icon larger */
    background: rgba(251, 50, 188, 0.15);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(251, 50, 188, 0.3);
}

.pricing-card {
    background: #12121A;
    border: 1px solid #333344;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-card.featured {
    border-color: #fb32bc;
    border-top: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 0 60px rgba(251, 50, 188, 0.3);
}

.pricing-header {
    margin-bottom: 20px;
}

.plan-badge {
    color: #d1d1e0;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    text-align: center;
}

.pricing-amount {
    font-size: 56px;
    display: flex;
    align-items: baseline;
    color: #fb32bc;
    margin-bottom: 16px;
}

.currency {
    font-size: 28px;
    font-weight: 600;
    margin-right: 4px;
}

.amount {
    font-size: 56px;
    font-weight: 800;
}

.period {
    font-size: 16px;
    font-weight: 400;
    color: #B8B8C8;
    margin-left: 8px;
}

.pricing-features {
    width: 100%;
    margin: 20px 0;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-align: left;
    padding: 0;
    background: none;
    border: none;
    transition: none;
}

.pricing-features .feature-item:hover {
    transform: none;
    cursor: default;
}

.pricing-features .feature-item i {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #fb32bc, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.pricing-features .feature-item span {
    color: #d1d1e0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.pricing-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #fb32bc, #ff6b9d);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 24px;
    text-align: center;
}

.pricing-cta:hover {
    transform: scale(1.03);
}

.pricing-note {
    font-size: 14px;
    color: #B8B8C8;
}

.pricing-card .btn-secondary {
    border-color: #be38f8;
    color: #be38f8;
}

.pricing-card .btn-secondary:hover {
    background: #be38f8;
    color: #FFFFFF;
}

.pricing-card .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 8px;
    justify-content: center;
}

/* FAQ SECTION */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0A0A0F 0%, #0F0F18 50%, #0A0A0F 100%);
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    transition: all 0.2s ease;
    cursor: pointer;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-question {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.faq-question:hover {
    color: #fb32bc;
}

.faq-question h4 {
    font-size: 20px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: left;
    flex: 1;
}

.faq-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
    margin-left: auto;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding-top: 16px;
    color: #B8B8C8;
    font-size: 16px;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(45deg, #fb32bc, #be38f8);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 32px auto;
}

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

/* FOOTER */
.footer {
    background: #0F0F18;
    padding: 40px 0;
    border-top: 1px solid #22222c;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* MODAL STYLES */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #12121A;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #333344;
    width: 90%;
    max-width: 500px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

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

.modal-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.modal-close:hover {
    opacity: 1;
    color: #fb32bc;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #B8B8C8;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    background: #0A0A0F;
    border: 1px solid #333344;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    color: #FFFFFF;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #fb32bc;
    box-shadow: 0 0 0 3px rgba(251, 50, 188, 0.2);
}

.form-group input::placeholder,
.form-group select::placeholder {
    color: #6a6a78;
}

.modal-note {
    font-size: 14px;
    color: #B8B8C8;
    text-align: center;
    margin-top: 24px;
}

/* VIDEO CONTAINER */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 48px auto 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(251, 50, 188, 0.2);
}

.video-placeholder {
    width: 100%;
    cursor: pointer;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    color: white;
    transition: all 0.2s ease;
}

.video-container:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    color: #fb32bc;
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
        line-height: 56px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .nav-menu {
        display: none; /* Simplification for this one-pager */
    }
    .nav-cta {
        display: none;
    }
    .hero-section {
        padding: 80px 0;
    }
    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .social-proof-logos {
        max-width: 100%;
    }
    .features-section,
    .testimonials-section,
    .pricing-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        padding: 24px;
    }
    
    /* Additional mobile optimizations */
    .section-header h2 {
        font-size: 30px;
        line-height: 38px;
        padding: 0 8px;
    }
    
    .section-header p {
        font-size: 16px;
        padding: 0 8px;
    }
    
    .pricing-card {
        max-width: 100%;
        margin: 0;
    }
    
    .testimonial-card {
        max-width: 100%;
    }
    
    /* Fix FAQ alignment for mobile */
    .faq-question {
        justify-content: flex-start;
        text-align: left;
    }
    
    .faq-question h4 {
        text-align: left;
        flex: 1;
    }
    
    .faq-icon {
        margin-left: auto;
        flex-shrink: 0;
    }
}
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
    .hero-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    .section-header h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .testimonial-card {
        padding: 24px;
    }
    .pricing-card {
        padding: 32px;
    }
} 