/* Google Fonts Import - Website Design System */
@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography System - All headings use Chivo, all body text uses Geist */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

p, span, div, a, button, input, textarea, li, td, th {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Component Classes for Inline Styles */
.section-subtitle-centered {
    color: #E6F2F6;
    text-align: center;
    margin-bottom: 2rem;
}

.final-cta-blue-text {
    color: #2E84B5;
}

.track-header-margin-top {
    margin-top: 40px;
}

.lifetime-features-margin-top {
    margin-top: 20px;
}

.section-cta-margin-top {
    margin-top: 40px;
}

/* Gradient Container Styles - Adapted from Main App */
.container-gradient-primary {
    background: 
        radial-gradient(ellipse at center, 
            rgba(46, 132, 181, 0.1) 0%, 
            rgba(25, 25, 30, 0.2) 70%, 
            rgba(20, 20, 25, 0.35) 100%),
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    border-radius: 12px;
    border: 1px solid rgba(46, 132, 181, 0.3);
    box-shadow: 
        0 4px 12px rgba(46, 132, 181, 0.25), 
        0 2px 4px rgba(46, 132, 181, 0.15),
        0 0 20px rgba(46, 132, 181, 0.1);
    padding: 3rem 2rem;
    box-sizing: border-box;
}

.container-gradient-secondary {
    background: 
        radial-gradient(ellipse at center, 
            rgba(245, 166, 35, 0.1) 0%, 
            rgba(25, 25, 30, 0.2) 70%, 
            rgba(20, 20, 25, 0.35) 100%),
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    border-radius: 12px;
    border: 1px solid rgba(245, 166, 35, 0.3);
    box-shadow: 
        0 4px 12px rgba(245, 166, 35, 0.25), 
        0 2px 4px rgba(245, 166, 35, 0.15),
        0 0 20px rgba(245, 166, 35, 0.1);
    padding: 3rem 2rem;
    box-sizing: border-box;
}

/* Special override for learning path cards - remove padding so images can fill to edges */
.learning-path-card.container-gradient-primary,
.learning-path-card.container-gradient-secondary {
    padding: 0;
    overflow: hidden;
}

.container-gradient-subtle {
    background: 
        radial-gradient(ellipse at center, 
            rgba(46, 132, 181, 0.06) 0%, 
            rgba(245, 166, 35, 0.06) 30%, 
            rgba(25, 25, 30, 0.15) 70%, 
            rgba(20, 20, 25, 0.25) 100%),
        #151518;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(46, 132, 181, 0.08), 0 2px 4px rgba(245, 166, 35, 0.08);
    padding: 3rem 2rem;
}

.container-gradient-vertical {
    background: 
        linear-gradient(180deg, 
            rgba(25, 25, 30, 0.15) 0%, 
            rgba(46, 132, 181, 0.08) 20%, 
            rgba(20, 20, 25, 0.1) 40%, 
            rgba(245, 166, 35, 0.08) 60%, 
            rgba(20, 20, 25, 0.1) 80%, 
            rgba(25, 25, 30, 0.25) 100%),
        #151518;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(46, 132, 181, 0.1), 0 2px 4px rgba(245, 166, 35, 0.1);
    padding: 3rem 2rem;
}

@media (max-width: 768px) {
    .container-gradient-primary,
    .container-gradient-secondary,
    .container-gradient-subtle,
    .container-gradient-vertical {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }
}

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: 
        radial-gradient(circle at 20% 30%, #131311 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, #121211 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, #111110 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, #121311 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, #101111 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, #131311 0%, transparent 50%),
        linear-gradient(135deg, #111211 0%, #121211 25%, #111110 50%, #131311 75%, #111211 100%);
    min-height: 100vh;
    background-attachment: fixed;
    color: #E6F2F6;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Add scroll padding to account for fixed header */
html {
    scroll-padding-top: 100px;
}

/* ===== SCROLL ANIMATIONS ===== */

/* Base animation styles - elements start hidden */
.animate-on-scroll,
.stagger-item,
.hero-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animate in state */
.animate-on-scroll.animate-in,
.stagger-item.animate-in,
.hero-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Fade up animation variant */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in from left */
.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up animation */
.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-up.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Stagger container - no initial animation */
.stagger-container {
    /* Container doesn't animate itself */
}

/* Hero specific animations with longer duration */
.hero-animate {
    transition-duration: 1.2s;
    transition-delay: 0.2s;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .stagger-item,
    .hero-animate,
    .fade-up,
    .fade-left,
    .fade-right,
    .scale-up {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* Header */
.header {
    background: #111211;
    color: #E6F2F6;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #374151;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-buttons {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #E6F2F6;
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}

.nav-link:hover {
    color: #F5A623;
}

.join-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.join-cta-btn {
    background: linear-gradient(135deg, #F5A623 0%, #F7B955 100%);
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.join-cta-btn:hover {
    background: linear-gradient(135deg, #F7B955 0%, #F9C76F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 166, 35, 0.4);
}

.bonus-text-below {
    font-size: 0.75rem;
    font-weight: 500;
    color: #F5A623;
    text-align: center;
    opacity: 0.9;
}

/* Floating Login Button */
.floating-login {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-login.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-login button {
    background: rgba(46, 132, 181, 0.95);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(46, 132, 181, 0.3);
    backdrop-filter: blur(10px);
}

.floating-login button:hover {
    background: rgba(46, 132, 181, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 132, 181, 0.4);
}

.floating-login svg {
    flex-shrink: 0;
}

/* Mobile responsiveness for floating login */
@media (max-width: 768px) {
    .floating-login {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-login button {
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .floating-login svg {
        width: 14px;
        height: 14px;
    }
}

/* Mobile responsiveness for header */
@media (max-width: 768px) {
    .header-buttons {
        gap: 1.5rem;
    }
    
    .join-cta-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .bonus-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .header-buttons {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.875rem;
    }
    
    .join-cta-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
        order: 3;
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 5rem 1.5rem;
    text-align: center;
}

.hero-container {
    max-width: 80rem;
    margin: 0 auto;
}

.logo-section {
    margin-bottom: 4rem;
}

.massive-logo {
    height: 16rem;
    width: auto;
    margin: 0 auto 2rem;
    display: block;
}

@media (min-width: 768px) {
    .massive-logo {
        height: 22rem;
    }
}

@media (min-width: 1024px) {
    .massive-logo {
        height: 28rem;
    }
}

@media (min-width: 1280px) {
    .massive-logo {
        height: 34rem;
    }
}

@media (min-width: 1536px) {
    .massive-logo {
        height: 40rem;
    }
}

/* Tagline Styling - MASSIVE size with high specificity */
h2.tagline-text {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #E6F2F6;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.1;
    display: block;
}

@media (min-width: 768px) {
    h2.tagline-text {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    h2.tagline-text {
        font-size: 5.5rem;
    }
}

@media (min-width: 1280px) {
    h2.tagline-text {
        font-size: 6rem;
    }
}

@media (min-width: 1536px) {
    h2.tagline-text {
        font-size: 7rem;
    }
}

.tagline-b1 {
    color: #2E84B5;
    text-shadow: 
        inset 0 0 20px rgba(46, 132, 181, 0.3),
        inset 0 0 40px rgba(46, 132, 181, 0.2),
        0 0 6px rgba(46, 132, 181, 0.5),
        0 0 12px rgba(46, 132, 181, 0.3),
        0 0 18px rgba(46, 132, 181, 0.2);
    animation: blue-glow 3s ease-in-out infinite;
}

.tagline-badass {
    color: #F5A623;
    text-shadow: 
        inset 0 0 20px rgba(245, 166, 35, 0.3),
        inset 0 0 40px rgba(245, 166, 35, 0.2),
        0 0 6px rgba(196, 133, 28, 0.5),
        0 0 12px rgba(196, 133, 28, 0.3),
        0 0 18px rgba(196, 133, 28, 0.2);
    animation: orange-glow 3s ease-in-out infinite;
}

@keyframes blue-glow {
    0% {
        text-shadow: 
            inset 0 0 20px rgba(46, 132, 181, 0.3),
            inset 0 0 40px rgba(46, 132, 181, 0.2),
            0 0 6px rgba(46, 132, 181, 0.5),
            0 0 12px rgba(46, 132, 181, 0.3),
            0 0 18px rgba(46, 132, 181, 0.2);
    }
    50% {
        text-shadow: 
            inset 0 0 30px rgba(46, 132, 181, 0.4),
            inset 0 0 60px rgba(46, 132, 181, 0.3),
            0 0 8px rgba(46, 132, 181, 0.6),
            0 0 16px rgba(46, 132, 181, 0.4),
            0 0 24px rgba(46, 132, 181, 0.25);
    }
    100% {
        text-shadow: 
            inset 0 0 20px rgba(46, 132, 181, 0.3),
            inset 0 0 40px rgba(46, 132, 181, 0.2),
            0 0 6px rgba(46, 132, 181, 0.5),
            0 0 12px rgba(46, 132, 181, 0.3),
            0 0 18px rgba(46, 132, 181, 0.2);
    }
}

@keyframes orange-glow {
    0% {
        text-shadow: 
            inset 0 0 20px rgba(245, 166, 35, 0.3),
            inset 0 0 40px rgba(245, 166, 35, 0.2),
            0 0 6px rgba(196, 133, 28, 0.5),
            0 0 12px rgba(196, 133, 28, 0.3),
            0 0 18px rgba(196, 133, 28, 0.2);
    }
    50% {
        text-shadow: 
            inset 0 0 30px rgba(245, 166, 35, 0.4),
            inset 0 0 60px rgba(245, 166, 35, 0.3),
            0 0 8px rgba(196, 133, 28, 0.6),
            0 0 16px rgba(196, 133, 28, 0.4),
            0 0 24px rgba(196, 133, 28, 0.25);
    }
    100% {
        text-shadow: 
            inset 0 0 20px rgba(245, 166, 35, 0.3),
            inset 0 0 40px rgba(245, 166, 35, 0.2),
            0 0 6px rgba(196, 133, 28, 0.5),
            0 0 12px rgba(196, 133, 28, 0.3),
            0 0 18px rgba(196, 133, 28, 0.2);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 
            0 0 15px rgba(245, 166, 35, 0.3),
            0 0 30px rgba(245, 166, 35, 0.15),
            0 0 45px rgba(245, 166, 35, 0.08);
        transform: scale(1);
    }
    25% {
        box-shadow: 
            0 0 18px rgba(245, 166, 35, 0.35),
            0 0 36px rgba(245, 166, 35, 0.18),
            0 0 54px rgba(245, 166, 35, 0.1);
        transform: scale(1.005);
    }
    50% {
        box-shadow: 
            0 0 22px rgba(245, 166, 35, 0.4),
            0 0 44px rgba(245, 166, 35, 0.22),
            0 0 66px rgba(245, 166, 35, 0.12);
        transform: scale(1.01);
    }
    75% {
        box-shadow: 
            0 0 18px rgba(245, 166, 35, 0.35),
            0 0 36px rgba(245, 166, 35, 0.18),
            0 0 54px rgba(245, 166, 35, 0.1);
        transform: scale(1.005);
    }
    100% {
        box-shadow: 
            0 0 15px rgba(245, 166, 35, 0.3),
            0 0 30px rgba(245, 166, 35, 0.15),
            0 0 45px rgba(245, 166, 35, 0.08);
        transform: scale(1);
    }
}

.hero-title {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #E6F2F6;
    margin-bottom: 2rem;
    line-height: 1.1;
}

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

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

.hero-title-accent {
    display: block;
    color: #2E84B5;
    margin-top: 0.5rem;
}

.hero-title-orange {
    color: #F5A623;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #E6F2F6;
    margin-bottom: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    opacity: 0.9;
}

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

.cta-banner {
    background: linear-gradient(to right, #F5A623, #f97316);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-title {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

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

.cta-banner-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
}

/* Form */
.form-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 28rem;
    margin: 0 auto;
}

.form-title {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111211;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    width: 1.25rem;
    height: 1.25rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 3rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px #2E84B5;
}

.submit-btn {
    width: 100%;
    background: #111211;
    color: #E6F2F6;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #374151;
}

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

.form-toggle {
    margin-top: 1rem;
    text-align: center;
}

.toggle-btn {
    color: #2E84B5;
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}

.toggle-btn:hover {
    text-decoration: none;
}

/* What We're NOT Section */
.not-section {
    padding: 5rem 1.5rem;
    background: #0f0f0f;
}

.not-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    max-width: 80rem;
    margin: 0 auto;
}

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

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

.not-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #111211;
    border-radius: 0.75rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    position: relative;
}

.not-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.not-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    z-index: -1;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.5),
        2px 2px 6px rgba(46, 132, 181, 0.3),
        -1px -1px 4px rgba(245, 166, 35, 0.2),
        0 0 8px rgba(46, 132, 181, 0.2);
}

.not-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #B91C1C 15%, 
        #DC2626 50%, 
        #B91C1C 85%, 
        transparent 100%);
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 2px;
    box-shadow: 
        0 0 8px rgba(185, 28, 28, 1),
        0 0 16px rgba(185, 28, 28, 0.6),
        inset 0 0 4px rgba(153, 27, 27, 0.8);
    z-index: 10;
}


/* Blue icons for odd items (following the website's alternating pattern) */
.not-grid .not-item:nth-child(odd) .not-icon {
    background: #2E84B5;
}

/* Orange icons for even items (following the website's alternating pattern) */
.not-grid .not-item:nth-child(even) .not-icon {
    background: #F5A623;
}

/* Row 2 adjustments for desktop 4-column layout to maintain proper alternation */
@media (min-width: 1024px) {
    /* Card 5: Orange (Row 2, Position 1) */
    .not-grid .not-item:nth-child(5) .not-icon {
        background: #F5A623;
    }
    
    /* Card 6: Blue (Row 2, Position 2) */
    .not-grid .not-item:nth-child(6) .not-icon {
        background: #2E84B5;
    }
    
    /* Card 7: Orange (Row 2, Position 3) */
    .not-grid .not-item:nth-child(7) .not-icon {
        background: #F5A623;
    }
    
    /* Card 8: Blue (Row 2, Position 4) */
    .not-grid .not-item:nth-child(8) .not-icon {
        background: #2E84B5;
    }
}

.not-content {
    flex: 1;
}

.not-text {
    font-size: 1rem;
    font-weight: 700;
    color: #E6F2F6;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.not-subtext {
    font-size: 0.875rem;
    color: #E6F2F6;
    opacity: 0.8;
    font-weight: 500;
    line-height: 1.4;
}

/* Problem Section */
.problem-section {
    padding: 5rem 1.5rem;
    background: #1a1a1a;
}

.section-container {
    max-width: 72rem;
    margin: 0 auto;
}

.section-title {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    color: #E6F2F6;
    margin-bottom: 2rem;
}

/* Color-specific section title classes - must come after base .section-title */
.section-title-orange {
    color: #F5A623;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-title-blue {
    color: #2E84B5;
    text-align: center;
    margin-bottom: 0.5rem;
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: #E6F2F6;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 500;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.problems-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

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

/* Responsive Problem Card Gradient Patterns */
/* Mobile: Alternating pattern as you go down */
@media (max-width: 767px) {
    .problem-card.container-gradient-primary:nth-child(even) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(245, 166, 35, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        box-shadow: 0 4px 12px rgba(245, 166, 35, 0.15), 0 2px 4px rgba(245, 166, 35, 0.1);
    }
    
    .problem-card.container-gradient-secondary:nth-child(odd) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(46, 132, 181, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        box-shadow: 0 4px 12px rgba(46, 132, 181, 0.15), 0 2px 4px rgba(46, 132, 181, 0.1);
    }
}

/* Desktop: Problem cards - 2 per row pattern (Row 1: Blue, Orange | Row 2: Orange, Blue | Row 3: Blue) */
@media (min-width: 768px) {
    /* Card 1: Blue (Row 1, Position 1) */
    .problems-grid .problem-card:nth-child(1) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(46, 132, 181, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(46, 132, 181, 0.15), 0 2px 4px rgba(46, 132, 181, 0.1);
        padding: 3rem 2rem;
    }
    
    /* Card 2: Orange (Row 1, Position 2) */
    .problems-grid .problem-card:nth-child(2) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(245, 166, 35, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(245, 166, 35, 0.15), 0 2px 4px rgba(245, 166, 35, 0.1);
        padding: 3rem 2rem;
    }
    
    /* Card 3: Orange (Row 2, Position 1) */
    .problems-grid .problem-card:nth-child(3) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(245, 166, 35, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(245, 166, 35, 0.15), 0 2px 4px rgba(245, 166, 35, 0.1);
        padding: 3rem 2rem;
    }
    
    /* Card 4: Blue (Row 2, Position 2) */
    .problems-grid .problem-card:nth-child(4) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(46, 132, 181, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(46, 132, 181, 0.15), 0 2px 4px rgba(46, 132, 181, 0.1);
        padding: 3rem 2rem;
    }
    
    /* Card 5: Blue (Row 3, Position 1) */
    .problems-grid .problem-card:nth-child(5) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(46, 132, 181, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(46, 132, 181, 0.15), 0 2px 4px rgba(46, 132, 181, 0.1);
        padding: 3rem 2rem;
    }
}

/* Desktop: "We Don't Do Memorization" cards - 4 per row pattern */
/* Row 1: Blue, Orange, Blue, Orange | Row 2: Orange, Blue, Orange, Blue */
@media (min-width: 1024px) {
    /* Default pattern for all not-items */
    .not-grid .not-item:nth-child(odd) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(46, 132, 181, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(46, 132, 181, 0.15), 0 2px 4px rgba(46, 132, 181, 0.1);
        padding: 3rem 2rem;
    }
    
    .not-grid .not-item:nth-child(even) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(245, 166, 35, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(245, 166, 35, 0.15), 0 2px 4px rgba(245, 166, 35, 0.1);
        padding: 3rem 2rem;
    }
    
    /* Row 2 cards need to start with orange to alternate properly */
    /* Card 5: Orange (Row 2, Position 1) */
    .not-grid .not-item:nth-child(5) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(245, 166, 35, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(245, 166, 35, 0.15), 0 2px 4px rgba(245, 166, 35, 0.1);
        padding: 3rem 2rem;
    }
    
    /* Card 6: Blue (Row 2, Position 2) */
    .not-grid .not-item:nth-child(6) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(46, 132, 181, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(46, 132, 181, 0.15), 0 2px 4px rgba(46, 132, 181, 0.1);
        padding: 3rem 2rem;
    }
    
    /* Card 7: Orange (Row 2, Position 3) */
    .not-grid .not-item:nth-child(7) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(245, 166, 35, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(245, 166, 35, 0.15), 0 2px 4px rgba(245, 166, 35, 0.1);
        padding: 3rem 2rem;
    }
    
    /* Card 8: Blue (Row 2, Position 4) */
    .not-grid .not-item:nth-child(8) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(46, 132, 181, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(46, 132, 181, 0.15), 0 2px 4px rgba(46, 132, 181, 0.1);
        padding: 3rem 2rem;
    }
}

.problem-card {
    background: #111211;
    padding: 0;
    border-radius: 1rem;
    border: 1px solid #374151;
    transition: border-color 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.problem-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0f0f;
}

.problem-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 1rem 1rem 0 0;
    display: block;
    background: #0f0f0f;
}

/* First problem card - show slightly more of the top of the image */
.problems-grid .problem-card:first-child .problem-card-image {
    object-position: center 30%;
}

/* Second problem card - scale up and focus on the top */
.problems-grid .problem-card:nth-child(2) .problem-card-image {
    object-fit: cover;
    transform: scale(1.1);
    object-position: center 5%;
}

.problem-card:hover .problem-card-image {
    transform: scale(1.05);
}

/* Second problem card hover effect - needs to account for existing scale */
.problems-grid .problem-card:nth-child(2):hover .problem-card-image {
    transform: scale(1.15);
}

.problem-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Mobile responsive adjustments for problem cards */
@media (max-width: 768px) {
    .problem-image {
        height: 160px;
    }
    
    .problem-content {
        padding: 1.5rem;
    }
    
    .problem-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .problem-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .problem-image {
        height: 140px;
    }
    
    .problem-content {
        padding: 1rem;
    }
    
    .problem-title {
        font-size: 1.125rem;
        line-height: 1.2;
    }
    
    .problem-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

.problem-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-icon-orange {
    background: #F5A623;
    color: white;
}

.problem-icon-blue {
    background: #2E84B5;
    color: white;
}

.problem-emoji {
    font-size: 1.5rem;
    line-height: 1;
}

.problem-title {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #E6F2F6;
    margin-bottom: 1rem;
}

.problem-description {
    font-size: 1.125rem;
    color: #E6F2F6;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.problem-solution {
    font-weight: 700;
    font-size: 1rem;
}

.problem-solution-blue {
    color: #2E84B5;
}

.problem-solution-orange {
    color: #F5A623;
}

/* How It Works Section - Single Column */
.how-it-works-section {
    padding: 5rem 1.5rem;
    background: 
        radial-gradient(ellipse at center, 
            rgba(245, 166, 35, 0.15) 0%, 
            rgba(245, 166, 35, 0.08) 30%, 
            rgba(25, 25, 30, 0.3) 70%, 
            rgba(15, 15, 20, 0.5) 100%),
        linear-gradient(135deg, 
            #0f0f12 0%, 
            #0e0e11 20%, 
            #0d0d10 40%, 
            #0e0e11 60%, 
            #0f0f12 80%, 
            #0f0f12 100%);
}

.steps-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .step-item {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .step-item:nth-child(even) {
        direction: rtl;
    }
    
    .step-item:nth-child(even) .step-content {
        direction: ltr;
    }
    
    .step-item:nth-child(even) .step-storyboard {
        direction: ltr;
    }
}

.step-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-number-blue {
    background: #2E84B5;
}

.step-number-orange {
    background: #F5A623;
}

.step-number-dark {
    background: #111211;
    border: 2px solid #E6F2F6;
}

.step-text {
    flex: 1;
}

.step-title {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #E6F2F6;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.step-description {
    color: #E6F2F6;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1.125rem;
}

/* Storyboard Placeholder */
.step-storyboard {
    width: 100%;
    min-height: 300px;
    background: #0f0f0f;
    border: 2px dashed #374151;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .step-storyboard {
        min-height: 400px;
    }
}

@media (min-width: 1024px) {
    .step-storyboard {
        min-height: 350px;
    }
}


.storyboard-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.storyboard-icon {
    color: #6B7280;
    opacity: 0.6;
}

.storyboard-text {
    color: #9CA3AF;
    font-size: 1rem;
    font-weight: 500;
}

/* Step Images */
.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
    transition: transform 0.3s ease;
    display: block;
    min-height: 300px;
}

@media (min-width: 768px) {
.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
    transition: transform 0.3s ease;
    display: block;
    min-height: 300px;
}

.step-image-small {
    width: 50%;
    height: 50%;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
    transition: transform 0.3s ease;
    display: block;
    min-height: 150px;
    margin: 0 auto;
}

.step-storyboard:hover .step-image {
    transform: scale(1.02);
}

.step-storyboard:hover .step-image-small {
    transform: scale(1.02);
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 1.5rem;
    background: #0f0f0f;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    max-width: 72rem;
    margin: 0 auto;
}

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

.pricing-card {
    background: #111211;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-basic:hover {
    border-color: #6B7280;
    transform: translateY(-4px);
}

.pricing-card-pro {
    border-color: #F5A623;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(245, 166, 35, 0.2);
}

.pricing-card-pro:hover {
    border-color: #F5A623;
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 25px 50px rgba(245, 166, 35, 0.3);
}

.pricing-card-elite:hover {
    border-color: #2E84B5;
    transform: translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #F5A623;
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E6F2F6;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #E6F2F6;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #E6F2F6;
}

.pricing-period {
    font-size: 1rem;
    color: #9CA3AF;
    font-weight: 500;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #E6F2F6;
}

.pricing-feature-icon {
    color: #10B981;
    flex-shrink: 0;
    background: #000000;
    border: 2px solid #10B981;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-cta-basic {
    background: #374151;
    color: #E6F2F6;
}

.pricing-cta-basic:hover {
    background: #4B5563;
}

.pricing-cta-pro {
    background: #F5A623;
    color: #000000;
}

.pricing-cta-pro:hover {
    background: #F7B955;
    transform: translateY(-2px);
}

.pricing-cta-elite {
    background: #2E84B5;
    color: #E6F2F6;
}

.pricing-cta-elite:hover {
    background: #3B9BC8;
}

.pricing-cta-secondary {
    background: transparent;
    color: #E6F2F6;
    border: 1px solid #374151;
    margin-top: 0.75rem;
}

.pricing-cta-secondary:hover {
    background: #374151;
    border-color: #4B5563;
}

.pricing-guarantee {
    text-align: center;
    margin-top: 3rem;
}

.guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #E6F2F6;
    font-size: 1rem;
    opacity: 0.9;
    max-width: 48rem;
    margin: 0 auto;
}

.guarantee-icon {
    color: #10B981;
    flex-shrink: 0;
    background: #000000;
    border: 2px solid #10B981;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

/* Social Proof Section */
.social-proof-section {
    padding: 5rem 1.5rem;
    background: #1a1a1a;
}

.social-proof-title {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #E6F2F6;
    text-align: center;
}

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

.social-proof-subtitle {
    font-size: 1.25rem;
    color: #E6F2F6;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

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

.testimonial-card {
    background: #111211;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #374151;
    transition: border-color 0.3s ease;
}

/* Desktop: Testimonials - 3 per row pattern (Blue, Orange, Blue) */
@media (min-width: 768px) {
    /* Default pattern: Blue for odd cards */
    .testimonials-grid .testimonial-card:nth-child(odd) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(46, 132, 181, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(46, 132, 181, 0.15), 0 2px 4px rgba(46, 132, 181, 0.1);
        padding: 3rem 2rem;
    }
    
    /* Card 2: Orange (middle card) */
    .testimonials-grid .testimonial-card:nth-child(2) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(245, 166, 35, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(245, 166, 35, 0.15), 0 2px 4px rgba(245, 166, 35, 0.1);
        padding: 3rem 2rem;
    }
}


.testimonial-text {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #E6F2F6;
    opacity: 0.9;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
}

.testimonial-author-orange {
    color: #F5A623;
}

.testimonial-author-blue {
    color: #2E84B5;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 1.5rem;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 132, 181, 0.25) 0%, rgba(46, 132, 181, 0.15) 20%, rgba(46, 132, 181, 0.08) 40%, rgba(46, 132, 181, 0.04) 60%, transparent 100%);
    border-radius: 50%;
    animation: internal-glow-breathing 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    pointer-events: none;
}

@keyframes internal-glow-breathing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 1;
    }
    75% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

.final-cta-container {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 3rem;
    }
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0.95;
}

.final-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .final-benefits-list {
        flex-direction: row;
        gap: 2rem;
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.benefit-icon {
    color: #86efac;
    width: 1.25rem;
    height: 1.25rem;
}

.benefit-text {
    font-weight: 500;
}

.final-tagline {
    margin-top: 2rem;
}

.tagline-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    opacity: 0.95;
}

/* Final tagline color styling to match hero tagline */
.final-tagline strong:first-of-type {
    color: #2E84B5;
    text-shadow: 
        inset 0 0 20px rgba(46, 132, 181, 0.3),
        inset 0 0 40px rgba(46, 132, 181, 0.2),
        0 0 6px rgba(46, 132, 181, 0.5),
        0 0 12px rgba(46, 132, 181, 0.3),
        0 0 18px rgba(46, 132, 181, 0.2);
    animation: blue-glow 3s ease-in-out infinite;
}

.final-tagline strong:last-of-type {
    color: #F5A623;
    text-shadow: 
        inset 0 0 20px rgba(245, 166, 35, 0.3),
        inset 0 0 40px rgba(245, 166, 35, 0.2),
        0 0 6px rgba(196, 133, 28, 0.5),
        0 0 12px rgba(196, 133, 28, 0.3),
        0 0 18px rgba(196, 133, 28, 0.2);
    animation: orange-glow 3s ease-in-out infinite;
}

/* Footer */
.footer {
    background: #111211;
    color: #E6F2F6;
    padding: 2rem 1.5rem;
    border-top: 1px solid #374151;
}

.footer-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    height: 2rem;
    width: auto;
    margin: 0 auto 1rem;
    display: block;
}

.footer-text {
    color: #9CA3AF;
}

/* Anti-Subscription Pricing Styles */
.packages-main-section {
    background: #111211;
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid #F5A623;
    margin-bottom: 3rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.lifetime-main-section {
    background: #111211;
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid #2E84B5;
    margin-bottom: 3rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.packages-details-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 2rem;
}

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

.lifetime-content-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 2rem;
}

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

.lifetime-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.anti-subscription-track {
    background: #111211;
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid #374151;
    transition: all 0.3s ease;
}

/* Glowy pulse animations for anti-subscription tracks */
.anti-subscription-track.track-header-orange {
    border-color: #F5A623;
    box-shadow: 
        inset 0 0 20px rgba(245, 166, 35, 0.1),
        inset 0 0 40px rgba(245, 166, 35, 0.05),
        0 0 15px rgba(245, 166, 35, 0.3),
        0 0 30px rgba(245, 166, 35, 0.15),
        0 0 45px rgba(245, 166, 35, 0.08);
    animation: orange-track-pulse 3s ease-in-out infinite;
}

.anti-subscription-track.track-header-blue {
    border-color: #2E84B5;
    box-shadow: 
        inset 0 0 20px rgba(46, 132, 181, 0.1),
        inset 0 0 40px rgba(46, 132, 181, 0.05),
        0 0 15px rgba(46, 132, 181, 0.3),
        0 0 30px rgba(46, 132, 181, 0.15),
        0 0 45px rgba(46, 132, 181, 0.08);
    animation: blue-track-pulse 3s ease-in-out infinite;
}

@keyframes orange-track-pulse {
    0% {
        box-shadow: 
            inset 0 0 20px rgba(245, 166, 35, 0.1),
            inset 0 0 40px rgba(245, 166, 35, 0.05),
            0 0 15px rgba(245, 166, 35, 0.3),
            0 0 30px rgba(245, 166, 35, 0.15),
            0 0 45px rgba(245, 166, 35, 0.08);
    }
    25% {
        box-shadow: 
            inset 0 0 25px rgba(245, 166, 35, 0.15),
            inset 0 0 50px rgba(245, 166, 35, 0.08),
            0 0 18px rgba(245, 166, 35, 0.35),
            0 0 36px rgba(245, 166, 35, 0.18),
            0 0 54px rgba(245, 166, 35, 0.1);
    }
    50% {
        box-shadow: 
            inset 0 0 30px rgba(245, 166, 35, 0.2),
            inset 0 0 60px rgba(245, 166, 35, 0.1),
            0 0 22px rgba(245, 166, 35, 0.4),
            0 0 44px rgba(245, 166, 35, 0.22),
            0 0 66px rgba(245, 166, 35, 0.12);
    }
    75% {
        box-shadow: 
            inset 0 0 25px rgba(245, 166, 35, 0.15),
            inset 0 0 50px rgba(245, 166, 35, 0.08),
            0 0 18px rgba(245, 166, 35, 0.35),
            0 0 36px rgba(245, 166, 35, 0.18),
            0 0 54px rgba(245, 166, 35, 0.1);
    }
    100% {
        box-shadow: 
            inset 0 0 20px rgba(245, 166, 35, 0.1),
            inset 0 0 40px rgba(245, 166, 35, 0.05),
            0 0 15px rgba(245, 166, 35, 0.3),
            0 0 30px rgba(245, 166, 35, 0.15),
            0 0 45px rgba(245, 166, 35, 0.08);
    }
}

@keyframes blue-track-pulse {
    0% {
        box-shadow: 
            inset 0 0 20px rgba(46, 132, 181, 0.1),
            inset 0 0 40px rgba(46, 132, 181, 0.05),
            0 0 15px rgba(46, 132, 181, 0.3),
            0 0 30px rgba(46, 132, 181, 0.15),
            0 0 45px rgba(46, 132, 181, 0.08);
    }
    25% {
        box-shadow: 
            inset 0 0 25px rgba(46, 132, 181, 0.15),
            inset 0 0 50px rgba(46, 132, 181, 0.08),
            0 0 18px rgba(46, 132, 181, 0.35),
            0 0 36px rgba(46, 132, 181, 0.18),
            0 0 54px rgba(46, 132, 181, 0.1);
    }
    50% {
        box-shadow: 
            inset 0 0 30px rgba(46, 132, 181, 0.2),
            inset 0 0 60px rgba(46, 132, 181, 0.1),
            0 0 22px rgba(46, 132, 181, 0.4),
            0 0 44px rgba(46, 132, 181, 0.22),
            0 0 66px rgba(46, 132, 181, 0.12);
    }
    75% {
        box-shadow: 
            inset 0 0 25px rgba(46, 132, 181, 0.15),
            inset 0 0 50px rgba(46, 132, 181, 0.08),
            0 0 18px rgba(46, 132, 181, 0.35),
            0 0 36px rgba(46, 132, 181, 0.18),
            0 0 54px rgba(46, 132, 181, 0.1);
    }
    100% {
        box-shadow: 
            inset 0 0 20px rgba(46, 132, 181, 0.1),
            inset 0 0 40px rgba(46, 132, 181, 0.05),
            0 0 15px rgba(46, 132, 181, 0.3),
            0 0 30px rgba(46, 132, 181, 0.15),
            0 0 45px rgba(46, 132, 181, 0.08);
    }
}

.track-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #374151;
}

.track-header-orange {
    border-color: #F5A623;
}

.track-header-blue {
    border-color: #2E84B5;
}

.track-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #E6F2F6;
}

.track-header-orange .track-title {
    color: #F5A623;
}

.track-header-blue .track-title {
    color: #2E84B5;
}

.track-subtitle {
    color: #E6F2F6;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.track-tagline {
    font-size: 0.875rem;
    font-weight: 600;
}

.track-header-orange .track-tagline {
    color: #F5A623;
}

.track-header-blue .track-tagline {
    color: #2E84B5;
}

/* Packages Section */
.packages-section {
    margin-bottom: 2rem;
}

.packages-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #E6F2F6;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Minute-Based Pricing Header */
.minute-pricing-header {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #374151;
}

.minute-pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #F5A623;
    margin-bottom: 0.5rem;
}

.minute-pricing-subtitle {
    font-size: 1.125rem;
    color: #E6F2F6;
    opacity: 0.9;
    font-weight: 500;
}

/* Progress Benefits */
.progress-benefits {
    padding: 2rem 0;
}

.benefits-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #F5A623;
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefits-explanation {
    text-align: center;
}

.benefits-text {
    font-size: 1.125rem;
    color: #E6F2F6;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

.progression-rewards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 40rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .progression-rewards {
        grid-template-columns: 1fr;
    }
}

.reward-level-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #0f0f0f;
    border-radius: 0.75rem;
    border: 1px solid #374151;
}

