/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--cream);
    min-height: 100vh;
}

/* Beautiful Pink Shades Palette */
:root {
    /* Main Pink Palette - Different shades that work together */
    --pink-lightest: #fef7f7;
    --pink-lighter: #fdebeb;
    --pink-light: #fad2d3;
    --pink-soft: #f7b2b7;
    --pink-medium: #f48fb1;
    --pink-main: #ec407a;
    --pink-deep: #d81b60;
    --pink-darker: #ad1457;
    
    /* Complementary Colors */
    --cream: #fdfbf7;
    --white: #ffffff;
    --warm-gray: #8e8e93;
    --dark-gray: #48484a;
    --charcoal: #2c2c2e;
    
    /* Text Colors */
    --text-primary: var(--charcoal);
    --text-secondary: var(--dark-gray);
    --text-muted: var(--warm-gray);
    
    /* Only gradient for main title */
    --gradient-title: linear-gradient(135deg, var(--pink-main) 0%, var(--pink-deep) 100%);
    
    /* Soft Shadows */
    --shadow-soft: 0 2px 8px rgba(236, 64, 122, 0.08);
    --shadow-medium: 0 4px 16px rgba(236, 64, 122, 0.12);
    --shadow-large: 0 8px 32px rgba(236, 64, 122, 0.16);
    
    /* Border Radius */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
    --border-radius-xl: 2rem;
}

/* Container - Mobile First */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    background: transparent;
    min-height: 48px; /* Better touch targets on mobile */
    text-align: center;
}

.btn-primary {
    background-color: var(--pink-main);
    color: white;
    border: none;
    box-shadow: var(--shadow-soft);
    transform: translateY(0);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--pink-deep);
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--pink-light);
    color: var(--pink-main);
    background-color: var(--white);
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-outline:hover {
    background-color: var(--pink-lightest);
    border-color: var(--pink-soft);
    color: var(--pink-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.btn-ghost {
    color: #171717;
}

.btn-ghost:hover {
    background-color: #f5f5f5;
}

.btn-white {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-soft);
}

.btn-white:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

.btn-outline-light {
    border-color: #525252;
    color: white;
}

.btn-outline-light:hover {
    background-color: #1f1f1f;
}

.btn-dark {
    background-color: #171717;
    color: white;
}

.btn-dark:hover {
    background-color: #262626;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #9E9E9E !important;
}

.btn-disabled:hover {
    background-color: #9E9E9E !important;
    transform: none;
}

/* Top Ribbon */
.top-ribbon {
    background-color: var(--pink-main);
    color: white;
    font-size: 0.875rem;
    padding: 0.75rem 0;
    text-align: center;
}

.ribbon-text {
    font-weight: 600;
}

.ribbon-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ribbon-link:hover {
    color: var(--pink-lightest);
    border-bottom-color: var(--pink-lightest);
    transform: translateY(-1px);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--pink-lighter);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-soft);
    border-bottom-color: var(--pink-light);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #171717;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--pink-main);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
}

.logo-icon:hover {
    transform: scale(1.05);
    background-color: var(--pink-deep);
}

.logo-icon::before {
    content: 'BPP';
    color: white;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.logo-text {
    font-weight: 600;
    letter-spacing: -0.025em;
}

.nav-links {
    display: none;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.nav-links a {
    color: #171717;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--pink-main);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-buttons .btn {
    min-height: auto;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-buttons .btn-ghost {
    display: none;
}

/* Mobile navigation buttons */
@media (max-width: 767px) {
    .nav-buttons .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
        font-weight: 500;
        min-height: auto;
        border-radius: 0.375rem;
    }
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #171717;
    cursor: pointer;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

@media (min-width: 640px) {
    .nav-buttons .btn-ghost {
        display: inline-flex;
    }
}

/* Hero Section - Mobile First (Video on top) */
.hero {
    padding: 1.5rem 0;
    background-color: white;
}

.hero-content {
    display: grid;
    gap: 1.5rem;
}

/* Mobile: Badge first, then video, then text */
.hero-badge {
    order: 1;
    text-align: center;
}

.hero-video {
    order: 2;
}

.hero-text {
    order: 3;
}

@media (min-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    /* Desktop: Badge and text combined on left, video on right */
    .hero-badge {
        order: 1;
        grid-column: 1;
        grid-row: 1;
        align-self: start;
        text-align: left;
    }
    
    .hero-text {
        order: 2;
        grid-column: 1;
        grid-row: 1;
        align-self: end;
        margin-top: 2rem;
    }
    
    .hero-video {
        order: 3;
        grid-column: 2;
        grid-row: 1;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--pink-lighter);
    color: var(--pink-deep);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--pink-light);
}

.badge .icon {
    animation: sparkle 2s ease-in-out infinite alternate;
}

@keyframes sparkle {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(180deg) scale(1.1); }
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 36rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    justify-content: center;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}



.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.hero-features .icon {
    width: 1rem;
    height: 1rem;
    color: var(--pink-main);
}



/* Video Card */
.video-card {
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px -12px rgba(236, 72, 153, 0.3);
}

.video-embed {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-xl);
}

