/* =====================================================
   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: default;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Removed hover effects to prevent shading issues */

.video-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A24 0%, #12121A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.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);
}

/* Removed play button hover effects to prevent shading issues */

.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 {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

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

/* Video thumbnail overlay */
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: all;
}

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

.video-player.playing video {
    display: block !important;
}

/* Ensure video controls are visible without dark overlay */
.video-player video::-webkit-media-controls {
    display: flex !important;
}

.video-player video::-webkit-media-controls-panel {
    background: transparent;
}

/* 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 underline from main title in mobile view */
    .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-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }

    .skill-box {
        padding: 24px;
        text-align: center;
    }

    /* Center align skill icons in mobile view since text is centered */
    .skill-icon {
        margin: 0 auto 20px auto;
    }

    .btn-join {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* 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;
}

/* AI Journey - Modern Interactive Timeline */
.ai-journey {
    margin-top: 40px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Journey Progress Bar */
.journey-progress-container {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
}

.journey-progress-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(184, 184, 200, 0.1);
    border-radius: 2px;
}

.journey-progress-active {
    position: absolute;
    top: 0;
    left: 0;
    width: 33%;
    height: 100%;
    background: linear-gradient(90deg, #fb32bc 0%, #be38f8 100%);
    border-radius: 2px;
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(251, 50, 188, 0.5);
}

/* Journey Stages */
.journey-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.journey-stage {
    position: relative;
    padding-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.journey-stage:nth-child(2) { animation-delay: 0.2s; }
.journey-stage:nth-child(3) { animation-delay: 0.4s; }

/* Stage Marker */
.stage-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    z-index: 3;
}

.marker-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(251, 50, 188, 0.2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.journey-stage.active .marker-ring {
    border-color: rgba(251, 50, 188, 0.4);
    animation: pulse-active 2s ease-in-out infinite;
}

.marker-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(251, 50, 188, 0.1), rgba(190, 56, 248, 0.1));
    border: 2px solid rgba(251, 50, 188, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.journey-stage.active .marker-core {
    background: linear-gradient(135deg, #fb32bc, #be38f8);
    border-color: transparent;
    box-shadow: 0 8px 32px rgba(251, 50, 188, 0.4);
}

.marker-core i {
    font-size: 28px;
    color: rgba(251, 50, 188, 0.8);
    transition: all 0.3s ease;
}

.journey-stage.active .marker-core i {
    color: white;
    transform: scale(1.1);
}

/* Stage Content */
.stage-content {
    background: rgba(30, 30, 40, 0.5);
    border: 1px solid rgba(251, 50, 188, 0.1);
    border-radius: 20px;
    padding: 20px;
    margin-top: 80px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.journey-stage:hover .stage-content {
    background: rgba(30, 30, 40, 0.7);
    border-color: rgba(251, 50, 188, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.stage-header {
    text-align: center;
    margin-bottom: 24px;
}

.stage-label {
    display: inline-block;
    background: linear-gradient(135deg, #fb32bc, #be38f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stage-header h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    margin: 8px 0;
}

.stage-duration {
    color: #B8B8C8;
    font-size: 14px;
    opacity: 0.8;
}

/* Stage Details */
.stage-details {
    margin-top: 20px;
}

.detail-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(251, 50, 188, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.detail-card:hover {
    background: rgba(251, 50, 188, 0.1);
    transform: translateX(4px);
}

.detail-card i {
    color: #fb32bc;
    font-size: 18px;
    width: 24px;
}

.detail-card span {
    color: #B8B8C8;
    font-size: 14px;
    line-height: 1.4;
}

/* Session Flow */
.session-flow {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.flow-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(251, 50, 188, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.flow-item:hover {
    background: rgba(251, 50, 188, 0.1);
    transform: translateX(4px);
}

.flow-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(251, 50, 188, 0.2), rgba(190, 56, 248, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-icon i {
    color: #fb32bc;
    font-size: 20px;
}

.flow-text strong {
    display: block;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.flow-text span {
    color: #B8B8C8;
    font-size: 13px;
}

.flow-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, rgba(251, 50, 188, 0.3) 0%, rgba(251, 50, 188, 0.1) 100%);
    margin: -8px auto;
    position: relative;
}

/* Evolution Grid */
.evolution-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.evolution-card {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    padding: 20px 16px;
    background: rgba(251, 50, 188, 0.05);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 50, 188, 0.1);
}

.evolution-card:hover {
    background: rgba(251, 50, 188, 0.08);
    border-color: rgba(251, 50, 188, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(251, 50, 188, 0.15);
}

.evolution-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(251, 50, 188, 0.15), rgba(190, 56, 248, 0.15));
    border: 2px solid rgba(251, 50, 188, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.evolution-card:hover .evolution-icon {
    background: linear-gradient(135deg, rgba(251, 50, 188, 0.25), rgba(190, 56, 248, 0.25));
    border-color: rgba(251, 50, 188, 0.3);
}

.evolution-icon i {
    color: #fb32bc;
    font-size: 20px;
}

.evolution-card h4 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.evolution-card p {
    color: #B8B8C8;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

/* Results Timeline - Simplified */
.results-timeline {
    margin-top: 60px;
    padding: 40px;
    background: rgba(30, 30, 40, 0.3);
    border: 1px solid rgba(251, 50, 188, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.results-timeline h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
}

.outcome-highlights {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.outcome-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(251, 50, 188, 0.05);
    border: 1px solid rgba(251, 50, 188, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    min-width: 200px;
    max-width: 280px;
}

.outcome-card:hover {
    background: rgba(251, 50, 188, 0.08);
    border-color: rgba(251, 50, 188, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(251, 50, 188, 0.15);
}

.outcome-card.featured {
    background: rgba(251, 50, 188, 0.08);
    border-color: rgba(251, 50, 188, 0.2);
}

.outcome-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #fb32bc, #be38f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    min-width: 60px;
    text-align: center;
}

.outcome-text {
    text-align: left;
}

.outcome-text h4 {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    opacity: 0.8;
}

.outcome-text p {
    color: #B8B8C8;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.outcome-note {
    color: #B8B8C8;
    font-size: 14px;
    font-style: italic;
    margin: 0;
    opacity: 0.9;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

@keyframes pulse-active {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}

/* Keep existing sessions overview styles for backwards compatibility */
.sessions-overview {
    display: none;
}

.blueprint-timeline {
    display: none;
}

.session-card {
    background: rgba(26, 26, 34, 0.8);
    border: 1px solid rgba(251, 50, 188, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.session-card:hover {
    border-color: rgba(251, 50, 188, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(251, 50, 188, 0.15);
}

.session-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

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

.session-icon i {
    font-size: 24px;
    color: white;
}

.session-info {
    flex: 1;
}

.session-day {
    background: linear-gradient(135deg, #fb32bc 0%, #be38f8 100%);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.session-info h4 {
    color: #FFFFFF;
    font-size: 22px;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.session-outcomes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.session-outcomes li {
    color: #B8B8C8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.session-outcomes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fb32bc;
    font-weight: 700;
    font-size: 16px;
}

.session-outcomes li:last-child {
    margin-bottom: 0;
}

/* Ongoing Support - Fixed mobile badge overlap with icon */
.ongoing-support {
    background: rgba(190, 56, 248, 0.05);
    border: 2px solid rgba(190, 56, 248, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin-top: 48px;
    position: relative;
}

.support-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #be38f8 0%, #8b5cf6 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #be38f8 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(190, 56, 248, 0.3);
}

.support-icon i {
    font-size: 32px;
    color: white;
}

.support-content h4 {
    color: #FFFFFF;
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 600;
}

.support-items {
    display: grid;
    gap: 16px;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-item i {
    color: #be38f8;
    font-size: 16px;
    flex-shrink: 0;
}

.support-item span {
    color: #B8B8C8;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design for Blueprint Timeline */
@media (max-width: 768px) {
    /* AI Journey Mobile Styles */
    .ai-journey {
        margin-top: 40px;
    }
    
    .journey-progress-container {
        display: none; /* Hide progress bar on mobile */
    }
    
    .journey-stages {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .journey-stage {
        padding-top: 0;
    }
    
    .stage-marker {
        position: relative;
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }
    
    .marker-core {
        width: 60px;
        height: 60px;
    }
    
    .marker-core i {
        font-size: 24px;
    }
    
    .stage-content {
        margin-top: 0;
        padding: 20px;
    }
    
    .stage-header h3 {
        font-size: 20px;
    }
    
    .evolution-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .evolution-card {
        min-width: 100%;
        max-width: 100%;
        padding: 24px 20px;
    }
    
    .session-flow {
        gap: 12px;
    }
    
    .flow-item {
        padding: 12px;
    }
    
    .flow-icon {
        width: 40px;
        height: 40px;
    }
    
    .flow-icon i {
        font-size: 16px;
    }
    
    .results-timeline {
        padding: 24px 16px;
    }
    
    .outcome-highlights {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .outcome-card {
        min-width: 100%;
        max-width: 100%;
        padding: 20px;
    }
    
    .outcome-number {
        font-size: 36px;
        min-width: 50px;
    }
    
    /* Legacy styles for backward compatibility */
    .blueprint-timeline {
        margin-top: 32px;
    }
    
    .timeline-phase,
    .ongoing-support {
        padding: 32px 24px 24px 24px; /* Extra top padding for badge clearance */
        margin-bottom: 32px;
        margin-top: 24px; /* Ensure space above the badge */
    }
    
    .support-badge {
        top: -12px; /* Reduce negative positioning in mobile */
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .phase-icon,
    .support-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
        margin-top: 8px; /* Add top margin to create clearance from badge */
    }
    
    .phase-icon i,
    .support-icon i {
        font-size: 24px;
    }
    
    .phase-content h4,
    .support-content h4 {
        font-size: 20px;
    }
    
    /* Mobile Sessions Overview - Optimized card layout */
    .sessions-overview {
        gap: 24px;
        margin: 32px 0;
    }
    
    .session-card {
        padding: 24px;
    }
    
    .session-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .session-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }
    
    .session-icon i {
        font-size: 20px;
    }
    
    .session-day {
        font-size: 12px;
        padding: 4px 12px;
        margin-bottom: 6px;
    }
    
    .session-info h4 {
        font-size: 20px;
        line-height: 1.2;
    }
    
    .session-outcomes li {
        font-size: 15px;
        margin-bottom: 10px;
        padding-left: 20px;
    }
    
    .session-outcomes li:before {
        font-size: 14px;
    }
    
    .support-items {
        gap: 12px;
    }
    
    .support-item span {
        font-size: 14px;
    }
}

/* 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 */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 16px;
        max-width: 100%;
        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;
    }
    
    .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;
    }

    /* Center align skill icons in extra small mobile view */
    .skill-icon {
        margin: 0 auto 20px auto;
    }
    
    /* Extra small mobile - Session cards */
    .session-card {
        padding: 20px;
    }
    
    .session-header {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .session-icon {
        width: 48px;
        height: 48px;
    }
    
    .session-icon i {
        font-size: 18px;
    }
    
    .session-day {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .session-info h4 {
        font-size: 18px;
    }
    
    .session-outcomes li {
        font-size: 14px;
        margin-bottom: 8px;
        padding-left: 18px;
    }
    
    .session-outcomes li:before {
        font-size: 12px;
    }
    
    .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;
    }
    
    /* Extra small mobile - Support section overlap fixes */
    .ongoing-support {
        padding: 28px 20px 20px 20px;
        margin-top: 20px;
    }
    
    .support-badge {
        top: -10px;
        font-size: 11px;
        padding: 5px 14px;
    }
    
    .support-icon {
        width: 50px;
        height: 50px;
        margin-top: 10px;
    }
    
    .support-icon i {
        font-size: 20px;
    }
    
    .support-content h4 {
        font-size: 18px;
    }
}

/* 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);
}

/* What's Included Box */
.whats-included-box {
    background: #12121A;
    border: 1px solid rgba(139, 70, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.whats-included-box h3 {
    color: #FFFFFF;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

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

.included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #B8B8C8;
    font-size: 16px;
}

.included-item i {
    color: #8A46FF;
    font-size: 20px;
    width: 24px;
    flex-shrink: 0;
}

/* Pricing Cards Grid */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-cards-grid.simplified {
    margin-top: 0;
}

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

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

.pricing-card.simplified.featured {
    border-color: #fb32bc;
    box-shadow: 0 0 60px rgba(251, 50, 188, 0.3);
    transform: scale(1.05);
}

/* Simplified Pricing Card Elements */
.pricing-impact {
    color: #8A46FF;
    font-size: 16px;
    font-weight: 500;
    margin-top: 8px;
}

.pricing-core-info {
    margin: 30px 0;
}

.pricing-sessions-large {
    font-size: 72px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.pricing-sessions-label {
    color: #B8B8C8;
    font-size: 18px;
    margin-top: 8px;
}

.pricing-timeline {
    color: #888;
    font-size: 16px;
    margin-top: 8px;
    font-weight: 400;
}

.pricing-outcome {
    margin: 20px 0 30px;
}

.pricing-outcome p {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #fb32bc, #8A46FF);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-sessions {
    color: #8A46FF;
    font-size: 18px;
    font-weight: 500;
    margin: 12px 0;
}

.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;
}

/* Pricing CTA Wrapper and Divider */
.pricing-cta-wrapper {
    margin-top: 48px;
    width: 100%;
}

.pricing-divider {
    position: relative;
    text-align: center;
    margin-bottom: 32px;
}

.pricing-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #333344 20%, #333344 80%, transparent);
}

.divider-text {
    position: relative;
    display: inline-block;
    padding: 0 24px;
    background: #0A0A0F;
    color: #B8B8C8;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Pricing CTA Section */
.pricing-cta-section {
    margin-top: 40px;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.btn-centered {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
    padding: 18px 40px;
    background: linear-gradient(135deg, #fb32bc 0%, #be38f8 100%);
    border-radius: 100px;
    transition: all 0.3s ease;
    min-width: 280px;
}

.btn-centered:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 50, 188, 0.3);
}

.btn-centered .btn-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-centered .btn-subtext {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.2px;
}

/* WHO THIS PARTNERSHIP IS FOR SECTION */
.who-for-section {
    padding: 80px 0;
    background: #12121A;
}

.who-for-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.who-for-column {
    background: #0A0A0F;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #333344;
}

.who-for-column.ready {
    border-color: rgba(139, 70, 255, 0.3);
}

.who-for-column.not-ready {
    border-color: rgba(255, 255, 255, 0.1);
}

.who-for-column h3 {
    color: #FFFFFF;
    font-size: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.who-for-column.ready h3 i {
    color: #8A46FF;
}

.who-for-column.not-ready h3 i {
    color: #666;
}

.who-for-column ul {
    list-style: none;
    padding: 0;
}

.who-for-column li {
    color: #B8B8C8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.who-for-column li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 20px;
}

.who-for-column.ready li:before {
    color: #8A46FF;
}

.who-for-column.not-ready li:before {
    color: #666;
}

@media (max-width: 768px) {
    .who-for-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .included-items-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.simplified.featured {
        transform: none;
    }
    
    .whats-included-box {
        padding: 30px 20px;
    }
}

/* 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;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

/* 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;
    }
    
    /* Session cards mobile overflow fix */
    .session-card {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .session-outcomes {
        width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .session-outcomes li {
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }
}
@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;
    }
} 