.level-badge {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: #000000;
    flex-shrink: 0;
}

.level-b1plus {
    background: #10B981;
}

.level-b2 {
    background: #3B82F6;
}

.level-b2plus {
    background: #8B5CF6;
}

.level-c1 {
    background: #F59E0B;
}

.level-c1plus {
    background: #8B5CF6;
}

.level-c2 {
    background: #DC2626;
}

/* Price highlighting styles */
.price-highlight-gold {
    color: #F5A623;
    font-weight: 700;
}

/* Hand-drawn crayon/colored pencil X crossing out effect - MAXIMUM STRENGTH */
.price-strikethrough {
    color: #2E84B5;
    font-size: 0.9em;
    margin-right: 10px;
    position: relative;
    display: inline-block;
}

.price-strikethrough::before,
.price-strikethrough::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    width: calc(100% + 12px);
    background: 
        radial-gradient(ellipse 3px 2px at 12% 25%, transparent 20%, #DC2626 35%, #B91C1C 50%, transparent 70%),
        radial-gradient(ellipse 2px 3px at 30% 75%, transparent 15%, #EF4444 25%, #DC2626 40%, transparent 60%),
        radial-gradient(ellipse 2px 2px at 55% 15%, transparent 10%, #B91C1C 20%, #DC2626 35%, transparent 55%),
        radial-gradient(ellipse 3px 2px at 75% 85%, transparent 20%, #EF4444 30%, #B91C1C 45%, transparent 65%),
        radial-gradient(ellipse 2px 1px at 85% 40%, transparent 25%, #DC2626 40%, transparent 60%),
        linear-gradient(90deg, 
            #DC2626 0%, 
            #B91C1C 3%,
            #991B1B 6%,
            transparent 8%, 
            #EF4444 12%, 
            #DC2626 18%, 
            #B91C1C 24%,
            transparent 28%, 
            #EF4444 35%, 
            #DC2626 42%, 
            #B91C1C 48%,
            transparent 52%, 
            #EF4444 58%, 
            #DC2626 65%, 
            #B91C1C 72%,
            transparent 76%, 
            #EF4444 82%, 
            #DC2626 88%, 
            #B91C1C 94%,
            transparent 97%, 
            #DC2626 100%);
    border-radius: 45% 55% 35% 65%;
    box-shadow: 
        0 0 6px rgba(220, 38, 38, 0.8), 
        0 0 12px rgba(220, 38, 38, 0.5),
        0 0 18px rgba(220, 38, 38, 0.3),
        inset 0 0 4px rgba(185, 28, 28, 0.4);
}

/* First stroke - top-left to bottom-right, thin at top, thick at bottom */
.price-strikethrough::before {
    height: 10px;
    transform: translateY(-50%) rotate(-28deg);
    clip-path: polygon(0% 80%, 100% 20%, 100% 100%, 0% 100%);
    border-radius: 85% 15% 35% 65%;
    animation: crayon-stroke-1 0.5s ease-out;
}

/* Second stroke - top-right to bottom-left, thick at top, thin at bottom */
.price-strikethrough::after {
    height: 10px;
    transform: translateY(-50%) rotate(32deg);
    clip-path: polygon(0% 20%, 100% 80%, 100% 100%, 0% 100%);
    border-radius: 15% 85% 65% 35%;
    animation: crayon-stroke-2 0.5s ease-out 0.2s both;
}

@keyframes crayon-stroke-1 {
    0% {
        width: 0;
        left: 15%;
        opacity: 0.8;
        transform: translateY(-50%) rotate(-28deg) scaleY(0.4);
    }
    30% {
        opacity: 0.9;
        transform: translateY(-50%) rotate(-28deg) scaleY(0.8);
    }
    70% {
        opacity: 1;
        transform: translateY(-50%) rotate(-28deg) scaleY(1.2);
    }
    100% {
        width: calc(100% + 8px);
        left: -4px;
        opacity: 1;
        transform: translateY(-50%) rotate(-28deg) scaleY(1);
    }
}

@keyframes crayon-stroke-2 {
    0% {
        width: 0;
        left: 75%;
        opacity: 0.7;
        transform: translateY(-50%) rotate(32deg) scaleY(0.5);
    }
    25% {
        opacity: 0.85;
        transform: translateY(-50%) rotate(32deg) scaleY(0.9);
    }
    60% {
        opacity: 1;
        transform: translateY(-50%) rotate(32deg) scaleY(1.3);
    }
    100% {
        width: calc(100% + 8px);
        left: -4px;
        opacity: 1;
        transform: translateY(-50%) rotate(32deg) scaleY(1);
    }
}

.founder-redirect {
    background: linear-gradient(135deg, #2E84B5, #F5A623);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
    border: 2px solid #F5A623;
}

.founder-redirect-title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.founder-redirect-subtitle {
    font-size: 0.9em;
    opacity: 0.9;
}

.level-benefit {
    color: #E6F2F6;
    font-weight: 600;
    font-size: 0.875rem;
}

.example-progression {
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}

.example-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #F5A623;
    text-align: center;
    margin-bottom: 1.5rem;
}

.example-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .example-comparison {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.example-before,
.example-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.example-level {
    font-size: 0.875rem;
    color: #E6F2F6;
    opacity: 0.8;
}

.example-value {
    font-size: 1rem;
    font-weight: 700;
    color: #E6F2F6;
}

.example-after .example-value {
    color: #10B981;
}

.example-arrow {
    font-size: 1.5rem;
    color: #F5A623;
    font-weight: 700;
}

@media (max-width: 640px) {
    .example-arrow {
        transform: rotate(90deg);
    }
}

.example-savings {
    text-align: center;
    font-size: 0.875rem;
    color: #F5A623;
    font-weight: 700;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.package-card {
    background: #0f0f0f;
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    border-color: #F5A623;
    transform: translateY(-2px);
}

.package-card-popular {
    border-color: #F5A623;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #F5A623;
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
}

.package-name {
    font-size: 1rem;
    font-weight: 600;
    color: #F5A623;
    margin-bottom: 0.75rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #E6F2F6;
    margin-bottom: 0.5rem;
}

.package-details {
    font-size: 0.875rem;
    color: #E6F2F6;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.package-sessions {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

.package-rate {
    font-size: 0.75rem;
    color: #F5A623;
    font-weight: 600;
    margin-bottom: 1rem;
}

.package-cta-btn {
    width: 100%;
    background: #F5A623;
    color: #000000;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-cta-btn:hover {
    background: #F7B955;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

/* Rewards Section */
.rewards-section {
    background: #0f0f0f;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.rewards-title {
    font-size: 1rem;
    font-weight: 600;
    color: #F5A623;
    margin-bottom: 1rem;
}

.rewards-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reward-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.reward-level {
    color: #E6F2F6;
    opacity: 0.9;
}

.reward-benefit {
    color: #10B981;
    font-weight: 600;
}

/* Progression Example */
.progression-example {
    background: rgba(245, 166, 35, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.progression-title {
    font-size: 1rem;
    font-weight: 600;
    color: #F5A623;
    margin-bottom: 1rem;
}

.progression-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progression-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.progression-level {
    color: #E6F2F6;
}

.progression-value {
    font-weight: 600;
    color: #E6F2F6;
}

.progression-item-highlight .progression-level,
.progression-item-highlight .progression-value {
    color: #10B981;
}

.progression-savings {
    font-size: 0.75rem;
    color: #F5A623;
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
}

/* Lifetime Pricing */
.lifetime-pricing {
    margin-bottom: 2rem;
}

.lifetime-pricing-simple {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.lifetime-card-simple {
    background: rgba(46, 132, 181, 0.1);
    border: 2px solid rgba(46, 132, 181, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    max-width: 32rem;
    width: 100%;
}

.lifetime-card {
    background: rgba(46, 132, 181, 0.1);
    border: 2px solid rgba(46, 132, 181, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.lifetime-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2E84B5;
    margin-bottom: 0.5rem;
}

.lifetime-period {
    font-size: 1.125rem;
    color: #E6F2F6;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.lifetime-value-comparison {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(46, 132, 181, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lifetime-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.feature-icon {
    color: #10B981;
    flex-shrink: 0;
    background: #000000;
    border: 2px solid #10B981;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-top: 0.125rem;
}

.lifetime-feature span {
    font-size: 0.875rem;
    color: #E6F2F6;
    opacity: 0.9;
}

/* Value Analysis - REMOVED */
.value-analysis {
    display: none;
}

.value-title {
    display: none;
}

.value-list {
    display: none;
}

/* Compact spacing for founder pricing box */
.container-gradient-primary {
    padding: 1.5rem 2rem;
    text-align: left;
}

.container-gradient-primary .value-title {
    display: block !important;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #E6F2F6;
    text-align: left;
}

.container-gradient-primary .value-list {
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Compact spacing for founder pricing box items */
.container-gradient-primary .value-item {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    font-size: 0.875rem;
    margin: 0;
    padding: 0.25rem 0;
    line-height: 1.3;
}

.container-gradient-primary .value-comparison {
    color: #E6F2F6;
    opacity: 0.9;
    flex-shrink: 0;
}

.container-gradient-primary .value-result {
    color: #10B981;
    font-weight: 600;
}

/* Founder message styling */
.founder-message {
    color: #E6F2F6;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-align: left;
}

/* Founder CTA button styling */
.founder-cta-button {
    margin-top: 1rem !important;
    width: 100% !important;
    text-align: center !important;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, #2E84B5 0%, #3B9BC8 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    box-shadow: 0 4px 12px rgba(46, 132, 181, 0.15) !important;
}

.founder-cta-button:hover {
    background: linear-gradient(135deg, #3B9BC8 0%, #4AA5D1 100%) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(46, 132, 181, 0.2) !important;
}

.value-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.value-comparison {
    color: #E6F2F6;
    opacity: 0.9;
}

.value-result {
    color: #10B981;
    font-weight: 600;
}

/* Perfect For */
.perfect-for {
    background: rgba(46, 132, 181, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(46, 132, 181, 0.3);
}

.perfect-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2E84B5;
    margin-bottom: 1rem;
}

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

.perfect-list li {
    font-size: 0.875rem;
    color: #E6F2F6;
    opacity: 0.9;
}

/* Subscription Comparison */
.subscription-comparison {
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    margin: 3rem 0;
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 1.5rem;
}

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

.comparison-card {
    background: #111211;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #dc2626;
}

.comparison-name {
    font-size: 1rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 0.75rem;
}

.comparison-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #E6F2F6;
    margin-bottom: 0.5rem;
}

.comparison-period {
    font-size: 0.875rem;
    color: #E6F2F6;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.comparison-total {
    font-size: 0.75rem;
    color: #dc2626;
    font-weight: 600;
}

.comparison-message {
    text-align: center;
}

.comparison-message p {
    font-size: 1.125rem;
    color: #dc2626;
    font-weight: 600;
}

/* Revolutionary Features */
.revolutionary-features {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 3rem 0;
}

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

.revolutionary-column {
    background: #111211;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #374151;
}

.revolutionary-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #E6F2F6;
}

.revolutionary-column:first-child .revolutionary-title {
    color: #F5A623;
}

.revolutionary-column:last-child .revolutionary-title {
    color: #2E84B5;
}

.revolutionary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.revolutionary-list li {
    color: #E6F2F6;
    opacity: 0.9;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.revolutionary-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: 900;
}

.revolutionary-column:first-child .revolutionary-list li::before {
    color: #F5A623;
}

.revolutionary-column:last-child .revolutionary-list li::before {
    color: #2E84B5;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
}

/* Remove spacing for section-cta when it comes directly after partnership logos */
.partnership-logos-section + .section-cta {
    margin-top: 0;
    padding-top: 1rem;
    border-top: none;
}

.section-cta-disclaimer {
    font-size: 0.875rem;
    color: #9CA3AF;
    font-weight: 500;
    margin-top: 1rem;
    line-height: 1.4;
}

.inline-link {
    color: #2E84B5;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #3B9BC8;
    text-decoration: none;
}

/* Anti-Subscription CTA */
.anti-subscription-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #E6F2F6;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: #E6F2F6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        gap: 2rem;
    }
}

.cta-disclaimer {
    font-size: 0.875rem;
    color: #9CA3AF;
    font-weight: 500;
}

/* Founding Member Pricing Section */
.founding-pricing-section {
    padding: 5rem 1.5rem;
    background: #1a1a1a;
}

.founding-pricing-card {
    max-width: 48rem;
    margin: 0 auto;
    text-align: left;
}

.founding-price-header {
    margin-bottom: 3rem;
    text-align: center;
}

.founding-price {
    font-size: 4rem;
    font-weight: 900;
    color: #2E84B5;
    margin-bottom: 1rem;
    line-height: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .founding-price {
        font-size: 5rem;
    }
}

.founding-period {
    font-size: 1.25rem;
    color: #E6F2F6;
    opacity: 0.9;
    font-weight: 500;
    text-align: center;
}

.founding-features {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Use gradient card styling for founding features */
.founding-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #111211;
    border-radius: 0.75rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

/* Apply gradient patterns to founding features */
@media (min-width: 768px) {
    .founding-feature:nth-child(odd) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(46, 132, 181, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(46, 132, 181, 0.15), 0 2px 4px rgba(46, 132, 181, 0.1);
        padding: 2rem 1.5rem;
    }
    
    .founding-feature:nth-child(even) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(245, 166, 35, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(245, 166, 35, 0.15), 0 2px 4px rgba(245, 166, 35, 0.1);
        padding: 2rem 1.5rem;
    }
}

.feature-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.founding-feature span:last-child {
    color: #E6F2F6;
    line-height: 1.5;
    font-size: 1rem;
}

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

.founding-cta-btn {
    background: linear-gradient(135deg, #2E84B5 0%, #3B9BC8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(46, 132, 181, 0.15);
    width: 100%;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.founding-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 132, 181, 0.2);
}

.founding-cta-disclaimer {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #9CA3AF;
    font-weight: 500;
}

/* Founding Justification Section */
.founding-justification-section {
    padding: 5rem 1.5rem;
    background: #111211;
}

/* Blue variant for founding justification section */
.founding-justification-section-blue {
    background: #000000;
    position: relative;
    overflow: hidden;
}

@keyframes founding-blue-glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0.9;
    }
    75% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

.justification-content {
    max-width: 64rem;
    margin: 0 auto;
}

.justification-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .justification-flow {
        flex-wrap: nowrap;
        gap: 3rem;
    }
}

/* Use gradient card styling for flow steps */
.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 250px;
    padding: 2rem 1.5rem;
    background: #111211;
    border-radius: 0.75rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .flow-step:first-child {
        background: 
            radial-gradient(ellipse at center, 
                rgba(46, 132, 181, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(46, 132, 181, 0.15), 0 2px 4px rgba(46, 132, 181, 0.1);
    }
    
    .flow-step:last-child {
        background: 
            radial-gradient(ellipse at center, 
                rgba(245, 166, 35, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(245, 166, 35, 0.15), 0 2px 4px rgba(245, 166, 35, 0.1);
    }
}

.flow-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.flow-icon-blue {
    background: linear-gradient(135deg, #2E84B5 0%, #3B9BC8 100%);
    box-shadow: 0 4px 12px rgba(46, 132, 181, 0.3);
}

.flow-icon-orange {
    background: linear-gradient(135deg, #F5A623 0%, #F7B955 100%);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.flow-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E6F2F6;
    margin-bottom: 0.75rem;
}

.flow-description {
    color: #E6F2F6;
    opacity: 0.9;
    line-height: 1.5;
}

.flow-arrow {
    font-size: 2rem;
    color: #F5A623;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .flow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

.value-comparison {
    margin-bottom: 4rem;
}

.comparison-title {
    font-size: 2rem;
    font-weight: 700;
    color: #F5A623;
    text-align: center;
    margin-bottom: 2rem;
}

/* Full-width comparison layout */
.comparison-full-width {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.comparison-option {
    padding: 2rem;
    background: #111211;
    border-radius: 12px;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

/* Apply neutral gradient patterns to comparison options */
.comparison-option:nth-child(1),
.comparison-option:nth-child(2),
.comparison-option:nth-child(3),
.comparison-option:nth-child(4),
.comparison-option:nth-child(5) {
    background: 
        radial-gradient(ellipse at center, 
            rgba(55, 65, 81, 0.1) 0%, 
            rgba(25, 25, 30, 0.2) 70%, 
            rgba(20, 20, 25, 0.35) 100%),
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    border: 1px solid #374151;
    box-shadow: 0 4px 12px rgba(55, 65, 81, 0.1), 0 2px 4px rgba(55, 65, 81, 0.05);
}

.comparison-option.comparison-highlight {
    background: 
        radial-gradient(ellipse at center, 
            rgba(16, 185, 129, 0.1) 0%, 
            rgba(25, 25, 30, 0.2) 70%, 
            rgba(20, 20, 25, 0.35) 100%),
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15), 0 4px 8px rgba(16, 185, 129, 0.1);
    transform: scale(1.02);
}

.comparison-option:hover {
    transform: translateY(-2px);
}

.comparison-option.comparison-highlight:hover {
    transform: scale(1.02) translateY(-2px);
}

.comparison-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #374151;
}

.comparison-highlight .comparison-header {
    border-bottom-color: rgba(16, 185, 129, 0.3);
}

.comparison-label {
    font-weight: 700;
    color: #E6F2F6;
    font-size: 1.5rem;
}

.comparison-price {
    font-size: 1.75rem;
    font-weight: 900;
    color: #dc2626;
    margin: 0.5rem 0;
}

.comparison-price-red {
    color: #dc2626;
}

.comparison-highlight .comparison-price {
    color: #10B981;
    font-size: 2rem;
}

.comparison-note {
    font-size: 1rem;
    color: #9CA3AF;
    font-style: italic;
}

.comparison-highlight .comparison-note {
    color: #10B981;
    font-weight: 600;
    font-style: normal;
}

.comparison-negatives,
.comparison-benefits {
    margin-top: 1rem;
    text-align: left !important;
}

.comparison-cta {
    margin-top: 1.5rem;
    text-align: left;
}

.comparison-cta-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    width: 100%;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.comparison-cta-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.2);
}

.negatives-title,
.benefits-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #dc2626;
}

.benefits-title {
    color: #10B981;
    text-align: left;
}

.negatives-list,
.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 0;
    text-align: left !important;
}

/* Specific override for comparison benefits list */
.comparison-benefits .benefits-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.comparison-benefits .benefits-list li {
    text-align: left !important;
}

.negatives-list li,
.benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    color: #E6F2F6;
    line-height: 1.5;
    font-size: 1rem;
}

.negatives-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
    font-size: 1.125rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
    font-size: 0.875rem;
    background: #000000;
    border: 2px solid #10B981;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}

.benefits-list li {
    padding-left: 2rem;
}

/* Mobile responsiveness for comparison options */
@media (max-width: 768px) {
    .comparison-option {
        padding: 1.5rem;
    }
    
    .comparison-label {
        font-size: 1.25rem;
    }
    
    .comparison-price {
        font-size: 1.5rem;
    }
    
    .comparison-highlight .comparison-price {
        font-size: 1.75rem;
    }
    
    .negatives-list li,
    .benefits-list li {
        font-size: 0.9rem;
        padding-left: 1.25rem;
    }
}

.urgency-message {
    text-align: center;
    padding: 2rem;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
}

/* Remove box styling when urgency message is inside comparison card */
.comparison-benefits .urgency-message {
    background: none;
    border: none;
    border-radius: 0;
    padding: 1.5rem 0 0 0;
}

.urgency-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1rem;
}

.urgency-text {
    color: #E6F2F6;
    line-height: 1.6;
    font-size: 1.125rem;
}

.urgency-text strong {
    color: #10B981;
    font-weight: 700;
}

/* Learning Flow Container Styles */
.learning-flow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 3rem 2rem;
    background: 
        radial-gradient(ellipse at center, 
            rgba(245, 166, 35, 0.15) 0%, 
            rgba(245, 166, 35, 0.08) 30%, 
            rgba(25, 25, 30, 0.2) 70%, 
            rgba(20, 20, 25, 0.35) 100%),
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    border-radius: 16px;
    border: 1px solid rgba(245, 166, 35, 0.3);
    box-shadow: 
        0 8px 32px rgba(245, 166, 35, 0.25), 
        0 4px 16px rgba(245, 166, 35, 0.15),
        0 0 40px rgba(245, 166, 35, 0.1);
    animation: learning-flow-glow 4s ease-in-out infinite;
}

/* Blue Learning Flow Container */
.learning-flow-container-blue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 3rem 2rem;
    background: 
        radial-gradient(ellipse at center, 
            rgba(46, 132, 181, 0.15) 0%, 
            rgba(46, 132, 181, 0.08) 30%, 
            rgba(25, 25, 30, 0.2) 70%, 
            rgba(20, 20, 25, 0.35) 100%),
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    border-radius: 16px;
    border: 1px solid rgba(46, 132, 181, 0.3);
    box-shadow: 
        0 8px 32px rgba(46, 132, 181, 0.25), 
        0 4px 16px rgba(46, 132, 181, 0.15),
        0 0 40px rgba(46, 132, 181, 0.1);
    animation: learning-flow-glow-blue 4s ease-in-out infinite;
}

@keyframes learning-flow-glow {
    0% {
        box-shadow: 
            0 8px 32px rgba(245, 166, 35, 0.25), 
            0 4px 16px rgba(245, 166, 35, 0.15),
            0 0 40px rgba(245, 166, 35, 0.1);
    }
    25% {
        box-shadow: 
            0 10px 40px rgba(245, 166, 35, 0.3), 
            0 5px 20px rgba(245, 166, 35, 0.18),
            0 0 50px rgba(245, 166, 35, 0.12);
    }
    50% {
        box-shadow: 
            0 12px 48px rgba(245, 166, 35, 0.35), 
            0 6px 24px rgba(245, 166, 35, 0.22),
            0 0 60px rgba(245, 166, 35, 0.15);
    }
    75% {
        box-shadow: 
            0 10px 40px rgba(245, 166, 35, 0.3), 
            0 5px 20px rgba(245, 166, 35, 0.18),
            0 0 50px rgba(245, 166, 35, 0.12);
    }
    100% {
        box-shadow: 
            0 8px 32px rgba(245, 166, 35, 0.25), 
            0 4px 16px rgba(245, 166, 35, 0.15),
            0 0 40px rgba(245, 166, 35, 0.1);
    }
}

@keyframes learning-flow-glow-blue {
    0% {
        box-shadow: 
            0 8px 32px rgba(46, 132, 181, 0.25), 
            0 4px 16px rgba(46, 132, 181, 0.15),
            0 0 40px rgba(46, 132, 181, 0.1);
    }
    25% {
        box-shadow: 
            0 10px 40px rgba(46, 132, 181, 0.3), 
            0 5px 20px rgba(46, 132, 181, 0.18),
            0 0 50px rgba(46, 132, 181, 0.12);
    }
    50% {
        box-shadow: 
            0 12px 48px rgba(46, 132, 181, 0.35), 
            0 6px 24px rgba(46, 132, 181, 0.22),
            0 0 60px rgba(46, 132, 181, 0.15);
    }
    75% {
        box-shadow: 
            0 10px 40px rgba(46, 132, 181, 0.3), 
            0 5px 20px rgba(46, 132, 181, 0.18),
            0 0 50px rgba(46, 132, 181, 0.12);
    }
    100% {
        box-shadow: 
            0 8px 32px rgba(46, 132, 181, 0.25), 
            0 4px 16px rgba(46, 132, 181, 0.15),
            0 0 40px rgba(46, 132, 181, 0.1);
    }
}

.flow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.flow-row.single-center {
    justify-content: center;
}

/* Modern CSS connecting lines instead of ugly arrows */
.flow-connector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Horizontal bidirectional connector - single arrow pointing right */
.flow-connector.horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 20px;
    position: relative;
}

.flow-connector.horizontal::before {
    content: '';
    width: 40px;
    height: 3px;
    background: #F5A623;
    border-radius: 2px;
    filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.4));
}

.flow-connector.horizontal::after {
    content: '';
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #F5A623;
    filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.4));
}

/* Vertical connector with downward arrow */
.flow-connector.vertical {
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, 
        #F5A623 0%, 
        #F7B955 50%, 
        #F5A623 100%);
    border-radius: 2px;
    margin: 1rem 0;
    box-shadow: 
        0 0 8px rgba(245, 166, 35, 0.4),
        0 0 16px rgba(245, 166, 35, 0.2);
    position: relative;
}

.flow-connector.vertical::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-width: 8px 6px 0 6px;
    border-color: #F5A623 transparent transparent transparent;
    filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.4));
}

@keyframes flow-pulse {
    0% {
        box-shadow: 
            0 0 8px rgba(245, 166, 35, 0.4),
            0 0 16px rgba(245, 166, 35, 0.2);
        opacity: 0.9;
    }
    50% {
        box-shadow: 
            0 0 12px rgba(245, 166, 35, 0.6),
            0 0 24px rgba(245, 166, 35, 0.3);
        opacity: 1;
    }
    100% {
        box-shadow: 
            0 0 8px rgba(245, 166, 35, 0.4),
            0 0 16px rgba(245, 166, 35, 0.2);
        opacity: 0.9;
    }
}

/* Curved connectors to center */
.flow-curves-to-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    margin: 1rem 0;
    position: relative;
}

