:root {
    --primary-yellow: #FCB903;
    --text-black: #000000;
    --text-white: #ffffff;
    --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-black);
    background-color: var(--primary-yellow);
    line-height: 1.4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.hero-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-bg-img {
    position: absolute;
    bottom: 0;
    right: 15%;
    width: auto;
    height: 85vh;
    object-fit: contain;
    object-position: right bottom;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    background-color: var(--text-white);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.5px;
}

.logo .separator {
    font-weight: 300;
    margin: 0 12px;
    opacity: 0.3;
}

.logo .school-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 16px;
}

.logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--text-black);
    background: #fff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-outline {
    border: 1.5px solid var(--text-black);
    color: var(--text-black);
    background: transparent;
}

.btn-outline:hover {
    background: var(--text-black);
    color: var(--primary-yellow);
}

.btn-black {
    background-color: var(--text-black);
    color: var(--primary-yellow);
    padding: 18px 36px;
    font-size: 18px;
    border: 1.5px solid var(--text-black);
}

.btn-black:hover {
    background-color: #222;
    transform: translateY(-2px);
}

/* Main Content (Hero) */
.main-content {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 650px;
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--text-white);
    color: var(--text-black);
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.badge .dot {
    width: 8px;
    height: 8px;
    background-color: #00C853;
    border-radius: 50%;
    margin-right: 12px;
}

h1 {
    font-size: 82px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
    max-width: 500px;
}

.features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
}

.features .bullet {
    font-size: 20px;
}

/* Hero Actions & Author Info New */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}

/* Floating Author Info on Right */
.author-info-floating {
    position: absolute;
    right: 0;
    top: 35%;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.author-info-floating::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 14px;
    width: 60px;
    height: 1px;
    background-color: var(--text-black);
    margin-right: 20px;
    opacity: 0.5;
}

