/* Global Reset & Typography */
:root {
    --primary-color: #0f172a;
    /* Deep Navy Blue */
    --accent-color: #3B82F6;
    /* Blue 500 */
    --accent-hover: #2563EB;
    /* Blue 600 */
    --accent-on-dark: #60A5FA;
    /* Blue 400 - High contrast on dark */
    --text-color: #334155;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --shadow-soft: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-lg: 1rem;
    --radius-md: 0.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Animations */
/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Mentorship Section */
.mentorship-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #334155 100%);
    color: var(--white);
    overflow: hidden;
}

.mentorship-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.mentorship-text {
    flex: 1;
}

.mentorship-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.mentorship-text p {
    font-size: 1.05rem;
    color: #CBD5E1;
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-list li div {
    flex: 1;
}

.check-list i {
    color: var(--accent-on-dark);
    margin-top: 6px;
    flex-shrink: 0;
}

.mentorship-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.visual-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.visual-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.visual-card i {
    font-size: 4rem;
    color: var(--accent-on-dark);
    margin-bottom: 1rem;
}

.visual-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.visual-card p {
    color: #CBD5E1;
}

@media (max-width: 768px) {
    .mentorship-content {
        flex-direction: column;
        text-align: center;
    }

    .mentorship-text ul {
        text-align: left;
        display: inline-block;
    }
}

/* Stars */
.stars {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}


/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--accent-on-dark);
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent-on-dark);
    position: relative;
}

.subheadline {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #CBD5E1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 800;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-transform: uppercase;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: var(--accent-hover);
}