.curve-connector {
    position: absolute;
    width: 200px;
    height: 80px;
}

.curve-connector.left {
    left: 20%;
}

.curve-connector.right {
    right: 20%;
    transform: scaleX(-1);
}

.curve-connector svg {
    width: 100%;
    height: 100%;
}

.curve-path {
    fill: none;
    stroke: #F5A623;
    stroke-width: 3;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px rgba(245, 166, 35, 0.4));
}

.flow-branch {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    margin: 1rem 0;
    position: relative;
}

.branch-connector {
    position: absolute;
    width: 150px;
    height: 80px;
}

.branch-connector.left {
    left: 25%;
}

.branch-connector.right {
    right: 25%;
    transform: scaleX(-1);
}

.branch-connector svg {
    width: 100%;
    height: 100%;
}

.branch-path {
    fill: none;
    stroke: #F5A623;
    stroke-width: 3;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px rgba(245, 166, 35, 0.4));
}

/* Intro Text Box Styles */
.intro-text-box {
    margin: 3rem auto;
    max-width: 48rem;
    text-align: left;
}

.intro-text-box p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #E6F2F6;
    opacity: 0.95;
}

.intro-text-box p:last-child {
    margin-bottom: 0;
}

/* Exclusive Offer Box Styling */
.exclusive-offer-box {
    position: relative;
    overflow: visible;
    border: 2px solid #2E84B5;
    padding: 3rem 4rem;
    box-shadow: 
        0 8px 32px rgba(46, 132, 181, 0.3), 
        0 4px 16px rgba(46, 132, 181, 0.2),
        0 0 40px rgba(46, 132, 181, 0.15),
        inset 0 0 20px rgba(46, 132, 181, 0.1);
    animation: exclusive-glow 3s ease-in-out infinite;
}