.author-info-floating strong {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.author-info-floating span {
    opacity: 0.7;
    margin-bottom: 2px;
}

.author-info-floating .author-links {
    margin-top: 12px;
    display: flex;
    gap: 12px;
}

.author-links a {
    color: var(--text-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}

.author-links a:hover {
    border-color: var(--text-black);
}

/* Demo Section */
.demo-section-wrapper {
    background-color: var(--text-white);
    width: 100%;
}

.demo-section {
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 80px;
}

.demo-content {
    flex: 1;
}

.demo-content h2 {
    font-size: 82px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.demo-features-list {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    font-size: 14px;
    font-weight: 600;
}

.demo-video {
    flex: 1.2;
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

/* Target Audience Section */
.target-audience-section-wrapper {
    background-color: var(--primary-yellow);
    width: 100%;
}

.target-audience-section {
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.target-content {
    flex: 1;
    position: sticky;
    top: 100px;
}

.target-content h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.target-content .subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 400px;
}

.target-grid-wrapper {
    flex: 1.5;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.target-card {
    background-color: var(--text-white);
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.target-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.target-card.active {
    border: 1.5px solid var(--text-black);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.target-card .icon {
    font-size: 32px;
    margin-bottom: 30px;
}

.target-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.target-note {
    margin-top: 30px;
    font-size: 17px;
    font-weight: 500;
    opacity: 0.8;
}

/* Program Section */
.program-section-wrapper {
    background-color: var(--text-white);
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.program-section {
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.program-content {
    flex: 1;
    position: sticky;
    top: 100px;
}

.program-content h2 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.program-content .subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.program-content .description {
    font-size: 16px;
    opacity: 0.7;
    line-height: 1.5;
}

.program-accordion {
    flex: 2;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.program-module {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.program-module summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
}

.program-module summary::-webkit-details-marker {
    display: none;
}

.module-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
}

.module-num {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black);
    width: 24px;
}

.program-module[open] .module-num {
    color: var(--primary-yellow);
}

.module-title {
    font-size: 20px;
    font-weight: 700;
    min-width: 200px;
}

.module-desc {
    font-size: 15px;
    opacity: 0.6;
}

.module-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
}

.module-icon::after {
    content: '+';
}

.program-module[open] .module-icon::after {
    content: '−';
    color: var(--primary-yellow);
}

.module-body {
    padding-bottom: 30px;
    padding-left: 44px;
    animation: fadeIn 0.3s ease-in-out;
}

.module-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    font-size: 14px;
}

.module-grid h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mt-20 {
    margin-top: 20px;
}

.module-grid ul {
    list-style-type: disc;
    padding-left: 20px;
    opacity: 0.8;
    line-height: 1.6;
}

.module-result {
    background-color: #FFF9E6;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
}

.module-result h4 {
    color: #D49A00;
}

.module-result p {
    margin: 0;
    opacity: 0.9;
}

/* Bonus styling */
.bonus-module {
    background-color: var(--primary-yellow);
    border-radius: 12px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 12px;
    margin-bottom: 12px;
    border: none;
}

.bonus-module summary {
    border-bottom: none;
}

.bonus-badge {
    background-color: var(--text-black);
    color: var(--text-white);
    font-size: 10px;
    text-transform: uppercase;
    padding: 3px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Ribbon */
.stats-ribbon {
    background-color: var(--primary-yellow);
    color: var(--text-black);
    padding-top: 60px;
    padding-bottom: 30px;
    text-align: center;
    margin-top: 60px;
}

.stats-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.stat-num {
    font-size: 72px;
    font-weight: 800;
    color: var(--text-black);
    line-height: 1;
}

.stat-text {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.9;
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.15);
}

.stats-footer {
    font-size: 15px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
}

/* Assets & Support Section */
.assets-support-section {
    background-color: var(--primary-yellow);
    padding-top: 20px;
    padding-bottom: 80px;
    margin-top: 0;
    margin-bottom: 60px;
}

.assets-header {
    max-width: 800px;
    margin-bottom: 50px;
}

.assets-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.assets-header p {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.5;
}

.assets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.assets-card {
    background-color: var(--text-white);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.col-header .dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
}

.col-header h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.col-desc {
    font-size: 15px;
    opacity: 0.7;
    margin-bottom: 30px;
    line-height: 1.5;
}

.toolkit-grid,
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.toolkit h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.toolkit ul {
    list-style: none;
    padding: 0;
}

.toolkit ul li {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
    line-height: 1.4;
}

.toolkit ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: 800;
}

.sup-item {
    background-color: #F9F9F9;
    padding: 20px;
    border-radius: 12px;
}

.sup-item strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.sup-item span {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.4;
    display: block;
}

.check-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.check-list li {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: 800;
    font-size: 16px;
}

/* Team Section */
.team-section {
    background-color: var(--text-white);
    padding: 100px 0;
}

.team-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.team-intro {
    flex: 0 0 350px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 40px;
}

.team-intro h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text-black);
}

.team-divider {
    width: 40px;
    height: 2px;
    background-color: var(--primary-yellow);
    margin: 20px 0;
}

.team-intro p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.5;
}

.team-members {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.team-member img {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 20px auto;
    display: block;
    object-fit: contain;
}

.team-member h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-black);
    min-height: 50px;
    /* Aligns dividers */
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-divider {
    width: 30px;
    height: 2px;
    background-color: var(--primary-yellow);
    margin: 15px auto;
}

.member-role {
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
    min-height: 35px;
    /* Aligns bottom text */
}

.team-member p {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.4;
    margin-top: auto;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--primary-yellow);
    padding: 100px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.pricing-header p {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.4;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: var(--text-white);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-yellow);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    border: 2px solid var(--text-white);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    flex: 1;
}

.pricing-features li {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.4;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: 800;
    font-size: 16px;
}

.pricing-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 25px;
}

.pricing-price strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 5px;
}

.pricing-price span {
    display: block;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.8;
}

.pricing-price .price-usd {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.5;
    margin-top: 5px;
    margin-bottom: 25px;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 15px;
    display: flex;
    gap: 10px;
}

.pricing-info-box {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 20px 30px;
    max-width: 700px;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

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

.info-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-text span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

.pricing-footer-note {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

/* Final Section */
.final-section {
    background-color: var(--primary-yellow);
    padding-bottom: 100px;
}

.final-card {
    background-color: var(--text-white);
    border-radius: 40px;
    padding: 80px 60px;
}

/* FAQ */
.faq-container {
    display: flex;
    gap: 60px;
}

.faq-left {
    flex: 0 0 350px;
}

.faq-left h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.faq-left p {
    font-size: 16px;
    opacity: 0.7;
    font-weight: 500;
}

.faq-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: start;
}

details.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

details.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.3);
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.5;
    transition: transform 0.2s;
}

details[open].faq-item .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding-top: 15px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
    line-height: 1.5;
}

