/* Base & Reset */
:root {
    --color-bg-cream: #FFFADE;
    --color-bg-white: #FFFFFF;
    --color-text-dark: #404040;
    --color-accent-yellow: #F7CD46;
    --color-accent-green: #43AE78;
    --color-accent-blue: #5280C5;
    --font-primary: 'Poppins', sans-serif;
    --shadow-card: 0px 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-strong: 0px 8px 32px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg-cream);
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.fl-sb {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header */
.header {
    padding: 24px 0;
    position: sticky;
    top: 0;
    background-color: rgba(255, 250, 222, 0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-dark);
    margin: 0 20px;
    font-weight: 500;
    font-size: 16px;
}

.nav-links a.active {
    font-weight: 700;
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}

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

.btn--primary {
    background-color: var(--color-accent-yellow);
    color: var(--color-text-dark);
}

.btn--secondary {
    background-color: var(--color-text-dark);
    color: white;
}

.btn--large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn--xl {
    padding: 20px 60px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

/* ACADEMY SPLIT HERO (Restored) */
.academy-hero {
    padding: 80px 0 120px 0;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.hero-badge-green {
    background-color: var(--color-accent-green);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-h1 {
    font-size: 80px;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 24px;
    color: var(--color-text-dark);
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero-sub {
    font-size: 18px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* DIPLOMA STACK VISUAL */
.academy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.diploma-stack-visual {
    position: relative;
    width: 400px;
    height: 300px;
}

.dip-card {
    position: absolute;
    width: 380px;
    height: 260px;
    background-color: white;
    border: 3px solid #333;
    border-radius: 4px;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.dip-card.back {
    transform: rotate(-5deg);
    top: 10px;
    left: 10px;
    z-index: 1;
}

.dip-card.middle {
    transform: rotate(5deg);
    top: 5px;
    left: 5px;
    z-index: 2;
}

.dip-card.front {
    transform: rotate(0deg);
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dip-title {
    font-family: serif;
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #333;
}

.dip-sub {
    font-family: serif;
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.dip-seal {
    width: 50px;
    height: 50px;
    background-color: var(--color-accent-yellow);
    border-radius: 50%;
    border: 2px dashed #D4AF37;
    margin-top: 16px;
}


/* PROBLEM SECTION */
.problem-section {
    padding: 100px 0;
    background-color: #EEE;
}

.grid-2-col-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.burnout-card {
    background-color: #333;
    color: #FFF;
    padding: 60px;
    border-radius: 20px;
    transform: rotate(-3deg);
    box-shadow: var(--shadow-strong);
}

.icon-burnout {
    font-size: 60px;
    color: #F76A35;
    margin-bottom: 20px;
}

.burnout-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.burnout-card ul {
    padding-left: 20px;
    font-size: 18px;
    line-height: 2;
}

.sub-head {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.body-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

/* CURRICULUM */
.curriculum-section {
    padding: 120px 0;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.module-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.module-card {
    background-color: white;
    padding: 40px;
    border-radius: 24px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s;
}

.module-card:hover {
    transform: scale(1.02);
}

.module-num {
    font-size: 40px;
    font-weight: 800;
    color: #DDD;
}

.module-content {
    flex: 1;
}

.module-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.module-list {
    list-style: none;
    margin-top: 16px;
    font-size: 15px;
    color: #666;
}

.module-list li::before {
    content: "•";
    color: var(--color-accent-yellow);
    font-weight: bold;
    width: 1em;
    display: inline-block;
}

.module-icon::before {
    font-family: "FontAwesome";
    font-size: 40px;
    opacity: 0.2;
}


/* BUSINESS SECTION (New) */
.business-section {
    padding: 80px 0 120px 0;
}

.section-divider-line {
    height: 2px;
    width: 100%;
    background-color: #DDD;
    margin: 0 auto;
}

.sub-head-small {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    line-height: 1.1;
}

.benefit-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.ben-icon {
    width: 40px;
    height: 40px;
    background-color: #EEE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-text-dark);
}

.ben-icon i {
    font-size: 16px;
}

.business-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.roi-card {
    background-color: var(--color-accent-green);
    color: white;
    padding: 40px;
    width: 320px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-strong);
    transform: rotate(3deg);
}

.roi-header {
    font-size: 14px;
    font-weight: 700;
    opacity: 0.8;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.roi-amount {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.roi-sub {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.roi-graph {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: flex-end;
    height: 60px;
}

.bar {
    width: 16px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.bar-1 {
    height: 40%;
}

.bar-2 {
    height: 70%;
}

.bar-3 {
    height: 100%;
    background-color: white;
}


/* FINAL CTA */
.final-cta {
    padding: 120px 0;
    background-color: var(--color-bg-white);
}

.pricing-box {
    background-color: var(--color-text-dark);
    color: white;
    max-width: 600px;
    margin: 40px auto;
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow-strong);
}

.price-large {
    font-size: 80px;
    font-weight: 800;
    color: var(--color-accent-yellow);
    line-height: 1;
}

.price-sub {
    display: block;
    margin-bottom: 32px;
    opacity: 0.7;
}

.check-list-center {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto 40px auto;
    font-size: 18px;
    line-height: 2;
}

.check-list-center i {
    color: var(--color-accent-yellow);
    margin-right: 12px;
}

.money-back {
    margin-top: 24px;
    font-size: 13px;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer (Same as community) */
.footer {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
    padding: 100px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--color-accent-yellow);
}

.footer-desc {
    opacity: 0.7;
    max-width: 300px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: white;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--color-accent-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    opacity: 0.5;
    font-size: 14px;
}

@media (max-width: 900px) {

    .sales-title,
    .hero-h1 {
        font-size: 56px;
    }

    .hero-split,
    .grid-2-col-text,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .academy-visual {
        order: -1;
    }

    .module-card {
        flex-direction: column;
        text-align: center;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* 3D TILT & HOLOGRAPHIC EFFECT */
.academy-visual {
    perspective: 1000px;
}

.diploma-stack-visual {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.dip-card {
    backface-visibility: hidden;
    will-change: transform;
}

.dip-card.back {
    transform: translateZ(-20px) rotate(-5deg);
}

.dip-card.middle {
    transform: translateZ(-10px) rotate(5deg);
}

.dip-card.front {
    transform: translateZ(0px) rotate(0deg);
    overflow: hidden;
    /* For glare */
    border: 1px solid #ddd;
}

/* Holographic Glare */
.dip-glare {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg) translateY(100%);
    pointer-events: none;
    transition: transform 0.1s;
    opacity: 0.6;
    z-index: 10;
}