.guarantee-text {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

.hero-media {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.video-placeholder {
    width: 100%;
    max-width: 800px;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Video Container (Responsive) */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: url('assets/thumbnail.jpg') center/cover no-repeat;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-facade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
}

.video-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Removed old video-placeholder styles if no longer needed, keeping play-button just in case or removing */


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Custom Shape Divider */
.custom-shape-divider-bottom-1668983924 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1668983924 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.custom-shape-divider-bottom-1668983924 .shape-fill {
    fill: var(--bg-light);
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    text-align: center;
}

.problem-content h2 {
    font-size: 1.9rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.problem-content>p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: #64748B;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

/* Method Section */
.method-section {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.section-header h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.section-header p,
.section-subtitle {
    color: #CBD5E1;
    margin-bottom: 3rem;
    font-size: 1rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.method-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-on-dark);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.step p {
    font-size: 0.9rem;
    color: #94A3B8;
}

/* Modules Section - Compact Grid */
.modules-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.modules-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.modules-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.module {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid #E2E8F0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.module:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.module-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Add a small circle/bullet to the header to keep the "step" feel */
.module-header::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.module-list {
    margin: 0;
    padding: 0;
}

.module-list li {
    font-size: 0.9rem;
    color: #475569;
    list-style: none;
    line-height: 1.5;
}

/* Bold text inside list items for emphasis */
.module-list li strong {
    color: var(--primary-color);
}

/* Special styling for the Final Step */
.module:last-child {
    background: #F0FDF4;
    border-color: #16A34A;
    grid-column: span 2;
    /* Span full width for emphasis */
    text-align: center;
    align-items: center;
}

.module:last-child .module-header {
    color: #166534;
    justify-content: center;
}

.module:last-child .module-header::before {
    background-color: #16A34A;
}

.module:last-child .module-list li {
    color: #14532D;
}


/* Responsive: Single Column on Mobile */
@media (max-width: 768px) {
    .modules-container {
        grid-template-columns: 1fr;
    }

    .module:last-child {
        grid-column: span 1;
    }
}

/* Bonuses */
.bonuses-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.bonuses-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid #E2E8F0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--accent-color);
}

.bonus-icon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-color);
    color: var(--white);
}

.bonus-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.bonus-card h3 {
    margin: 0.5rem 0 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.bonus-card p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Offer Section */
.offer-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.offer-card {
    background: var(--white);
    color: var(--text-color);
    max-width: 500px;
    margin: 0 auto;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
    /* Emphasize */
}

.offer-header {
    background: var(--accent-color);
    padding: 2rem;
    color: var(--white);
}

.offer-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.offer-body {
    padding: 3rem 2rem;
}

.price-group {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-weight: 800;
    color: var(--primary-color);
    gap: 0.25rem;
    margin: 0.5rem 0;
}

.currency {
    font-size: 1.5rem;
}

.amount {
    font-size: 4rem;
    line-height: 1;
}

.installment-price {
    font-size: 1.1rem;
    color: #64748B;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.offer-features {
    text-align: left;
    max-width: 300px;
    margin: 0 auto 2rem;
}

.offer-features li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

/* Footer & FAQ */
.instructor-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.instructor-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.instructor-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.img-circle {
    width: 250px;
    height: 250px;
    background-color: #E2E8F0;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--accent-color);
}

.instructor-bio {
    flex: 2;
}

.instructor-bio h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.instructor-bio p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .instructor-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .instructor-badges {
        justify-content: center;
    }

    .instructor-badge {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
}

.instructor-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.instructor-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--white);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.instructor-badge:hover {
    transform: translateY(-3px);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
}

.instructor-badge:hover .highlight {
    color: var(--white);
}

.instructor-badge i {
    color: var(--accent-on-dark);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.instructor-badge:hover i {
    color: var(--white);
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background-color: #F8FAFC;
}

.testimonials-section h1 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.testimonials-section .section-subtitle {
    color: #475569;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    border-top: 5px solid var(--accent-color);
}

.testimonial::before {
    content: '\f10d';
    /* FontAwesome quote icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 2rem;
    color: #E2E8F0;
}

.testimonial p {
    font-style: italic;
    color: #475569;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial .author {
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
    font-size: 0.9rem;
}

.faq-section {
    padding: 5rem 0;
    background: #F1F5F9;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item h3 {
    font-size: 1rem;
    padding: 1.5rem;
    margin: 0;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: #475569;
    display: none;
    line-height: 1.6;
}

.faq-item.active p {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    background: var(--primary-color);
    color: #94A3B8;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.85rem;
}

/* Audience Section */
.audience-section {
    padding: 4rem 0 0 0;
    background-color: var(--bg-light);
}

.audience-heading-main {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.audience-heading-main h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.audience-heading-main p {
    font-size: 1.05rem;
    color: #64748B;
}

.audience-split-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.audience-column {
    width: 100%;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: transform 0.3s ease;
}

/* For You Column Styles */
.audience-column.for-you {
    background: var(--white);
    border-top: 6px solid #10B981;
}

.audience-column.for-you:hover {
    transform: translateY(-5px);
}

/* Split the list in the 'For You' column into 2 columns */
.audience-column.for-you .audience-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3rem;
}

/* Not For You Column Styles */
.audience-column.not-for-you {
    background: #FFF5F5;
    border-top: 6px solid #EF4444;
    max-width: 700px;
    /* Slightly narrower to show hierarchy/distinction */
}

.column-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.icon-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.icon-badge.check {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.icon-badge.cross {
    background: linear-gradient(135deg, #EF4444, #B91C1C);
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.3);
}

.column-header h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.text-success {
    color: #10B981;
}

.text-danger {
    color: #EF4444;
}

.audience-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.audience-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-color);
    padding: 0.5rem 0;
}

.audience-checklist li i {
    flex-shrink: 0;
    font-size: 1.25rem;
}

.audience-checklist li i.fa-check-circle {
    color: #10B981;
}

.audience-checklist.danger-list li i {
    color: #EF4444;
}

.audience-note {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(239, 68, 68, 0.3);
    text-align: center;
}

.audience-note p {
    font-size: 0.9rem;
    color: #991B1B;
    font-style: italic;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .audience-split-layout {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .audience-column.for-you .audience-checklist {
        grid-template-columns: 1fr;
        /* Stack back to 1 column on mobile */
        gap: 1.25rem;
    }

    .audience-column {
        padding: 2rem 1.5rem;
    }
}

/* Responsiveness */
@media (max-width: 600px) {

    .modules-section,
    .bonuses-section,
    .problem-section {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .price-group .amount {
        font-size: 3rem;
    }
}

/* Promise/Transformation Section */
.promise-section {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
    z-index: 1;
}

.promise-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.promise-card {
    background: #F8FAFC;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    height: 100%;
}

.promise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    border-color: var(--accent-color);
    background: var(--white);
}

.promise-card .icon-box {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.promise-card:hover .icon-box {
    transform: rotate(15deg) scale(1.1);
}

.promise-card h3 {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.promise-card p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.6;
}

.promise-summary {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* Grade Gallery */
.grade-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.grade-item {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.grade-item:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--accent-color);
}

.grade-item img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.grade-item:hover img {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.student-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.student-grade {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #d8fff1ae;
    /* Lime-100 for high contrast/brightness */
    color: #10b981;
    /* Lime-800 */
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    letter-spacing: -0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.grade-item:hover .student-grade {
    transform: scale(1.15) rotate(-2deg);
    background-color: #10b981;
    color: #ffffff;
    box-shadow: 0 15px 25px -5px rgba(16, 185, 129, 0.4);
}

.student-grade::before {
    content: '\f559';
    /* Award icon from FontAwesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1em;
    margin-right: 0.5rem;
    color: #ffcc15;
    /* Star color */
    transition: transform 0.4s ease, color 0.3s ease;
}

.grade-item:hover .student-grade::before {
    color: #FEF9C3;
    transform: rotate(360deg) scale(1.2);
}

/* Response for smaller screens */
@media (max-width: 900px) {
    .grade-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .grade-item {
        padding: 1.5rem 1rem;
    }
}

/* Final CTA */
.final-cta-section {
    padding: 6rem 0;
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.final-cta-content p {
    font-size: 1.1rem;
    color: #CBD5E1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Empathy Section */
.empathy-section {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.empathy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.empathy-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.empathy-highlight {
    font-size: 1.3rem;
    color: #EF4444;
    /* Red */
    font-weight: 700;
}

.empathy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Mistakes Column */
.mistakes-column h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.mistakes-column h3::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background: #EF4444;
    margin-top: 5px;
    border-radius: 2px;
}

.mistakes-list {
    list-style: none;
}

.mistakes-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #F8FAFC;
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, background 0.2s ease;
}

.mistakes-list li:hover {
    transform: translateX(10px);
    background: #F1F5F9;
}

.mistakes-list i {
    color: #EF4444;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Impact Column */
.impact-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impact-card {
    background: #FEF2F2;
    border: 2px dashed #FECACA;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: #EF4444;
    color: white;
    font-size: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -3.5rem auto 1.5rem;
    border: 4px solid var(--white);
}

.impact-card p {
    font-size: 1.1rem;
    color: #991B1B;
    line-height: 1.5;
}

.pivot-wrapper {
    text-align: center;
}

.pivot-wrapper p {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.bounce {
    animation: bounce 2s infinite;
    color: var(--accent-color);
    font-size: 2rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .empathy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mistakes-column h3 {
        text-align: center;
        display: block;
    }

    .mistakes-column h3::after {
        margin: 5px auto 0;
    }

    .impact-card {
        margin-top: 2rem;
    }
}

/* Mobile Typography Adjustments */
@media (max-width: 768px) {

    /* Hero Headline */
    .hero h1 {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }

    /* General Section Headlines */
    .section-header h2,
    .mentorship-text h2,
    .problem-content h2,
    .modules-section h2,
    .bonuses-section h2,
    .instructor-bio h2,
    .testimonials-section h1,
    .faq-section h2,
    .audience-heading-main h2,
    .promise-section h2,
    .final-cta-content h2,
    .empathy-header h2 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }

    /* Offer Section Header */
    .offer-header h3 {
        font-size: 1.5rem !important;
    }

    /* Catch-all for other h2s inside sections if missed */
    section h2 {
        font-size: 1.75rem !important;
    }
}