/* Mobile responsiveness for exclusive offer box padding */
@media (max-width: 768px) {
    .exclusive-offer-box {
        padding: 2rem 3rem;
    }
}

@media (max-width: 480px) {
    .exclusive-offer-box {
        padding: 1.5rem 2rem;
    }
}

@keyframes exclusive-glow {
    0% {
        box-shadow: 
            0 8px 32px rgba(46, 132, 181, 0.3), 
            0 4px 16px rgba(46, 132, 181, 0.2),
            0 0 40px rgba(46, 132, 181, 0.15),
            inset 0 0 20px rgba(46, 132, 181, 0.1);
    }
    50% {
        box-shadow: 
            0 12px 48px rgba(46, 132, 181, 0.4), 
            0 6px 24px rgba(46, 132, 181, 0.25),
            0 0 60px rgba(46, 132, 181, 0.2),
            inset 0 0 30px rgba(46, 132, 181, 0.15);
    }
    100% {
        box-shadow: 
            0 8px 32px rgba(46, 132, 181, 0.3), 
            0 4px 16px rgba(46, 132, 181, 0.2),
            0 0 40px rgba(46, 132, 181, 0.15),
            inset 0 0 20px rgba(46, 132, 181, 0.1);
    }
}

/* Exclusive Ribbon */
.exclusive-offer-box::before {
    content: 'EXCLUSIVE';
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #2E84B5 0%, #3B9BC8 50%, #2E84B5 100%);
    color: #FFFFFF;
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    box-shadow: 
        0 4px 12px rgba(46, 132, 181, 0.4),
        0 2px 6px rgba(46, 132, 181, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 10;
    animation: ribbon-bounce 2s ease-in-out infinite;
}

@keyframes ribbon-bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.05);
    }
}