/* Stats Bar */
.final-stats-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 50px 0;
    margin: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item svg {
    opacity: 0.8;
}

.stat-item span {
    display: block;
    font-size: 13px;
    opacity: 0.6;
    margin-bottom: 2px;
}

.stat-item strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
}

/* CTA */
.final-cta {
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.next-action-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.7;
}

/* Apply Section */
.apply-section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.apply-card {
    background-color: var(--text-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    padding: 80px;
    display: flex;
    gap: 80px;
    align-items: center;
}
.apply-content {
    flex: 1;
}
.apply-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.apply-content p {
    font-size: 18px;
    opacity: 0.8;
    line-height: 1.5;
}
.apply-form-wrapper {
    flex: 1;
    width: 100%;
}
.custom-form .form-group {
    margin-bottom: 25px;
}
.custom-form label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}
.custom-form input {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 12px;
    transition: border-color 0.2s;
    outline: none;
    background: transparent;
}
.custom-form input:focus {
    border-color: var(--text-black);
}
.custom-form input[aria-invalid="true"] {
    border-color: red;
}
.error-msg {
    display: block;
    color: red;
    font-size: 13px;
    margin-top: 5px;
}
.apply-submit-btn {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    margin-top: 10px;
}
.form-success[data-fs-success] {
    display: none;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}
.form-success[data-fs-success="true"] {
    display: block;
}
.form-success h3 {
    color: #166534;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 800;
}
.form-success p {
    color: #15803d;
}
.form-error[data-fs-error] {
    display: none;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
}
.form-error[data-fs-error]:not(:empty) {
    display: block;
}

.form-success[data-fs-success="true"] ~ form {
    display: none;
}

/* Responsive Adaptation */
@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    h1 {
        font-size: 52px;
        margin-bottom: 20px;
    }

    .hero-bg-img {
        position: static !important;
        display: block !important;
        width: 100% !important;
        height: 400px !important;
        max-height: 50vh !important;
        object-fit: cover !important;
        object-position: 95% top !important;
        margin: 30px 0 30px 0 !important;
        border-radius: 20px !important;
        z-index: 1 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .author-info-floating {
        position: static !important;
        margin-top: 10px !important;
        align-items: center !important;
        text-align: center !important;
        width: 100%;
    }

    .author-info-floating::before {
        display: none !important;
    }

    .demo-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .demo-content h2 {
        font-size: 52px;
    }

    .demo-video {
        width: 100%;
    }

    .target-audience-section {
        flex-direction: column;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .target-content {
        position: static;
    }

    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .program-section {
        flex-direction: column;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .program-content {
        position: static;
    }

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

    .team-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .team-intro {
        flex: auto;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-right: 0;
        padding-bottom: 30px;
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-info-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

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

    .faq-container {
        flex-direction: column;
        gap: 40px;
    }

    .faq-left {
        flex: auto;
    }

    .final-stats-bar {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: flex-start;
    }

    .final-card {
        padding: 50px 30px;
    }

    .apply-card {
        flex-direction: column;
        gap: 40px;
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .stats-flex {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat-box {
        width: 100%;
        justify-content: center;
    }

    .assets-header h2 {
        font-size: 36px;
    }

    .assets-card {
        padding: 25px;
    }

    .toolkit-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .team-members {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .header-inner {
        flex-direction: column;
        gap: 20px;
    }

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

    .final-stats-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        flex-direction: column;
    }

    .final-cta h2 {
        font-size: 32px;
    }

    .final-card {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .apply-card {
        padding: 40px 20px;
        border-radius: 20px;
    }
    .apply-content h2 {
        font-size: 36px;
    }

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    h1 {
        font-size: 42px;
        text-align: center;
    }

    .subtitle {
        font-size: 18px;
        text-align: center;
    }

    .features {
        font-size: 16px;
        text-align: center;
        justify-content: center;
    }

    .hero-actions,
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .demo-content h2 {
        font-size: 42px;
        text-align: center;
    }

    .demo-features-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

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

    .target-content h2 {
        font-size: 42px;
        text-align: center;
    }

    .target-content .subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

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

    .module-header {
        flex-direction: column;
        gap: 5px;
    }

    .bonus-module {
        padding-left: 12px;
        padding-right: 12px;
    }

    .module-body {
        padding-left: 0;
    }

    .program-content h2 {
        font-size: 42px;
    }
}