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

body {
    font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2F314B;
    background-color: #FAFAFF;
    font-size: 18px;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #0B0D1B;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-cta {
    background: #5F5AA8;
    color: white !important;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #4A37E6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 69, 255, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00b1b1 0%, #00b1b1 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Hero Section - Upsell with Timer Bar */
.hero.upsell-hero {
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 177, 177, 0.9) 0%, rgba(0, 177, 177, 0.9) 100%);
    opacity: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.book-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-center {
    text-align: center;
    position: relative;
}

.hero-title {
    font-family: 'Inter', 'Arial Black', Arial, sans-serif !important;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.hero.upsell-hero .hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: 'Inter', 'Arial Black', Arial, sans-serif !important;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #FEB850;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.version-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00b1b1, #00b1b1);
    color: white;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    right: -50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-family: 'Inter', 'Arial Black', Arial, sans-serif !important;
    font-size: 1.6rem;
    font-weight: 400;
    margin-top: 20px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.author-section {
    text-align: center;
}

.author-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.author-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFB997;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.author-title {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 600;
    color: #e2e8f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta-section {
    background: #FAB200;
    padding: 50px 0;
    text-align: center;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-heading {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: #5F5AA8;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(90, 69, 255, 0.3);
}

.cta-button:hover {
    background: #4A37E6;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(90, 69, 255, 0.4);
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 800;
    color: #0B0D1B;
    margin-bottom: 60px;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.2;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    background: 
        radial-gradient(circle at 20% 80%, rgba(44, 181, 181, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(44, 181, 181, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(107, 102, 174, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(44, 181, 181, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 10% 10%, rgba(107, 102, 174, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 248, 255, 0.8) 100%);
    color: #333;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #f8f9fa;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(44, 181, 181, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 70% 30%, rgba(107, 102, 174, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse at 50% 50%, rgba(44, 181, 181, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    border-radius: 15px;
}

.problem-card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(44, 181, 181, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(107, 102, 174, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.problem-card .mask-decoration-1 {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    background: 
        radial-gradient(circle at 40% 40%, rgba(44, 181, 181, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.problem-card .mask-decoration-2 {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 30px;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(107, 102, 174, 0.12) 0%, transparent 80%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.problem-card .mask-decoration-3 {
    position: absolute;
    top: 50%;
    left: -10px;
    width: 30px;
    height: 60px;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(44, 181, 181, 0.1) 0%, transparent 80%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.problem-card > * {
    position: relative;
    z-index: 1;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: #5F5AA8;
}

.checkmark-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.problem-card h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
}

/* Reassurance Section */
.reassurance-section {
    padding: 80px 0;
    background-color: white;
}

.reassurance-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
    line-height: 1.4;
}

.video-intro {
    text-align: center;
    font-size: 1.5rem;
    color: #718096;
    margin-bottom: 40px;
    font-weight: 400;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.main-video {
    width: 100%;
    height: auto;
}

.video-caption {
    text-align: center;
}

.video-caption p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 20px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-text {
    text-align: left;
    font-size: 1.3rem;
    color: #2F314B;
    margin-bottom: 30px;
    line-height: 1.7;
}

.media-logos {
    text-align: center;
}

.media-mentions {
    font-size: 1.3rem;
    color: #0B0D1B;
    font-weight: 600;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.press-kit {
    text-align: center;
    margin-top: 20px;
}

.press-kit-link {
    display: inline-block;
    background: #FE3162;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.press-kit-link:hover {
    background: #3A9FE9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 49, 98, 0.4);
}

.media-img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

/* Podcast Section */
.podcast-section {
    padding: 80px 0;
    background-color: white;
}

.podcast-intro {
    text-align: center;
    font-size: 1.4rem;
    color: #718096;
    margin-bottom: 50px;
    font-style: italic;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.podcast-episode {
    background: #f7fafc;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #68d391;
}

.podcast-episode h3 {
    color: #2d3748;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.podcast-player {
    width: 100%;
    margin: 20px 0;
}

.podcast-episode p {
    color: #718096;
    font-style: italic;
    margin-top: 15px;
}

/* Hope Section */
.hope-section {
    padding: 80px 0;
    background-color: white;
}

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

/* Course Details */
.course-details {
    padding: 80px 0;
    background-color: #f7fafc;
}

.criteria-list {
    list-style: none;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.criteria-list li {
    padding: 15px 0;
    font-size: 1.1rem;
    color: #718096;
    border-bottom: 1px solid #e2e8f0;
}

.criteria-list li:before {
    content: "✓ ";
    color: #68d391;
    font-weight: bold;
    margin-right: 10px;
}

/* Course About */
.course-about {
    padding: 80px 0;
    background-color: white;
}

.course-description {
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.course-description p {
    margin-bottom: 25px;
}

.course-link {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
}

.course-link:hover {
    text-decoration: underline;
}

.highlight-quote {
    color: #4299e1;
    font-style: italic;
    font-weight: 500;
}

.emphasis-text {
    color: #4299e1;
    font-style: italic;
    font-weight: 500;
}

.fast-acronym {
    color: #4299e1;
    font-weight: bold;
    font-size: 1.3rem;
}

.fast-letters {
    color: #4299e1;
    font-weight: bold;
}

/* Take-Aways Section */
.takeaways-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
}

.takeaways-header {
    text-align: center;
    margin-bottom: 40px;
}

.takeaways-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.takeaways-subtitle {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.takeaways-box {
    background-color: #ffd89b;
    padding: 40px;
    border-radius: 15px;
    max-width: 1000px;
    margin: 0 auto;
    color: #2d3748;
}

.takeaways-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.takeaway-highlight {
    color: #4299e1;
    font-weight: 500;
}

.takeaway-bold {
    font-weight: bold;
    color: #2d3748;
}

/* Modules Section */
.modules-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #5F5AA8, #525b9c);
    position: relative;
}

.modules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="60" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

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

.modules-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
    font-weight: 700;
}

/* Module Badges */
.module-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.educate-badge {
    background: linear-gradient(45deg, #37D894, #2BB77A);
    color: #ffffff;
}

.navigate-badge {
    background: linear-gradient(45deg, #5F5AA8, #5F5AA8);
    color: #ffffff;
}

.activate-badge {
    background: linear-gradient(45deg, #FEB850, #FEA540);
    color: #ffffff;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.pricing-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3748;
}

.pricing-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(90deg, #5F5AA8, #525b9c);
    color: white;
    padding: 30px 20px;
}

.pricing-cell {
    padding: 20px;
    text-align: center;
}

.course-title {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 20px;
}

.features-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FEB850;
}

.package-label {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.package-description {
    font-size: 1rem;
    margin-bottom: 15px;
}

.package-old-price {
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.package-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FEB850;
}

.pricing-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.feature-description {
    padding: 15px 20px;
    text-align: left;
    border-right: 1px solid #e2e8f0;
}

.feature-check {
    padding: 15px 20px;
    text-align: center;
    font-size: 1.5rem;
    border-right: 1px solid #e2e8f0;
}

.feature-check.included {
    color: #2cb5b5;
}

.bonus-header-row {
    background: linear-gradient(90deg, #5F5AA8, #525b9c);
    color: white;
}

.bonus-header {
    font-style: italic;
    font-weight: bold;
    color: #FEB850;
    font-size: 1.1rem;
}

.bonus-exclusive-row {
    background: linear-gradient(90deg, #5F5AA8, #525b9c);
    color: white;
}

.bonus-exclusive {
    font-style: italic;
    font-weight: bold;
    color: #FEB850;
    font-size: 1.1rem;
}

.feature-check.not-included {
    color: #6b66ae;
    font-weight: bold;
    font-size: 1.8rem;
}

.pricing-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
}

.feature-description {
    padding: 12px 20px;
    text-align: left;
    border-right: 1px solid #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.feature-description strong {
    color: #2d3748;
}

.included-bonus {
    color: #FEB850;
    font-style: italic;
    font-weight: bold;
}

.pricing-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(90deg, #5F5AA8, #525b9c);
    color: white;
    padding: 30px 20px;
}

.retail-value,
.you-pay {
    font-weight: bold;
    font-size: 1.2rem;
}

.retail-price {
    text-decoration: line-through;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.final-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FEB850;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.module-card {
    background: white;
    color: #2d3748;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.module-card:hover {
    transform: translateY(-10px);
}

.module-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 30px 0;
    color: #2d3748;
    line-height: 1.4;
    font-weight: 700;
}

.module-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    flex-grow: 1;
    margin-top: auto;
    font-weight: 400;
}

.module-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.educate {
    border-top: 4px solid #37D894;
}

.navigate {
    border-top: 4px solid #4AAFF9;
}

.activate {
    border-top: 4px solid #FEB850;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

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

.testimonial-card {
    background: #FAFAFF;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #37D894;
}

.testimonial-card h4 {
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.4rem;
}

.testimonial-card p {
    color: #718096;
    font-style: italic;
    line-height: 1.5;
    font-size: 1.2rem;
}

/* Final CTA */
.final-cta {
    padding: 60px 0;
    background: linear-gradient(45deg, #5F5AA8, #00b1b1);
}

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

.final-cta-btn {
    font-size: 1.5rem;
    padding: 20px 50px;
}

/* Footer */
.footer {
    background-color: #0B0D1B;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #00b1b1;
}

.footer p {
    margin-bottom: 30px;
    color: #e2e8f0;
    font-size: 1.1rem;
    opacity: 1;
}

.social-links {
    margin-bottom: 30px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3A9FE9;
}

.copyright {
    font-size: 1rem;
    color: #718096;
    border-top: 1px solid #4a5568;
    padding-top: 20px;
}

.copyright a {
    color: #00b1b1;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-title {
        font-family: 'Inter', 'Arial Black', Arial, sans-serif !important;
        font-size: 2.5rem;
        font-weight: 900;
        letter-spacing: 0.02em;
    }

    .hero-subtitle {
        font-family: 'Inter', 'Arial Black', Arial, sans-serif !important;
        font-size: 2rem;
        font-weight: 900;
        letter-spacing: 0.02em;
    }

    .version-badge {
        position: static;
        margin: 20px 0;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .podcast-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .logo-img {
        height: 35px;
    }
}

/* Additional Visual Improvements */

/* Add a subtle scroll progress indicator */
:root {
    --scroll-progress: 0%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: var(--scroll-progress);
    height: 3px;
    background: linear-gradient(90deg, #5F5AA8, #FE3162);
    z-index: 10000;
    transition: width 0.3s ease;
}

/* Improve loading states */
.loaded {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Enhanced hover effects for better interactivity */
.cta-button {
    position: relative;
    overflow: hidden;
}

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

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

/* Add pulse animation to version badge */
.version-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Better focus states for accessibility */
.cta-button:focus,
button:focus,
a:focus {
    outline: 2px solid #5F5AA8;
    outline-offset: 2px;
}

/* Improve text readability with better contrast */
.hero-description {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    opacity: 1 !important;
    color: white !important;
}

/* Add subtle animations for section entries */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Improve card spacing and shadows */
.problem-card,
.module-card,
.testimonial-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Add a floating back-to-top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #5F5AA8, #4A37E6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(90, 69, 255, 0.4);
}

/* Enhanced mobile responsiveness */
@media (max-width: 480px) {
    .hero-title {
        font-family: 'Inter', 'Arial Black', Arial, sans-serif !important;
        font-size: 2rem;
        font-weight: 900;
        letter-spacing: 0.02em;
    }

    .hero-subtitle {
        font-family: 'Inter', 'Arial Black', Arial, sans-serif !important;
        font-size: 1.8rem;
        font-weight: 900;
        letter-spacing: 0.02em;
    }

    .cta-heading {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 0 10px;
    }

    .container {
        padding: 0 15px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px;
    margin: 0;
    font-size: 1.2rem;
    color: #2d3748;
    cursor: pointer;
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f7fafc);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #5F5AA8;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 25px;
}

.faq-answer p {
    margin: 0;
    color: #718096;
    line-height: 1.6;
}

/* Guarantee Section Styles */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #5F5AA8 0%, #525b9c 100%);
    color: white;
}

.guarantee-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.guarantee-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.guarantee-box p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Enhanced testimonial styles */
.testimonial-rating {
    margin-top: 15px;
    font-size: 1.2rem;
}

.testimonial-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Improved responsive design for new sections */
@media (max-width: 768px) {
    .guarantee-box {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .guarantee-box h2 {
        font-size: 1.8rem;
    }

    .guarantee-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        width: 200px;
        text-align: center;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 20px;
    }

    .faq-question::after {
        right: 20px;
    }
}

/* Enhanced About Section with Image */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-text-column {
    max-width: none;
}

.about-image-column {
    text-align: center;
}

.about-figure {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-figure:hover {
    transform: scale(1.02);
}

/* Logo styling improvements */
.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
}

/* Book cover styling improvements */
.book-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.book-img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Author image styling */
.author-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for new layout */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-image-column {
        order: -1;
    }

    .about-figure {
        max-width: 300px;
    }

    .logo-img {
        height: 40px;
    }

    .book-img {
        max-width: 200px;
    }

    .author-img {
        width: 120px;
        height: 120px;
    }
}

/* Busy Parents Section */
.busy-parents-section {
    margin: 3em 0 2.5em 0;
    background: linear-gradient(90deg, #5F5AA8, #525b9c);
    border-radius: 2em;
    box-shadow: 0 6px 32px rgba(90, 69, 255, 0.2);
    padding: 3em 0 2.5em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.busy-parents-section .container {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.busy-parents-section h2 {
    font-size: 2.1em;
    color: #fff;
    font-weight: 800;
    margin-bottom: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

.busy-parents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    max-width: 900px;
    margin: 0 auto;
}

.busy-parents-bullet {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1.2em;
    padding: 2em 1.2em;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.busy-parents-bullet div {
    font-size: 1.18em;
}

/* Enhanced About Section Styling - Professional Theme */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    color: #333;
}

.about-section .section-title {
    color: #0B0D1B;
    margin-bottom: 50px;
}

.about-content--media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 40px;
}

.about-text-main,
.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2F314B;
    margin-bottom: 30px;
}

.highlight {
    color: #5F5AA8;
    font-weight: 600;
}

.about-quote {
    background: none;
    border: none;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #718096;
    font-style: italic;
    margin: 30px 0;
    padding: 0;
    quotes: "" " " "" "'" "'";
}

.about-quote::before {
    content: open-quote;
    font-size: 2rem;
    color: #5F5AA8;
    vertical-align: top;
    line-height: 0.1em;
    margin-right: 0.25em;
}

.about-quote::after {
    content: close-quote;
    font-size: 2rem;
    color: #5F5AA8;
    vertical-align: baseline;
    line-height: 0.1em;
    margin-left: 0.25em;
}

/* Media Logos Grid */
.media-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    margin-top: 30px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.media-logo {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(0.7);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.media-logo:hover {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Responsive Design for Enhanced Sections */
@media (max-width: 1024px) {
    .busy-parents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5em;
    }

    .media-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .busy-parents-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .busy-parents-section {
        margin: 2em 1em 2em 1em;
        padding: 2em 1em;
    }

    .busy-parents-section h2 {
        font-size: 1.8em;
    }

    .busy-parents-bullet {
        padding: 1.5em 1em;
    }

    .about-content--media {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-image-column {
        order: -1;
    }

    .media-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 20px;
    }

    .media-logo {
        max-width: 100px;
        max-height: 50px;
    }
}

/* Course Key Points Styling */
.course-key-points {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.course-key-points li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #0B0D1B;
    line-height: 1.6;
}

.course-key-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #37D894;
    font-weight: bold;
    font-size: 1.2em;
}

/* Universal font-family to ensure Nunito is applied everywhere */
* {
    font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Animated Hero Description - Refreshing Effect */
.hero-description-animated {
    animation: 
        refreshingFadeIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1),
        attractiveGlow 2.5s ease-in-out infinite,
        gentleFloat 3s ease-in-out infinite;
    transform-origin: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(254, 184, 80, 0.1));
    padding: 12px 25px !important;
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes refreshingFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    70% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes attractiveGlow {
    0%, 100% {
        text-shadow: 
            1px 1px 3px rgba(0, 0, 0, 0.4),
            0 0 15px rgba(255, 255, 255, 0.4),
            0 0 25px rgba(254, 184, 80, 0.3);
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.2),
            0 0 20px rgba(254, 184, 80, 0.2);
    }
    50% {
        text-shadow: 
            1px 1px 3px rgba(0, 0, 0, 0.4),
            0 0 25px rgba(255, 255, 255, 0.6),
            0 0 35px rgba(254, 184, 80, 0.5),
            0 0 45px rgba(254, 184, 80, 0.3);
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(254, 184, 80, 0.4),
            0 0 40px rgba(255, 255, 255, 0.2);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.01);
    }
}

/* ========================================
   UPSELL PAGE STYLES
   ======================================== */

/* CSS Variables for consistent theming */
:root {
    --primary-purple: #5F5AA8;
    --primary-teal: #00b1b1;
    --primary-navy: #0B0D1B;
    --accent-coral: #ff6b35;
    --accent-orange: #f7931e;
    --accent-gold: #FEB850;
    --accent-sage: #37D894;
    --accent-lavender: #B7A7F7;
    --neutral: #2F314B;
    --warm-gray: #718096;
    --light-cream: #FAFAFF;
}

/* Timer Bar */
.timer-bar {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add padding to body when timer bar is present - using class for better browser support */
body.has-timer-bar {
    padding-top: 60px;
}

.timer {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 25px;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

/* Congrats Badge */
.congrats-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 16px 28px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Upgrade Box */
.upgrade-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    margin: 40px auto;
    max-width: 700px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.upgrade-box h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    line-height: 1.4;
}

/* CTA Button - Upsell Style */
.cta-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 20px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

.cta-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

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

.cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 20px rgba(90, 69, 255, 0.3);
}

/* Problem Section - Upsell */
.problem-section {
    background-color: #fff;
    padding: 80px 0;
    color: #2F314B;
}

.problem-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #0B0D1B;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.problem-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #718096;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Worksheet vs Video Comparison */
.worksheet-vs-video {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.comparison-card {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.comparison-card.video-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    color: #2d3748;
    box-shadow: 0 15px 35px rgba(0, 212, 170, 0.15);
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.comparison-card ul {
    list-style: none;
    text-align: left;
}

.comparison-card li {
    margin-bottom: 10px;
    position: relative;
}

/* Video Cards Grid */
.video-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.video-cards-grid .video-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    color: white;
}

.video-cards-grid .video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #c44569, #f8b500, #00b8d4);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.video-cards-grid .video-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(255, 255, 255, 0.1) inset;
}

.video-cards-grid .video-card:hover::before {
    transform: translateX(0);
}

.video-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.video-cards-grid .video-card:hover .video-icon {
    transform: scale(1.1) rotate(5deg);
}

.video-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-desc {
    font-size: 0.9rem;
    color: white;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Main Content Layout */
.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

/* Bonus Sidebar */
.bonus-sidebar {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 32px 28px;
    position: sticky;
    top: 20px;
}

.bonus-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-sidebar .bonus-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.bonus-sidebar .bonus-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 16px;
    border-left: 4px solid #ff6b9d;
    transition: all 0.3s ease;
}

.bonus-sidebar .bonus-item:nth-child(2) { border-left-color: #00b8d4; }
.bonus-sidebar .bonus-item:nth-child(3) { border-left-color: #f8b500; }
.bonus-sidebar .bonus-item:nth-child(4) { border-left-color: #4ecdc4; }
.bonus-sidebar .bonus-item:nth-child(5) { border-left-color: #a8e6cf; }

.bonus-sidebar .bonus-item:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.bonus-label {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
}

.bonus-desc {
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 4px;
}

/* Series Summary */
.series-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.series-summary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(270deg, #ff6b35, #f7931e, #FFD36E, #00b1b1, #5F5AA8, #ff6b35);
    background-size: 1200% 1200%;
    border-radius: 24px;
    z-index: -1;
    filter: blur(10px);
    animation: flowing-gradient 18s ease-in-out infinite;
}

@keyframes flowing-gradient {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
    100% { background-position: 0% 50%; }
}

.summary-stats {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin: 24px 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 2.2rem;
    margin-bottom: 6px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    color: #ffffff;
}

.stat-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-desc {
    font-size: 0.85rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.summary-tagline {
    font-size: 1.18rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 18px;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Pricing Table - Upsell */
.pricing-table {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-table .pricing-header {
    display: grid;
    grid-template-columns: 1fr;
    background: linear-gradient(90deg, #5F5AA8, #00b1b1);
    color: white;
    padding: 30px 20px;
}

.pricing-table .pricing-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
}

.pricing-table .pricing-feature-row.section-header {
    background: linear-gradient(90deg, #6C63B5, #00c2c2);
    color: #f8f8ff;
}

.pricing-table .pricing-feature-row.section-header .feature-description {
    font-style: italic;
    font-weight: bold;
    color: #FFD36E;
    font-size: 1.1rem;
    border-right-color: rgba(255, 255, 255, 0.18);
}

.pricing-table .pricing-feature-row.section-header .feature-check {
    color: #FFD36E;
    font-style: italic;
    font-weight: bold;
}

.pricing-table .feature-description {
    padding: 15px 20px;
    text-align: left;
    border-right: 1px solid #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.pricing-table .feature-check {
    padding: 15px 20px;
    text-align: center;
    font-size: 1.5rem;
}

.pricing-table .feature-check.included {
    color: #37D894;
    font-weight: bold;
}

.pricing-table .pricing-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(90deg, #5F5AA8, #00b1b1);
    color: white;
    padding: 30px 20px;
}

/* Testimonial Section - Upsell */
.testimonial-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.testimonial-box {
    background: #FAFAFF;
    border-left: 4px solid #37D894;
    padding: 50px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #2F314B;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(55, 216, 148, 0.1);
}

.testimonial-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-weight: bold;
    color: #5F5AA8;
    font-size: 1.1rem;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-left: 5px solid var(--accent-sage);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--accent-sage);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
}

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

.testimonial-highlight {
    background: linear-gradient(135deg, var(--accent-lavender) 0%, var(--primary-teal) 100%);
    border-radius: 20px;
    padding: 40px;
    color: var(--primary-navy);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.testimonial-highlight:hover {
    transform: translateY(-3px);
}

/* Special Offer Badge */
.special-offer {
    background: #0B0D1B;
    color: #00c2c2;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    animation: shake 3s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Price Comparison */
.price-comparison {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 1;
    margin-bottom: 10px;
}

.new-price {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #00d4aa;
}

.savings {
    background: #00d4aa;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 30px;
}

/* About Section - Upsell Dark Theme */
.about-section.dark-theme {
    padding: 80px 0;
    background-color: #2F314B;
    color: white;
}

.about-section.dark-theme .section-title {
    color: white;
    margin-bottom: 50px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.about-section.dark-theme .about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
}

.about-section.dark-theme .highlight {
    color: #00d4aa;
    font-weight: 600;
}

.about-section.dark-theme .about-quote {
    background: none;
    border: none;
    font-size: 1rem;
    line-height: 1.7;
    color: #ecf0f1;
    font-style: italic;
    margin: 30px 0;
    padding: 0;
}

.about-section.dark-theme .about-quote::before,
.about-section.dark-theme .about-quote::after {
    color: #00d4aa;
}

.about-section.dark-theme .media-logos-grid {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 30px 0;
    padding: 30px;
}

.about-section.dark-theme .about-figure {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Urgency Elements */
.urgency-text {
    background: #ff9800;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Benefits Animation */
.bonus-list-animated {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.benefit-letters-col {
    display: flex;
    flex-direction: column;
    margin-right: 18px;
    margin-top: 2px;
}

.benefit-letter-anim {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(95, 90, 168, 0.10);
    opacity: 0;
    transform: translateY(-40px);
    animation: xperiaFadeInTop 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-letter-anim:nth-child(1) {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    animation-delay: 0.05s;
}

.benefit-letter-anim:nth-child(2) {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    animation-delay: 0.15s;
}

.benefit-letter-anim:nth-child(3) {
    background: linear-gradient(135deg, #f7931e 0%, #ffb347 100%);
    animation-delay: 0.25s;
}

.benefit-letter-anim:nth-child(4) {
    background: linear-gradient(135deg, #ffb347 0%, #ff6b35 100%);
    animation-delay: 0.35s;
}

.benefit-letter-anim:nth-child(5) {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    animation-delay: 0.45s;
}

.benefit-letter-anim:nth-child(6) {
    background: linear-gradient(135deg, #ffb347 0%, #f7931e 100%);
    animation-delay: 0.55s;
}

.benefit-letter-anim:nth-child(7) {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    animation-delay: 0.65s;
}

@keyframes xperiaFadeInTop {
    0% {
        opacity: 0;
        transform: translateY(-40px) scale(0.95);
        filter: blur(6px);
    }
    60% {
        opacity: 1;
        transform: translateY(8px) scale(1.05);
        filter: blur(1.5px);
    }
    80% {
        opacity: 1;
        transform: translateY(-2px) scale(1.01);
        filter: blur(0.5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Feature Cards */
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    padding: 24px 18px;
    background: #f8f9fa;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(95, 90, 168, 0.08);
    margin: 0 8px;
    color: #2d3748;
}

.feature-card .icon {
    margin-bottom: 18px;
    font-size: 2.2rem;
}

.feature-card span {
    text-align: center;
    font-size: 1.15rem;
}

/* Divider */
.section-divider {
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #ff9800 0%, #00d4aa 100%);
    border-radius: 3px;
    box-shadow: 0 2px 12px rgba(255, 152, 0, 0.3);
    margin: 48px auto 36px;
}

/* Hero Box */
.hero-box {
    box-shadow: 0 8px 32px 0 rgba(90, 69, 255, 0.18), 0 1.5px 8px 0 rgba(0, 212, 170, 0.10);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(2px);
    padding: 40px 30px;
    margin-top: 30px;
}

/* Visual Elements Row */
.visual-elements {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.visual-elements img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.visual-elements .plus,
.visual-elements .equals {
    font-size: 2rem;
    color: white;
}

.visual-elements .result {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d4aa;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Book Benefits Section */
.book-benefits {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    align-items: center;
    margin: 40px auto;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(95, 90, 168, 0.10);
    padding: 32px 24px;
}

.book-benefits .book-cover {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    max-width: 250px;
}

.book-benefits .book-cover img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.book-benefits .bestseller-badge {
    color: #FFD36E;
    margin-top: 14px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: rgba(44, 44, 44, 0.18);
    padding: 4px 14px;
    border-radius: 8px;
}

.book-benefits .benefits-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.book-benefits .benefits-list ul {
    list-style: none;
    font-size: 1.22rem;
    line-height: 2.1;
    text-align: left;
    padding: 0;
    margin: 0;
}

.book-benefits .benefits-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
}

.book-benefits .benefits-list li .icon {
    font-size: 1.5rem;
    margin-right: 12px;
}

/* CTA Box */
.cta-box {
    padding: 40px;
    background: #FFF8F1;
    text-align: center;
    border-radius: 0 0 20px 20px;
    margin-top: -1px;
}

.cta-box h3 {
    color: #23244A;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-box p {
    color: #4B5563;
    margin-bottom: 20px;
}

/* Final CTA Section */
.final-cta-section {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    display: inline-block;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.final-cta-section * {
    opacity: 1 !important;
    color: white !important;
}

/* Ensure all text is 100% visible - Global rule */
body, p, h1, h2, h3, h4, h5, h6, span, div, a, li, td, th, label, button, input, textarea, select {
    opacity: 1 !important;
}

/* Override any inherited opacity for text elements in hero sections */
.hero *,
.hero p,
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6,
.hero span,
.hero div,
.hero a,
.hero li,
.hero label,
.hero button {
    opacity: 1 !important;
}

/* Ensure all text in sections is fully visible */
section *,
section p,
section h1,
section h2,
section h3,
section h4,
section h5,
section h6,
section span,
section div,
section a,
section li {
    opacity: 1 !important;
}

/* Ensure all text in containers is fully visible */
.container *,
.container p,
.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6,
.container span,
.container div,
.container a,
.container li {
    opacity: 1 !important;
}

.final-cta-section div {
    opacity: 1 !important;
    color: white !important;
}

.guarantee-badge-small {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.guarantee-text {
    font-weight: 700;
    color: #00d4aa;
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

/* Footer - Upsell */
.footer.upsell-footer {
    background: var(--primary-navy);
    color: white;
    padding: 60px 0 40px 0;
    text-align: center;
}

.footer.upsell-footer h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00b1b1;
}

.footer.upsell-footer p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #e2e8f0;
    opacity: 1;
}

.footer.upsell-footer .social-links a {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer.upsell-footer .social-links a:hover {
    color: var(--accent-sage);
}

/* Responsive Design - Upsell */
@media (max-width: 1200px) {
    .video-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .video-cards-grid .video-card {
        min-height: 130px;
        padding: 18px 14px;
    }
}

@media (max-width: 768px) {
    .hero.upsell-hero {
        padding-top: 80px;
    }
    
    .timer-bar {
        font-size: 1rem;
        padding: 15px 0;
        height: 50px;
    }
    
    body.has-timer-bar {
        padding-top: 50px;
    }
}

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .video-cards-grid .video-card {
        min-height: 125px;
        padding: 16px 12px;
    }

    .bonus-sidebar {
        position: static;
    }

    .book-benefits {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .book-benefits .book-cover {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .worksheet-vs-video {
        margin: 30px 0;
    }

    .comparison-card {
        padding: 25px 20px;
    }

    .video-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .video-cards-grid .video-card {
        padding: 18px 12px;
        min-height: 120px;
    }

    .video-title {
        font-size: 0.95rem;
    }

    .video-desc {
        font-size: 0.85rem;
    }

    .summary-stats {
        flex-direction: column;
        gap: 20px;
    }

    .series-summary {
        padding: 30px 20px;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 16px 28px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-highlight {
        padding: 30px 20px;
    }

    .bonus-list-animated {
        flex-direction: column;
    }

    .benefit-letters-col {
        flex-direction: row;
        margin-bottom: 12px;
        margin-right: 0;
    }

    .benefit-letter-anim {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .visual-elements {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .video-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .video-cards-grid .video-card {
        padding: 16px 10px;
        min-height: 110px;
    }

    .video-title {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .video-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .video-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .video-cards-grid .video-card {
        padding: 18px 12px;
        min-height: 100px;
    }

    .video-title {
        font-size: 0.95rem;
    }

    .video-icon {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .pricing-table .pricing-feature-row {
        grid-template-columns: 1fr;
    }

    .pricing-table .feature-description {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .hero.upsell-hero {
        padding-top: 70px;
    }
    
    .timer-bar {
        font-size: 0.9rem;
        padding: 12px 0;
        height: 45px;
    }
    
    body.has-timer-bar {
        padding-top: 45px;
    }
}

@media (max-width: 360px) {
    .video-cards-grid {
        gap: 10px;
    }

    .video-cards-grid .video-card {
        padding: 16px 8px;
        min-height: 95px;
    }

    .video-title {
        font-size: 0.85rem;
    }

    .video-icon {
        font-size: 1.4rem;
    }
}