.video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-caption {
    opacity: 1;
}

/* Fallback styles for video placeholder */
.video-placeholder {
    height: 100%;
    width: 100%;
    background-color: var(--pink-soft);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
}

.play-icon {
    width: 4rem;
    height: 4rem;
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover .play-icon {
    transform: scale(1.1);
    opacity: 1;
}

.video-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.video-desc {
    font-size: 0.875rem;
    color: #d4d4d4;
}

/* Trust Metrics */
.trust-metrics {
    padding: 1.5rem 0 2rem;
}

.metrics-grid {
    display: grid;
    gap: 1.5rem;
    text-align: center;
}

.metric-card {
    background-color: var(--white);
    border: 1px solid var(--pink-lighter);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--pink-light);
}

.metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--pink-main);
    margin-bottom: 0.75rem;
}

.metric-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--text-muted);
}

.metric-kpi {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pink-deep);
    line-height: 1;
}

@media (min-width: 640px) {
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Cards */
.card {
    background-color: var(--white);
    border: 1px solid var(--pink-lighter);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--pink-light);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1.5rem 1rem;
}

.card-icon {
    padding: 0.75rem;
    border-radius: var(--border-radius-md);
    background-color: var(--pink-lighter);
    color: var(--pink-main);
    transition: all 0.3s ease;
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card:hover .card-icon {
    background-color: var(--pink-light);
    transform: scale(1.05);
}

.card-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-content {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Features */
.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.feature .icon {
    color: var(--pink-main);
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* YouTube Section */
.youtube-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--pink-lightest) 100%);
}

.youtube-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.2);
    margin-bottom: 2rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.youtube-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.youtube-cta p {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.youtube-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .youtube-section {
        padding: 3rem 0;
    }
    
    .youtube-cta p {
        font-size: 1rem;
    }
}

/* Who It's For */
.who-for {
    padding: 2rem 0;
    background-color: var(--pink-lightest);
}

@media (min-width: 768px) {
    .who-for {
        padding: 3rem 0;
    }
}

.who-for-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .who-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 32rem;
    margin: 0 auto 2.5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background-color: var(--white);
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .how-it-works {
        padding: 3rem 0;
    }
}

.steps-grid {
    display: grid;
    gap: 1.5rem;
}