/* Present Icon in Top Left */
.exclusive-offer-box::after {
    content: '🎁';
    position: absolute;
    top: -12px;
    left: -12px;
    font-size: 2rem;
    background: #000000;
    border: 3px solid #2E84B5;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 20px rgba(46, 132, 181, 0.4),
        0 3px 10px rgba(46, 132, 181, 0.3);
    z-index: 10;
    animation: present-pulse 2.5s ease-in-out infinite;
}

@keyframes present-pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 
            0 6px 20px rgba(46, 132, 181, 0.4),
            0 3px 10px rgba(46, 132, 181, 0.3);
    }
    25% {
        transform: scale(1.1) rotate(-5deg);
        box-shadow: 
            0 8px 25px rgba(46, 132, 181, 0.5),
            0 4px 12px rgba(46, 132, 181, 0.4);
    }
    50% {
        transform: scale(1.15) rotate(0deg);
        box-shadow: 
            0 10px 30px rgba(46, 132, 181, 0.6),
            0 5px 15px rgba(46, 132, 181, 0.5);
    }
    75% {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 
            0 8px 25px rgba(46, 132, 181, 0.5),
            0 4px 12px rgba(46, 132, 181, 0.4);
    }
}

/* Mobile responsiveness for exclusive offer */
@media (max-width: 768px) {
    .exclusive-offer-box::before {
        right: 10px;
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .exclusive-offer-box::after {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
        top: -10px;
        left: -10px;
    }
}

/* Learning Path Card Styles - Updated for Linear Flow */
.learning-path-card {
    display: flex;
    align-items: stretch;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 320px;
    max-width: 600px;
    width: 100%;
    min-height: 140px;
    margin: 0 auto;
}

.learning-path-card:hover {
    transform: translateY(-2px);
}

/* Linear Arrow Styles */
.linear-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    width: 100%;
}

.linear-arrow svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.learning-path-image {
    width: 140px;
    min-width: 140px;
    flex-shrink: 0;
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.learning-path-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.placeholder-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #374151 0%, #4B5563 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-image::before {
    content: '📚';
    font-size: 2rem;
    opacity: 0.6;
}

/* Different icons for different cards */
.flow-row:nth-child(1) .learning-path-card:nth-child(1) .placeholder-image::before {
    content: '📚';
}

.flow-row:nth-child(1) .learning-path-card:nth-child(3) .placeholder-image::before {
    content: '🎯';
}

.flow-row:nth-child(3) .placeholder-image::before {
    content: '🎤';
}

.flow-row:nth-child(5) .placeholder-image::before {
    content: '🔍';
}

.flow-row:nth-child(7) .learning-path-card:nth-child(1) .placeholder-image::before {
    content: '🎯';
}

.flow-row:nth-child(7) .learning-path-card:nth-child(3) .placeholder-image::before {
    content: '📖';
}

.learning-path-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.learning-path-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #E6F2F6;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.learning-path-description {
    font-size: 0.875rem;
    color: #E6F2F6;
    opacity: 0.8;
    line-height: 1.4;
}

/* Mobile responsiveness for learning flow */
@media (max-width: 768px) {
    .flow-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-arrow.horizontal {
        transform: rotate(90deg) scaleY(1.6);
        margin: 0.5rem 0;
    }
    
    .flow-arrow.bidirectional {
        transform: rotate(90deg) scaleY(1.6);
        margin: 0.5rem 0;
    }
    
    .flow-arrow.vertical-left,
    .flow-arrow.vertical-right {
        transform: rotate(90deg) scale(1.4);
        margin: 0.5rem 0;
    }
    
    .flow-arrows-to-center {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        max-width: none;
        margin: 0.5rem 0;
    }
    
    .flow-arrows-to-center .flow-arrow.vertical-left,
    .flow-arrows-to-center .flow-arrow.vertical-right {
        margin: 0;
    }
    
    .flow-branch {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        max-width: none;
    }
    
    .branch-arrow.left,
    .branch-arrow.right {
        margin: 0;
        transform: rotate(90deg) scale(1.4);
    }
    
    .learning-flow-container {
        gap: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .learning-path-card {
        min-width: 100%;
        max-width: 100%;
        height: 100px;
    }
    
    .learning-path-image {
        width: 100px;
        height: 100px;
    }
    
    .placeholder-image {
        width: 60px;
        height: 60px;
    }
    
    .placeholder-image::before {
        font-size: 1.5rem;
    }
    
    .learning-path-content {
        padding: 1rem;
    }
    
    .learning-path-title {
        font-size: 1rem;
    }
    
    .learning-path-description {
        font-size: 0.8rem;
    }
    
    .intro-text-box {
        margin: 2rem auto;
    }
    
    .intro-text-box p {
        font-size: 1rem;
    }
}

/* Responsive adjustments for founding sections */
@media (max-width: 768px) {
    .founding-price {
        font-size: 3rem;
    }
    
    .founding-features {
        gap: 1rem;
        grid-template-columns: 1fr;
    }
    
    .founding-feature {
        padding: 1rem;
    }
    
    .founding-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .comparison-title {
        font-size: 1.5rem;
    }
    
    .urgency-title {
        font-size: 1.5rem;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
    
    .flow-step {
        padding: 1.5rem 1rem;
    }
}

/* Perfect For Standalone Section */
.perfect-for-standalone {
    background: transparent;
    padding: 2rem 0;
    margin: 2rem 0;
}

.perfect-title-standalone {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2E84B5;
    margin-bottom: 1rem;
    text-align: left;
}

.perfect-list-standalone {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 32rem;
    margin: 0 auto;
    padding: 0;
}

.perfect-list-standalone li {
    font-size: 1rem;
    color: #E6F2F6;
    opacity: 0.9;
    text-align: left;
    line-height: 1.5;
}

/* Lifetime CTA Standalone Section */
.lifetime-cta-standalone {
    padding: 2rem 0;
    margin: 2rem 0;
    text-align: center;
}

/* Anti-Subscription Grid Layout */
.anti-subscription-pricing-section {
    padding: 5rem 1.5rem;
    background: #0f0f0f;
}

.anti-subscription-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .anti-subscription-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

/* Responsive adjustments for anti-subscription section */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .anti-subscription-grid {
        gap: 2rem;
    }
    
    .anti-subscription-track {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .reward-item,
    .value-item,
    .progression-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .lifetime-price {
        font-size: 2rem;
    }
}

/* AI Precision Section Styling */
.ai-precision-section {
    padding: 5rem 1.5rem;
    background: 
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    position: relative;
    overflow: hidden;
}

.ai-precision-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, rgba(245, 166, 35, 0.08) 20%, rgba(245, 166, 35, 0.04) 40%, rgba(245, 166, 35, 0.02) 60%, transparent 100%);
    border-radius: 50%;
    animation: ai-precision-glow 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes ai-precision-glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 1;
    }
    75% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