.step-card {
    background-color: var(--white);
    border: 1px solid var(--pink-lighter);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--pink-light);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.step-number {
    width: 2rem;
    height: 2rem;
    background-color: var(--pink-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Outcomes */
.outcomes {
    background-color: var(--pink-lightest);
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .outcomes {
        padding: 3rem 0;
    }
}

.outcomes-content {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.outcomes-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.outcomes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #404040;
    margin-bottom: 1.5rem;
}

.outcome {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.outcome i {
    color: #dc2626;
    margin-top: 0.125rem;
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.outcomes-buttons {
    display: flex;
    gap: 0.75rem;
}

.outcomes-cards {
    display: grid;
    gap: 1rem;
}

.small-card {
    background-color: white;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.small-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.small-card-desc {
    font-size: 0.875rem;
    color: #525252;
}

@media (min-width: 768px) {
    .outcomes-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .outcomes-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tiers */
.tiers {
    background: linear-gradient(135deg, var(--pink-lightest) 0%, white 50%, var(--pink-lightest) 100%);
    padding: 3rem 0;
    position: relative;
}

.tiers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, var(--pink-100), transparent 40%),
                radial-gradient(circle at 80% 80%, var(--purple-50), transparent 40%);
    opacity: 0.5;
}

.tiers .container {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .tiers {
        padding: 4rem 0;
    }
}

.tiers-grid {
    display: grid;
    gap: 1.5rem;
    align-items: stretch;
}

.tier-card {
    background-color: white;
    border: 1px solid var(--pink-lighter);
    border-radius: var(--border-radius-lg);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--pink-light);
}

.tier-card.popular {
    border-color: var(--pink-main);
    border-width: 2px;
    box-shadow: var(--shadow-medium);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 1rem;
    right: 1rem;
    background: var(--gradient-title);
    color: white;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    font-weight: 700;
    z-index: 10;
    box-shadow: var(--shadow-medium);
    border: 2px solid white;
}

.tier-header {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tier-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.tier-label {
    font-size: 0.875rem;
    color: #737373;
}

.tier-subtitle {
    font-size: 0.9rem;
    color: var(--pink-main);
    font-weight: 600;
    margin: 0.5rem 0 0 0;
    font-style: italic;
}

.tier-description {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--pink-lightest);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--pink-main);
}

.tier-description p {
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
}

.tier-pricing {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0 1rem 0;
    justify-content: center;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pink-main);
}

.original-price {
    font-size: 0.9rem;
    color: #6b7280;
    text-decoration: line-through;
}

.tier-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1; /* Make content area flexible to fill space */
}

.tier-content .btn {
    margin-top: auto; /* Push button to bottom */
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tier-features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink-main);
    font-weight: 600;
}

.cohort-start-date {
    background-color: var(--pink-lightest);
    color: var(--pink-main);
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0.75rem;
    border: 1px solid var(--pink-light);
}