/* Button Styling Updates - Full Width and Darker Blue */
/* Make all non-navigation buttons full width and center-aligned */
.pricing-cta,
.pricing-cta-pro,
.pricing-cta-elite,
.founding-cta-btn,
.package-cta-btn,
.comparison-cta-btn,
.lifetime-cta-standalone,
.final-cta-btn {
    width: 100%;
    text-align: center;
    display: block;
    margin: 0 auto;
}

/* Update blue buttons to use branding blue with white text and consistent font sizes */
.pricing-cta-elite {
    background: #2E84B5 !important;
    color: #FFFFFF !important;
    font-size: 1rem;
}

.pricing-cta-elite:hover {
    background: #3B9BC8 !important;
    color: #FFFFFF !important;
}

.founding-cta-btn {
    background: linear-gradient(135deg, #2E84B5 0%, #3B9BC8 100%) !important;
    color: #FFFFFF !important;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(46, 132, 181, 0.15) !important;
}

.founding-cta-btn:hover {
    background: linear-gradient(135deg, #3B9BC8 0%, #4AA5D1 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 16px rgba(46, 132, 181, 0.2) !important;
}


/* Ensure lifetime ownership buttons follow the same styling */
.lifetime-cta-standalone .pricing-cta-elite {
    background: linear-gradient(135deg, #2E84B5 0%, #3B9BC8 100%) !important;
    color: #FFFFFF !important;
    font-size: 1rem !important;
    padding: 1rem 2rem !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    margin: 0 auto !important;
}

.lifetime-cta-standalone .pricing-cta-elite:hover {
    background: linear-gradient(135deg, #3B9BC8 0%, #4AA5D1 100%) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* Ensure all buttons have consistent font size */
.pricing-cta-pro {
    font-size: 1rem !important;
}

.package-cta-btn {
    font-size: 1rem !important;
}

/* AI Analysis Section */
.ai-analysis-section {
    padding: 5rem 1.5rem;
    background: #1a1a1a;
}

/* First AI Analysis Section - Blue Tint and Darker - Target by content */
.ai-analysis-section:has(.section-title-blue) {
    background: 
        radial-gradient(ellipse at center, 
            rgba(46, 132, 181, 0.15) 0%, 
            rgba(46, 132, 181, 0.08) 30%, 
            rgba(25, 25, 30, 0.3) 70%, 
            rgba(15, 15, 20, 0.5) 100%),
        linear-gradient(135deg, 
            #0f0f12 0%, 
            #0e0e11 20%, 
            #0d0d10 40%, 
            #0e0e11 60%, 
            #0f0f12 80%, 
            #0f0f12 100%) !important;
}

/* Fallback: Target the AI analysis section that contains "Who Gives a F*ck?" */
.ai-analysis-section:nth-of-type(1) {
    background: 
        radial-gradient(ellipse at center, 
            rgba(46, 132, 181, 0.15) 0%, 
            rgba(46, 132, 181, 0.08) 30%, 
            rgba(25, 25, 30, 0.3) 70%, 
            rgba(15, 15, 20, 0.5) 100%),
        linear-gradient(135deg, 
            #0f0f12 0%, 
            #0e0e11 20%, 
            #0d0d10 40%, 
            #0e0e11 60%, 
            #0f0f12 80%, 
            #0f0f12 100%) !important;
}

.ai-content-container {
    max-width: 80rem;
    margin: 0 auto;
}

.ai-intro-text {
    text-align: center;
    margin-bottom: 4rem;
}

.ai-intro-text p {
    font-size: 1.25rem;
    color: #E6F2F6;
    line-height: 1.6;
    max-width: 64rem;
    margin: 0 auto;
    opacity: 0.95;
}

.ai-intro-text strong {
    color: #F5A623;
    font-weight: 700;
}

.ai-comparison-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .ai-comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.ai-comparison-side {
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

/* Left side - Other Apps (Red/Warning theme) */
.ai-comparison-side:first-child {
    background: 
        radial-gradient(ellipse at center, 
            rgba(220, 38, 38, 0.08) 0%, 
            rgba(25, 25, 30, 0.2) 70%, 
            rgba(20, 20, 25, 0.35) 100%),
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15), 0 2px 4px rgba(220, 38, 38, 0.1);
}

/* Right side - SpanishSmash (Blue theme) */
.ai-comparison-side:last-child {
    background: 
        radial-gradient(ellipse at center, 
            rgba(46, 132, 181, 0.1) 0%, 
            rgba(25, 25, 30, 0.2) 70%, 
            rgba(20, 20, 25, 0.35) 100%),
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    border-color: rgba(46, 132, 181, 0.3);
    box-shadow: 0 4px 12px rgba(46, 132, 181, 0.25), 0 2px 4px rgba(46, 132, 181, 0.15);
}

.ai-side-title {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.ai-comparison-side:first-child .ai-side-title {
    color: #dc2626;
}

.ai-comparison-side:last-child .ai-side-title {
    color: #2E84B5;
}

.ai-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-feature-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.125rem;
}

.ai-comparison-side:first-child .ai-feature-icon {
    background: #dc2626;
    color: white;
}

.ai-comparison-side:last-child .ai-feature-icon {
    background: #2E84B5;
    color: white;
}

.ai-feature-content h4 {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #E6F2F6;
    margin-bottom: 0.5rem;
}

.ai-feature-content p {
    font-size: 1rem;
    color: #E6F2F6;
    opacity: 0.9;
    line-height: 1.5;
}

.ai-difference-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: 
        radial-gradient(ellipse at center, 
            rgba(245, 166, 35, 0.1) 0%, 
            rgba(25, 25, 30, 0.2) 70%, 
            rgba(20, 20, 25, 0.35) 100%),
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    border-radius: 12px;
    border: 1px solid rgba(245, 166, 35, 0.3);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25), 0 2px 4px rgba(245, 166, 35, 0.15);
}

.ai-difference-section h3 {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #F5A623;
    margin-bottom: 1.5rem;
}

.ai-difference-section p {
    font-size: 1.25rem;
    color: #E6F2F6;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
    opacity: 0.95;
}

.ai-matters-section {
    text-align: center;
    margin-bottom: 4rem;
}

.ai-matters-section h3 {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2E84B5;
    margin-bottom: 2rem;
}

.ai-matters-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    max-width: 64rem;
    margin: 0 auto;
}

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

.ai-matters-item {
    padding: 2rem;
    background: #111211;
    border-radius: 12px;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

/* Apply alternating gradient patterns to matters items */
@media (min-width: 768px) {
    .ai-matters-item:nth-child(odd) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(46, 132, 181, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-color: rgba(46, 132, 181, 0.3);
        box-shadow: 0 4px 12px rgba(46, 132, 181, 0.15), 0 2px 4px rgba(46, 132, 181, 0.1);
    }
    
    .ai-matters-item:nth-child(even) {
        background: 
            radial-gradient(ellipse at center, 
                rgba(245, 166, 35, 0.1) 0%, 
                rgba(25, 25, 30, 0.2) 70%, 
                rgba(20, 20, 25, 0.35) 100%),
            linear-gradient(135deg, 
                #151518 0%, 
                #141416 20%, 
                #131315 40%, 
                #141416 60%, 
                #151518 80%, 
                #151518 100%);
        border-color: rgba(245, 166, 35, 0.3);
        box-shadow: 0 4px 12px rgba(245, 166, 35, 0.15), 0 2px 4px rgba(245, 166, 35, 0.1);
    }
}

.ai-matters-item h4 {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #E6F2F6;
    margin-bottom: 1rem;
}

.ai-matters-item p {
    font-size: 1rem;
    color: #E6F2F6;
    opacity: 0.9;
    line-height: 1.6;
}

.ai-cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: 
        radial-gradient(ellipse at center, 
            rgba(46, 132, 181, 0.1) 0%, 
            rgba(25, 25, 30, 0.2) 70%, 
            rgba(20, 20, 25, 0.35) 100%),
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    border-radius: 12px;
    border: 1px solid rgba(46, 132, 181, 0.3);
    box-shadow: 0 4px 12px rgba(46, 132, 181, 0.25), 0 2px 4px rgba(46, 132, 181, 0.15);
}

.ai-cta-section h3 {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2E84B5;
    margin-bottom: 1rem;
}

.ai-cta-section p {
    font-size: 1.125rem;
    color: #E6F2F6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.ai-cta-btn {
    background: linear-gradient(135deg, #2E84B5 0%, #3B9BC8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(46, 132, 181, 0.15);
    display: inline-block;
    text-decoration: none;
}

.ai-cta-btn:hover {
    background: linear-gradient(135deg, #3B9BC8 0%, #4AA5D1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 132, 181, 0.2);
}

/* Mobile responsiveness for AI analysis section */
@media (max-width: 768px) {
    .ai-analysis-section {
        padding: 3rem 1.5rem;
    }
    
    .ai-intro-text p {
        font-size: 1.125rem;
    }
    
    .ai-comparison-grid {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .ai-comparison-side {
        padding: 2rem 1.5rem;
    }
    
    .ai-side-title {
        font-size: 1.5rem;
    }
    
    .ai-feature-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .ai-feature-content h4 {
        font-size: 1rem;
    }
    
    .ai-feature-content p {
        font-size: 0.9rem;
    }
    
    .ai-difference-section {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .ai-difference-section h3 {
        font-size: 1.75rem;
    }
    
    .ai-difference-section p {
        font-size: 1.125rem;
    }
    
    .ai-matters-section h3 {
        font-size: 1.75rem;
    }
    
    .ai-matters-grid {
        gap: 1.5rem;
    }
    
    .ai-matters-item {
        padding: 1.5rem;
    }
    
    .ai-matters-item h4 {
        font-size: 1.125rem;
    }
    
    .ai-matters-item p {
        font-size: 0.9rem;
    }
    
    .ai-cta-section {
        padding: 2rem 1.5rem;
    }
    
    .ai-cta-section h3 {
        font-size: 1.5rem;
    }
    
    .ai-cta-section p {
        font-size: 1rem;
    }
    
    .ai-cta-btn {
        width: 100%;
        padding: 1rem;
    }
}

/* Partnership Logos Section */
.partnership-logos-section {
    margin: 40px 0;
    text-align: center;
}

.partnership-logos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo-item {
    flex-shrink: 0;
}

.partnership-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* SpanishSmash logo gets darker background effect permanently */
.partnership-logos-container .logo-item:first-child .partnership-logo {
    background: #000000 !important;
    padding: 10px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    height: 184px !important; /* 2.3x the original 80px */
    transform: scale(1) !important;
}

/* Ensure hover effects don't override the dark background */
.partnership-logos-container .logo-item:first-child .partnership-logo:hover {
    background: #000000 !important;
    padding: 10px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
    transform: scale(1.05) !important;
    filter: brightness(1.1) contrast(1.3) !important;
}

.plus-sign {
    font-size: 2rem;
    font-weight: bold;
    color: #F5A623;
    margin: 0 10px;
}

.complete-learning-system {
    margin-top: 25px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F5A623;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(245, 166, 35, 0.3);
    background: linear-gradient(135deg, #F5A623 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        filter: drop-shadow(0 0 5px rgba(245, 166, 35, 0.5));
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(245, 166, 35, 0.8));
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .complete-learning-system {
        font-size: 1.4rem;
        letter-spacing: 1px;
        margin-top: 20px;
    }
}

.partnership-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.3);
}

.plus-sign {
    font-size: 3rem;
    font-weight: 700;
    color: #F5A623;
    text-shadow: 
        0 0 10px rgba(245, 166, 35, 0.5),
        0 0 20px rgba(245, 166, 35, 0.3),
        0 0 30px rgba(245, 166, 35, 0.2);
    animation: plus-glow 2s ease-in-out infinite;
}

@keyframes plus-glow {
    0% {
        text-shadow: 
            0 0 10px rgba(245, 166, 35, 0.5),
            0 0 20px rgba(245, 166, 35, 0.3),
            0 0 30px rgba(245, 166, 35, 0.2);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(245, 166, 35, 0.7),
            0 0 30px rgba(245, 166, 35, 0.4),
            0 0 45px rgba(245, 166, 35, 0.3);
        transform: scale(1.1);
    }
    100% {
        text-shadow: 
            0 0 10px rgba(245, 166, 35, 0.5),
            0 0 20px rgba(245, 166, 35, 0.3),
            0 0 30px rgba(245, 166, 35, 0.2);
        transform: scale(1);
    }
}

/* AI Box Styles for New Layout */
.ai-box {
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid #374151;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.ai-problem-box {
    background: 
        radial-gradient(ellipse at center, 
            rgba(220, 38, 38, 0.08) 0%, 
            rgba(25, 25, 30, 0.2) 70%, 
            rgba(20, 20, 25, 0.35) 100%),
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15), 0 2px 4px rgba(220, 38, 38, 0.1);
}

.ai-solution-box {
    background: 
        radial-gradient(ellipse at center, 
            rgba(46, 132, 181, 0.1) 0%, 
            rgba(25, 25, 30, 0.2) 70%, 
            rgba(20, 20, 25, 0.35) 100%),
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    border-color: rgba(46, 132, 181, 0.3);
    box-shadow: 0 4px 12px rgba(46, 132, 181, 0.25), 0 2px 4px rgba(46, 132, 181, 0.15);
}

.ai-box-title {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ai-problem-box .ai-box-title {
    color: #dc2626;
}

.ai-solution-box .ai-box-title {
    color: #2E84B5;
}

.ai-box-description {
    font-size: 1.125rem;
    color: #E6F2F6;
    margin-bottom: 1.5rem;
    text-align: center;
    opacity: 0.95;
}

.ai-box-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-left: 0;
}

.ai-box-list li {
    font-size: 1rem;
    color: #E6F2F6;
    line-height: 1.5;
    padding-left: 2rem;
    position: relative;
}

.ai-problem-box .ai-box-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
    font-size: 1.125rem;
}

.ai-box-conclusion {
    font-size: 1.125rem;
    color: #E6F2F6;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ai-box-note {
    font-size: 1rem;
    color: #E6F2F6;
    text-align: center;
    opacity: 0.8;
    font-style: italic;
}

.ai-feature-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-feature-heading {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2E84B5;
    margin-bottom: 1rem;
}

.ai-feature-text {
    font-size: 1rem;
    color: #E6F2F6;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ai-feature-text:last-child {
    margin-bottom: 0;
}

/* AI Features Grid for Two-Row Layout */
.ai-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.ai-feature-final {
    grid-column: 1 / -1;
    text-align: center;
}

/* Mobile responsiveness for AI boxes */
@media (max-width: 768px) {
    .ai-box {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .ai-box-title {
        font-size: 1.5rem;
    }
    
    .ai-box-description {
        font-size: 1rem;
    }
    
    .ai-box-list li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }
    
    .ai-box-conclusion {
        font-size: 1rem;
    }
    
    .ai-box-note {
        font-size: 0.9rem;
    }
    
    .ai-feature-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .ai-feature-heading {
        font-size: 1.125rem;
    }
    
    .ai-feature-text {
        font-size: 0.9rem;
    }
}

/* AI Feature Cards - New Individual Card Styling */
.ai-feature-card {
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid #374151;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.ai-feature-card-blue {
    background: 
        radial-gradient(ellipse at center, 
            rgba(46, 132, 181, 0.1) 0%, 
            rgba(25, 25, 30, 0.2) 70%, 
            rgba(20, 20, 25, 0.35) 100%),
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    border-color: rgba(46, 132, 181, 0.3);
    box-shadow: 0 4px 12px rgba(46, 132, 181, 0.25), 0 2px 4px rgba(46, 132, 181, 0.15);
}

.ai-feature-card-orange {
    background: 
        radial-gradient(ellipse at center, 
            rgba(245, 166, 35, 0.1) 0%, 
            rgba(25, 25, 30, 0.2) 70%, 
            rgba(20, 20, 25, 0.35) 100%),
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    border-color: rgba(245, 166, 35, 0.3);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25), 0 2px 4px rgba(245, 166, 35, 0.15);
}

.ai-feature-card-special {
    background: 
        radial-gradient(ellipse at center, 
            rgba(245, 166, 35, 0.15) 0%, 
            rgba(245, 166, 35, 0.08) 30%, 
            rgba(25, 25, 30, 0.2) 70%, 
            rgba(20, 20, 25, 0.35) 100%),
        linear-gradient(135deg, 
            #151518 0%, 
            #141416 20%, 
            #131315 40%, 
            #141416 60%, 
            #151518 80%, 
            #151518 100%);
    border: 2px solid rgba(245, 166, 35, 0.4);
    box-shadow: 
        0 8px 32px rgba(245, 166, 35, 0.3), 
        0 4px 16px rgba(245, 166, 35, 0.2),
        0 0 40px rgba(245, 166, 35, 0.15),
        inset 0 0 20px rgba(245, 166, 35, 0.1);
    animation: ai-special-glow 3s ease-in-out infinite;
    position: relative;
    overflow: visible;
}

@keyframes ai-special-glow {
    0% {
        box-shadow: 
            0 8px 32px rgba(245, 166, 35, 0.3), 
            0 4px 16px rgba(245, 166, 35, 0.2),
            0 0 40px rgba(245, 166, 35, 0.15),
            inset 0 0 20px rgba(245, 166, 35, 0.1);
    }
    50% {
        box-shadow: 
            0 12px 48px rgba(245, 166, 35, 0.4), 
            0 6px 24px rgba(245, 166, 35, 0.25),
            0 0 60px rgba(245, 166, 35, 0.2),
            inset 0 0 30px rgba(245, 166, 35, 0.15);
    }
    100% {
        box-shadow: 
            0 8px 32px rgba(245, 166, 35, 0.3), 
            0 4px 16px rgba(245, 166, 35, 0.2),
            0 0 40px rgba(245, 166, 35, 0.15),
            inset 0 0 20px rgba(245, 166, 35, 0.1);
    }
}

.ai-feature-card-title {
    font-family: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #F5A623;
    margin-bottom: 1.5rem;
    text-align: left;
}

.ai-feature-card-text {
    font-size: 1rem;
    color: #E6F2F6;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.ai-feature-card-text:last-child {
    margin-bottom: 0;
}

.ai-bottom-line {
    text-align: center;
    padding: 2rem;
    margin: 2rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile responsiveness for AI feature cards */
@media (max-width: 768px) {
    .ai-feature-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .ai-feature-card-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .ai-feature-card-text {
        font-size: 0.9rem;
    }
    
    .ai-bottom-line {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
}

/* Mobile responsiveness for partnership logos */
@media (max-width: 768px) {
    .partnership-logos-container {
        gap: 2rem;
        flex-direction: column;
    }
    
    .partnership-logo {
        height: 120px;
        max-width: 300px;
    }
    
    .plus-sign {
        font-size: 2rem;
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .partnership-logos-container {
        gap: 1.5rem;
    }
    
    .partnership-logo {
        height: 100px;
        max-width: 240px;
    }
    
    .plus-sign {
        font-size: 1.5rem;
    }
}