.tier-best-for {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0.5rem;
    background-color: var(--pink-lightest);
    border-radius: var(--border-radius-sm);
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .tiers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tier-compare {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Glossary */
.glossary {
    padding: 4rem 0;
}

.glossary .container {
    max-width: 64rem;
}

/* Accordion */
.accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.accordion-trigger {
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-trigger:hover {
    color: #dc2626;
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accordion-title i {
    width: 1.125rem;
    height: 1.125rem;
}

.accordion-arrow {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.accordion-item.active .accordion-trigger {
    color: var(--pink-main);
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-content p {
    padding-bottom: 1rem;
    color: #525252;
}

.glossary-accordion {
    margin-top: 2rem;
}

.faq-accordion {
    margin-top: 2rem;
}

/* NinjaTrader Section */
.ninjatrader-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--pink-lightest) 0%, #FFFFFF 100%);
}

.ninjatrader-header {
    text-align: center;
    margin-bottom: 2rem;
}

.ninjatrader-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin: 0;
}

.ninjatrader-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ninjatrader-image {
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: block;
    text-align: center;
}

.ninjatrader-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: inline-block;
    object-fit: contain;
    vertical-align: middle;
}

.ninjatrader-intro {
    font-size: 1.25rem;
    color: var(--gray-dark);
    line-height: 1.7;
    text-align: center;
    font-weight: 400;
    margin: 0 auto 2rem;
    max-width: 800px;
}

.ninjatrader-cta-box {
    background: linear-gradient(135deg, var(--pink-main) 0%, #c44569 100%);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.3);
    margin-bottom: 2rem;
}

.download-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-align: center;
}

.free-access {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #FFE8F1;
}

.free-access strong {
    color: white;
    font-size: 1.4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex !important;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 80px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    fill: white;
    display: block;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: white;
}

.feature-text p {
    font-size: 0.95rem;
    color: #FFE8F1;
    margin: 0;
    line-height: 1.5;
}

.ninjatrader-stats {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--pink-main);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.stat-highlight {
    font-size: 1.25rem;
    color: var(--pink-main);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.ninjatrader-stats p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin: 0;
}

.ninjatrader-stats p:last-child {
    margin-top: 0.75rem;
}

.beginner-note {
    background: #FFF5F8;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 2px solid var(--pink-lightest);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.note-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-main);
    border-radius: 50%;
}

.note-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.beginner-note p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.6;
    flex: 1;
}

.beginner-note strong {
    color: var(--pink-main);
}

.ninjatrader-btn {
    display: block;
    margin: 0 auto;
    font-size: 1.3rem;
    padding: 1.25rem 3rem;
    background: var(--pink-main);
    border: none;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    width: fit-content;
}

.ninjatrader-btn:hover {
    background: #c44569;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.5);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 992px) {
    .ninjatrader-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .ninjatrader-section {
        padding: 3rem 0;
    }
    
    .ninjatrader-title {
        font-size: 2rem;
    }
    
    .ninjatrader-intro {
        font-size: 1.1rem;
    }
    
    .ninjatrader-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .download-heading {
        font-size: 1.5rem;
    }
    
    .free-access {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .note-icon {
        width: 32px;
        height: 32px;
    }
    
    .note-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .ninjatrader-stats {
        padding: 1.5rem;
    }
    
    .stat-highlight {
        font-size: 1.1rem;
    }
    
    .beginner-note {
        padding: 1.25rem 1.5rem;
    }
    
    .beginner-note p {
        font-size: 1rem;
    }
    
    .ninjatrader-btn {
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #ff6b9d 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 157, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: shimmer 12s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.testimonials .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: white;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    padding: 1.5rem;
}

.testimonial-quote {
    color: #404040;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
}

.testimonial-quote::after {
    content: '"';
}

.author-name {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.75rem;
    color: #737373;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Testimonials slider styles */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 2rem auto 0;
    border-radius: 2rem;
    background: white;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.testimonials-slider:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.testimonials-track {
    display: flex;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 4rem 3rem;
    background: 
        linear-gradient(135deg, #ffffff 0%, #fef7ff 50%, #ffffff 100%),
        radial-gradient(circle at center, rgba(255, 107, 157, 0.05) 0%, transparent 70%);
    position: relative;
}

.testimonial-slide::before {
    content: '✨';
    position: absolute;
    top: 2rem;
    left: 3rem;
    font-size: 2rem;
    opacity: 0.6;
    animation: sparkle 3s ease-in-out infinite;
}

.testimonial-slide::after {
    content: '💖';
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 2rem;
    opacity: 0.6;
    animation: sparkle 3s ease-in-out infinite 1.5s;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

.testimonial-slide .testimonial-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 2px solid rgba(255, 107, 157, 0.2);
    backdrop-filter: blur(10px);
}

.testimonial-slide .testimonial-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 2.5rem;
    font-style: italic;
    font-weight: 500;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-slide .testimonial-text::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-size: 6rem;
    color: #ff6b9d;
    opacity: 0.4;
    font-family: Georgia, serif;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-slide .testimonial-text::after {
    content: '"';
    position: absolute;
    bottom: -3rem;
    right: -1rem;
    font-size: 6rem;
    color: #ff6b9d;
    opacity: 0.4;
    font-family: Georgia, serif;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-slide .testimonial-author {
    font-weight: 800;
    color: #ff6b9d;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-slide .testimonial-role {
    color: #c44569;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.slider-btn {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #ff6b9d 100%);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.6rem;
    box-shadow: 
        0 15px 35px rgba(255, 107, 157, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.slider-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.slider-btn:hover::before {
    opacity: 1;
}

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

.slider-btn:hover {
    transform: scale(1.2) translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(255, 107, 157, 0.6),
        0 10px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.slider-btn:disabled {
    background: linear-gradient(135deg, #cbd5e0, #a0aec0);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-dots {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dot.active {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    transform: scale(1.4);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.dot.active::before {
    opacity: 1;
    transform: scale(1);
}

.dot:hover {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    transform: scale(1.3);
}

/* Mobile testimonials slider */
@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials .section-title {
        font-size: 2rem;
    }
    
    .testimonials .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonials .container {
        padding: 0 0.5rem;
    }
    
    .testimonials-slider {
        margin: 1.5rem auto 0;
        width: 100%;
        border-radius: 1.5rem;
        transform: perspective(800px) rotateX(3deg);
    }
    
    .testimonials-slider:hover {
        transform: perspective(800px) rotateX(0deg) translateY(-5px);
    }
    
    .testimonials-track {
        width: 100%;
    }
    
    .testimonial-slide {
        padding: 3rem 2rem;
        box-sizing: border-box;
        width: 100%;
        min-width: 100%;
    }
    
    .testimonial-slide .testimonial-content {
        max-width: 100%;
        padding: 1.5rem;
        margin: 0;
        width: 100%;
    }
    
    .testimonial-slide .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .testimonial-slide .testimonial-text::before {
        font-size: 4rem;
        top: -0.5rem;
        left: -0.5rem;
    }
    
    .testimonial-slide .testimonial-text::after {
        font-size: 4rem;
        bottom: -2rem;
        right: -0.5rem;
    }
    
    .testimonial-slide .testimonial-author {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .testimonial-slide .testimonial-role {
        font-size: 0.9rem;
        margin-top: 0;
    }
    
    .slider-nav {
        margin-top: 2.5rem;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .slider-dots {
        padding: 0.5rem 1rem;
        gap: 0.75rem;
    }
    
    .dot {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .testimonials .container {
        padding: 0 0.25rem;
    }
    
    .testimonial-slide {
        padding: 2.5rem 1.5rem;
    }
    
    .testimonial-slide .testimonial-content {
        padding: 1.25rem;
    }
    
    .testimonial-slide .testimonial-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .slider-nav {
        padding: 0 0.25rem;
        gap: 1rem;
    }
}

/* Flowchart Section */
.flowchart-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--pink-lightest) 0%, #ffffff 100%);
}

.flowchart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.flow-step {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    min-width: 180px;
    max-width: 200px;
    border: 2px solid var(--pink-light);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.2);
}

.flow-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.flow-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.flow-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--pink-primary);
    font-weight: 700;
    margin: 0 0.5rem;
}

/* Mobile flowchart adjustments */
@media (max-width: 768px) {
    .flowchart-section {
        padding: 2rem 0;
    }
    
    .flowchart {
        gap: 0.75rem;
        overflow-x: auto;
        padding: 0 1rem;
    }
    
    .flow-step {
        min-width: 160px;
        max-width: 160px;
        padding: 1rem;
        flex-shrink: 0;
    }
    
    .flow-arrow {
        font-size: 1.2rem;
        margin: 0 0.25rem;
        flex-shrink: 0;
    }
    
    .flow-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .flow-title {
        font-size: 0.9rem;
        margin-bottom: 0.375rem;
    }
    
    .flow-desc {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .flow-step {
        min-width: 140px;
        max-width: 140px;
        padding: 0.75rem;
    }
    
    .flow-title {
        font-size: 0.85rem;
    }
    
    .flow-desc {
        font-size: 0.75rem;
    }
}

/* FAQ */
.faq {
    padding: 2rem 0;
    background-color: white;
}

@media (min-width: 768px) {
    .faq {
        padding: 3rem 0;
    }
}

.faq .container {
    max-width: 48rem;
}

.faq .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

/* Final CTA */
.final-cta {
    background-color: var(--pink-main);
    padding: 3rem 0;
    color: white;
}

.cta-content {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .cta-content {
        grid-template-columns: 1fr auto;
        text-align: left;
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        justify-content: flex-end;
    }
}

@media (min-width: 768px) {
    .cta-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-buttons {
        justify-content: flex-end;
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta-content {
    background-color: var(--pink-deep);
    color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-large);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
}

.sticky-cta-text {
    font-size: 0.875rem;
    text-align: center;
}

.sticky-cta-main {
    font-weight: 600;
}

.sticky-cta-buttons {
    display: flex;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .sticky-cta-text {
        font-size: 1rem;
    }
    
    .sticky-cta-content {
        flex-direction: row;
        gap: 1rem;
    }
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: #d4d4d4;
    margin-top: 2rem;
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-desc {
    font-size: 0.875rem;
    color: #a3a3a3;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li {
    font-size: 0.875rem;
}

.footer-links a {
    color: #d4d4d4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    width: 1rem;
    height: 1rem;
}

.footer-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.footer-disclaimer {
    border-top: 1px solid #262626;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
}

.disclaimer-text {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #888;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text strong {
    color: #999;
    font-weight: 600;
}

.disclaimer-link {
    color: var(--pink-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.disclaimer-link:hover {
    color: #c44569;
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: #737373;
}

@media (max-width: 768px) {
    .footer-disclaimer {
        padding: 1.5rem 1rem 1rem;
    }
    
    .disclaimer-text {
        font-size: 0.7rem;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0.7;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.4s ease-out forwards;
}

/* Responsive Utilities */
@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        justify-content: center;
    }
    
    .outcomes-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Focus States */
.btn:focus,
.accordion-trigger:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* Custom SVG Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn .icon {
    width: 1rem;
    height: 1rem;
}

.ribbon-text .icon {
    width: 1rem;
    height: 1rem;
    animation: sparkle 2s ease-in-out infinite alternate;
}

@keyframes sparkle {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.mobile-menu-btn .icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Glass Morphism Effects */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Removed excessive animations for cleaner look */

/* Loading State */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Signup Notifications */
.signup-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--pink-light);
    padding: 1rem;
    max-width: 320px;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.signup-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--pink-light);
    background: linear-gradient(135deg, var(--pink-lighter), var(--pink-light));
    position: relative;
    box-shadow: 0 4px 8px rgba(236, 72, 153, 0.2);
}

.avatar-icon {
    font-size: 1.4rem;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.notification-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.notification-text {
    flex: 1;
}

.notification-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.notification-action {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.notification-time {
    font-size: 0.75rem;
    color: var(--pink-primary);
    font-weight: 500;
}

.notification-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.notification-close:hover {
    background: var(--pink-lighter);
    color: var(--pink-primary);
}

/* Cohort Application Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1rem;
}

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

.modal-content {
    background: white;
    border-radius: 1.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 107, 157, 0.1);
    transform: scale(0.9) translateY(50px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
    position: relative;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close:hover {
    background: var(--pink-lighter);
    color: var(--pink-primary);
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Cohort Description Styles */
.cohort-description {
    background: rgba(255, 107, 157, 0.03);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 157, 0.1);
    text-align: center;
}

.cohort-overview {
    margin-bottom: 2rem;
}

.cohort-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 0;
}

.cohort-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 107, 157, 0.1);
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.05);
}

.highlight-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cohort-next {
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 107, 157, 0.1);
}

.next-cohort {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pink-primary);
    margin-bottom: 0.75rem;
}

.application-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    border: 1px solid rgba(255, 107, 157, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    background: rgba(255, 107, 157, 0.02);
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pink-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 107, 157, 0.1);
}

.form-section .form-group {
    margin-bottom: 1.5rem;
}

.form-section .form-group:last-child {
    margin-bottom: 0;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #64748b;
    font-style: italic;
}

.availability-table {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.75rem;
    border: 1px solid #e2e8f0;
}

.availability-row {
    display: grid;
    grid-template-columns: 100px 1fr auto 1fr;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.availability-row:last-child {
    margin-bottom: 0;
}

.day-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.time-input {
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
    transition: border-color 0.2s ease;
}

.time-input:focus {
    outline: none;
    border-color: var(--pink-main);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.time-separator {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 640px) {
    .availability-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
        background: white;
        padding: 0.75rem;
        border-radius: 6px;
        margin-bottom: 0.75rem;
        border: 1px solid #e5e7eb;
    }
    
    .day-label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .time-separator {
        margin: 0.25rem 0;
    }
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-end;
}

.form-actions .btn {
    min-width: 120px;
}

/* Mobile modal adjustments */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 0.5rem;
    }
    
    .modal-content {
        max-height: 95vh;
        border-radius: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        min-width: auto;
    }
}

/* Mobile notifications adjustments */
@media (max-width: 768px) {
    .signup-notification {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
        transform: translateY(100%);
    }
    
    .signup-notification.show {
        transform: translateY(0);
    }
    
    /* Cohort description mobile styles */
    .cohort-description {
        padding: 1.5rem;
    }
    
    .cohort-intro {
        font-size: 1rem;
    }
    
    .cohort-highlights {
        gap: 0.75rem;
    }
    
    .highlight-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .highlight-icon {
        font-size: 1rem;
    }
}