/* ============================================
   SCHOOL OF GRANT SUCCESS — styles.css
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --green-1: #19A44D;
    --green-2: #2D9961;
    --green-3: #ACE8CA;
    --white: #FEFFFF;
    --yellow: #E5F12A;
    --red: #E74C3C;
    --dark: #1A2332;
    --gray: #7F8C8D;
    --light: #F4F6F7;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; display: block; }

/* ======================== HEADER ======================== */
.header {
    background: var(--white);
    padding: 14px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 48px; }

.btn-header {
    background: var(--green-1);
    color: var(--white);
    padding: 11px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.2s;
}
.btn-header:hover { background: var(--green-2); transform: translateY(-2px); }

/* ======================== HERO ======================== */
.hero-carousel {
    position: relative;
    height: 700px;
    overflow: hidden;
    width: 100%;
}
.carousel-container { position: absolute; inset: 0; }
.carousel-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.carousel-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(25,164,77,0.88) 0%, rgba(26,35,50,0.80) 100%);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    height: 100%;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
}
.hero-preheadline {
    background: var(--red);
    color: var(--white);
    padding: 7px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 1.15;
    max-width: 860px;
}
.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 8px;
    max-width: 760px;
    font-weight: 400;
    line-height: 1.6;
}
.hero-sub2 {
    font-size: 1.1rem;
    margin-bottom: 26px;
    opacity: 0.9;
    font-style: italic;
}
.btn-hero {
    background: var(--yellow);
    color: var(--dark);
    padding: 17px 52px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
    letter-spacing: 0.5px;
}
.btn-hero:hover { transform: scale(1.05); box-shadow: 0 14px 36px rgba(0,0,0,0.35); }

/* Countdown */
.countdown-timer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.countdown-item {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    padding: 16px 18px;
    border-radius: 10px;
    min-width: 84px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.25);
}
.countdown-value { display: block; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.countdown-label { display: block; font-size: 0.78rem; text-transform: uppercase; margin-top: 5px; letter-spacing: 1px; opacity: 0.85; }

/* ======================== MARKETING VIDEO ======================== */
.marketing-video-section {
    padding: 70px 0;
    background: var(--light);
    text-align: center;
}
.marketing-video-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 39.375%; /* 16:9 of 700px */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}
.marketing-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ======================== METRICS ======================== */
.metrics { padding: 70px 0; background: var(--white); }

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.metric-item {
    text-align: center;
    padding: 24px 12px;
    background: var(--light);
    border-radius: 14px;
    transition: all 0.3s ease;
}
.metric-item:hover {
    background: var(--green-3);
    transform: translateY(-8px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}
.metric-icon { font-size: 2.2rem; margin-bottom: 10px; }
.metric-number { font-size: 2.2rem; font-weight: 800; color: var(--green-1); margin-bottom: 6px; }
.metric-label { font-size: 0.88rem; color: var(--gray); font-weight: 600; line-height: 1.3; }

/* ======================== SUCCESS STORIES ======================== */
.success-stories { padding: 80px 0; background: var(--white); }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: var(--dark);
}
.section-title.light { color: var(--white); }
.section-subtitle { text-align: center; font-size: 1.1rem; color: var(--gray); margin-bottom: 46px; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.testimonial-card {
    background: var(--light);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    position: relative;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.featured-card { border: 3px solid var(--green-1); }

.grant-badge {
    display: inline-block;
    background: var(--green-1);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}
.testimonial-quote {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
    color: #2C3E50;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 48px; height: 48px;
    background: var(--green-1); color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem;
    flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.97rem; }
.author-title { font-size: 0.84rem; color: var(--gray); }

.center-cta { text-align: center; margin-top: 50px; }
.results-cta-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}
.cta-sub { margin-top: 12px; color: var(--gray); font-size: 0.95rem; }

/* ======================== BUTTONS ======================== */
.btn-cta-red {
    background: var(--red);
    color: var(--white);
    padding: 16px 46px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(231,76,60,0.35);
    letter-spacing: 0.5px;
}
.btn-cta-red:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(231,76,60,0.45); }

.btn-cta-green {
    background: var(--green-1);
    color: var(--white);
    padding: 16px 46px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(25,164,77,0.3);
    letter-spacing: 0.5px;
}
.btn-cta-green:hover { background: var(--green-2); transform: scale(1.05); }

/* ======================== REJECTION SECTION ======================== */
.rejection-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
    color: var(--white);
}
.rejection-section .section-title { color: var(--white); }
.subtitle-accent { color: var(--yellow); font-style: italic; }

.rejection-content { max-width: 860px; margin: 0 auto; }
.rejection-intro { font-size: 1.2rem; line-height: 1.8; margin-bottom: 32px; text-align: center; }
.rejected-text {
    color: var(--red);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 2px;
}
.rejection-box {
    background: rgba(255,255,255,0.07);
    border-left: 4px solid var(--yellow);
    padding: 30px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 30px;
}
.rejection-box h3 { margin-bottom: 16px; font-size: 1.2rem; color: var(--yellow); }
.truth-list { list-style: none; }
.truth-list li { padding: 8px 0; font-size: 1.05rem; line-height: 1.6; }

.rejection-mid { font-size: 1.1rem; line-height: 1.8; margin-bottom: 32px; text-align: center; }

.solution-banner {
    background: var(--green-1);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}
.solution-banner h3 { font-size: 1.6rem; font-weight: 800; color: var(--white); }

.solution-intro { text-align: center; }
.solution-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--yellow);
    margin-bottom: 8px;
}
.solution-sub { font-size: 1.1rem; color: var(--green-3); margin-bottom: 10px; }
.solution-desc { font-size: 1rem; opacity: 0.85; margin-bottom: 40px; }

.what-you-get-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    text-align: left;
}
.wyg-item {
    background: rgba(255,255,255,0.08);
    padding: 24px;
    border-radius: 12px;
    border-top: 3px solid var(--green-1);
}
.wyg-icon { font-size: 2rem; margin-bottom: 10px; }
.wyg-item h4 { font-size: 1.05rem; margin-bottom: 10px; color: var(--yellow); }
.wyg-item p { font-size: 0.9rem; line-height: 1.6; opacity: 0.85; }

/* ======================== COURSE STRUCTURE ======================== */
.course-structure { padding: 80px 0; background: var(--light); }

.weeks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}
.week-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border-left: 5px solid var(--green-1);
    transition: all 0.3s ease;
}
.week-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
.week-number {
    background: var(--green-1); color: var(--white);
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 700; font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.week-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.week-tagline { font-size: 0.92rem; font-style: italic; color: var(--green-2); margin-bottom: 16px; }
.week-content { list-style: none; }
.week-content li {
    padding: 7px 0 7px 26px;
    position: relative;
    font-size: 0.95rem;
    color: #34495e;
    border-bottom: 1px solid #eee;
}
.week-content li:last-child { border: none; }
.week-content li::before {
    content: "✓"; position: absolute; left: 0;
    color: var(--green-1); font-weight: 700;
}

.outcomes-box {
    background: linear-gradient(135deg, var(--green-1), var(--green-2));
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
}
.outcomes-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 24px;
    text-align: center;
}
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.outcome-item {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.97rem; line-height: 1.5;
    background: rgba(255,255,255,0.1);
    padding: 14px;
    border-radius: 10px;
}

/* ======================== VIDEO TESTIMONIALS ======================== */
.video-testimonials { padding: 80px 0; background: var(--white); }

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.video-item {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.video-item:hover { transform: scale(1.04); box-shadow: 0 10px 28px rgba(0,0,0,0.18); }
.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    overflow: hidden;
}
.video-thumbnail img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.play-button {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: var(--green-1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--white);
    transition: all 0.3s ease;
}
.video-item:hover .play-button {
    background: var(--yellow);
    color: var(--dark);
    transform: translate(-50%, -50%) scale(1.15);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed; inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.95);
}
.video-modal.show { display: flex; align-items: center; justify-content: center; }
.video-modal-content { position: relative; width: 90%; max-width: 700px; }
.video-close {
    position: absolute; top: -42px; right: 0;
    color: var(--white); font-size: 38px; font-weight: bold;
    cursor: pointer; z-index: 1001;
}
.video-wrapper {
    position: relative;
    padding-bottom: 177.78%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ======================== TESTIMONIAL CAROUSEL ======================== */
.testimonial-carousel-section { padding: 80px 0; background: var(--light); }

.testimonial-carousel {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 14px;
}
.carousel-track { display: flex; transition: transform 0.5s ease; }
.carousel-testimonial { min-width: 100%; display: none; }
.carousel-testimonial.active { display: block; }
.carousel-testimonial img { width: 100%; border-radius: 14px; }

.carousel-btn {
    position: absolute; top: 50%;
    transform: translateY(-50%);
    background: var(--green-1); color: var(--white);
    border: none; width: 46px; height: 46px;
    border-radius: 50%; font-size: 1.3rem;
    cursor: pointer; z-index: 10;
    transition: background 0.3s;
}
.carousel-btn:hover { background: var(--green-2); }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
.carousel-dots { text-align: center; margin-top: 18px; }
.carousel-dot {
    display: inline-block;
    width: 10px; height: 10px;
    background: var(--gray);
    border-radius: 50%; margin: 0 4px;
    cursor: pointer; transition: all 0.3s;
}
.carousel-dot.active { background: var(--green-1); width: 28px; border-radius: 5px; }

/* ======================== WHO SECTION ======================== */
.who-section { padding: 80px 0; background: var(--white); }
.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 36px;
}
.who-column { padding: 38px; border-radius: 16px; }
.who-column.perfect { background: #E8F5E9; border: 3px solid var(--green-1); }
.who-column.not-for { background: #FFEBEE; border: 3px solid var(--red); }
.who-column h3 { font-size: 1.6rem; margin-bottom: 22px; font-family: 'Playfair Display', serif; }
.who-column ul { list-style: none; }
.who-column li { padding: 10px 0 10px 28px; position: relative; font-size: 1rem; }
.perfect li::before { content: "✓"; position: absolute; left: 0; color: var(--green-1); font-weight: 700; font-size: 1.1rem; }
.not-for li::before { content: "✗"; position: absolute; left: 0; color: var(--red); font-weight: 700; font-size: 1.1rem; }

/* ======================== PRICING ======================== */
.pricing { padding: 80px 0; background: var(--light); }

.value-comparison {
    max-width: 680px;
    margin: 0 auto 52px;
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.value-comparison h3 { font-size: 1.6rem; margin-bottom: 22px; text-align: center; font-family: 'Playfair Display', serif; }
.value-items { display: flex; flex-direction: column; gap: 12px; }
.value-item {
    display: flex; justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 0.97rem;
}
.value-total {
    display: flex; justify-content: space-between;
    padding: 18px 0 0;
    font-size: 1.1rem;
    color: var(--green-1);
}
.dinner-line { text-align: center; margin-top: 18px; font-style: italic; color: var(--gray); font-size: 0.95rem; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
    max-width: 1050px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--white);
    padding: 38px 28px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 14px 38px rgba(0,0,0,0.12); }
.pricing-card.featured {
    background: linear-gradient(135deg, var(--green-1), var(--green-2));
    color: var(--white);
    border: 3px solid var(--yellow);
}
.pricing-badge {
    position: absolute; top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--yellow); color: var(--dark);
    padding: 6px 18px; border-radius: 20px;
    font-weight: 800; font-size: 0.8rem; letter-spacing: 1px;
    white-space: nowrap;
}
.pricing-title { font-size: 1.6rem; margin-bottom: 18px; font-family: 'Playfair Display', serif; }
.pricing-original { font-size: 1.1rem; opacity: 0.7; margin-bottom: 4px; }
.pricing-amount { font-size: 2.8rem; font-weight: 800; margin-bottom: 8px; }
.currency { font-size: 1.4rem; }
.pricing-description { margin-bottom: 26px; font-size: 0.95rem; opacity: 0.85; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-features li { padding: 9px 0; font-size: 0.95rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,0.15); }

.btn-pricing {
    width: 100%;
    background: var(--yellow); color: var(--dark);
    padding: 14px;
    border: none; border-radius: 8px;
    font-weight: 800; font-size: 1rem;
    cursor: pointer; transition: all 0.3s;
    letter-spacing: 0.5px;
}
.btn-pricing:hover { transform: scale(1.04); }
.pricing-card.featured .btn-pricing { background: var(--white); color: var(--green-1); }
.payment-note { text-align: center; margin-top: 28px; color: var(--gray); font-size: 0.95rem; }

/* ======================== GUARANTEE / INCOME STREAMS ======================== */
.guarantee-section { padding: 90px 0; background: var(--white); }
.guarantee-box {
    max-width: 820px;
    margin: 0 auto 56px;
    background: #f0fff5;
    border: 2px solid var(--green-1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}
.guarantee-text { font-size: 1.05rem; line-height: 1.8; margin-bottom: 16px; color: #2C3E50; }
.guarantee-plus { font-size: 1.1rem; color: var(--green-2); font-weight: 600; }

.income-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}
.income-card {
    background: var(--light);
    padding: 32px;
    border-radius: 16px;
    border-top: 4px solid var(--green-1);
    transition: all 0.3s;
    position: relative;
}
.income-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.income-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--green-3);
    line-height: 1;
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}
.income-icon { font-size: 2rem; margin-bottom: 12px; }
.income-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.income-card p { font-size: 0.9rem; line-height: 1.65; color: #34495e; }
.income-cta-sub { font-size: 1.05rem; margin-bottom: 20px; font-style: italic; color: var(--gray); }

/* ======================== URGENCY SECTION ======================== */
.urgency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--red), #c0392b);
    text-align: center;
    color: var(--white);
}
.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    max-width: 860px;
    margin: 0 auto 36px;
    text-align: left;
}
.urgency-item {
    display: flex; gap: 12px; align-items: flex-start;
    background: rgba(255,255,255,0.1);
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.97rem;
    line-height: 1.5;
}
.urgency-warning {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.btn-final-cta {
    background: var(--yellow); color: var(--dark);
    padding: 18px 56px;
    border: none; border-radius: 50px;
    font-weight: 800; font-size: 1.25rem;
    cursor: pointer; transition: all 0.3s;
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
    letter-spacing: 0.5px;
}
.btn-final-cta:hover { transform: scale(1.05); box-shadow: 0 14px 36px rgba(0,0,0,0.35); }

/* ======================== FAQ ======================== */
.faq { padding: 80px 0; background: var(--light); }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; font-size: 1rem;
    transition: background 0.3s;
}
.faq-question:hover { background: var(--green-3); }
.faq-icon { font-size: 1.4rem; color: var(--green-1); font-weight: 700; flex-shrink: 0; margin-left: 12px; transition: transform 0.3s; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s ease; font-size: 0.97rem; line-height: 1.7; color: #34495e; }
.faq-item.active .faq-answer { padding: 18px 24px; max-height: 400px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* ======================== FACULTY ======================== */
.faculty-section { padding: 80px 0; background: var(--white); }
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-bottom: 36px;
}
.faculty-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--light);
    border-radius: 16px;
    transition: all 0.3s;
}
.faculty-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.faculty-img {
    width: 110px; height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 4px solid var(--green-1);
}
.faculty-img img { width: 100%; height: 100%; object-fit: cover; }
.faculty-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.faculty-role { font-size: 0.88rem; color: var(--green-2); margin-bottom: 12px; font-weight: 600; }
.faculty-bio { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
.faculty-quote {
    text-align: center;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--green-2);
    font-family: 'Playfair Display', serif;
}

/* ======================== FINAL CTA ======================== */
.final-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--dark), #2c3e50);
    color: var(--white);
    text-align: center;
}
.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 40px;
}
.two-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 840px;
    margin: 0 auto 40px;
}
.choice {
    padding: 28px;
    border-radius: 14px;
}
.choice-bad { background: rgba(231,76,60,0.15); border: 2px solid var(--red); }
.choice-good { background: rgba(25,164,77,0.15); border: 2px solid var(--green-1); }
.choice h3 { font-size: 1.2rem; margin-bottom: 12px; }
.choice p { font-size: 0.95rem; line-height: 1.65; opacity: 0.85; }

.final-truth {
    font-size: 1.2rem;
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.cta-note { margin-top: 18px; font-size: 0.9rem; opacity: 0.75; }

/* Mini carousel in final section */
.mini-carousel-wrap { max-width: 760px; margin: 0 auto; }

/* Final payment box */
.final-payment-box {
    max-width: 860px;
    margin: 60px auto 0;
    background: rgba(255,255,255,0.07);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
}
.final-payment-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 28px;
    color: var(--yellow);
}
.final-payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.final-pay-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}
.final-pay-item.featured-pay { border-color: var(--yellow); background: rgba(229,241,42,0.08); }
.pay-label { font-size: 0.88rem; opacity: 0.75; margin-bottom: 8px; letter-spacing: 0.5px; text-transform: uppercase; }
.pay-amount { font-size: 2rem; font-weight: 800; color: var(--yellow); margin-bottom: 4px; }
.pay-detail { font-size: 0.8rem; opacity: 0.65; margin-bottom: 14px; }
.btn-pay {
    background: var(--yellow); color: var(--dark);
    padding: 10px 22px;
    border: none; border-radius: 6px;
    font-weight: 800; font-size: 0.88rem;
    cursor: pointer; transition: all 0.3s;
    width: 100%;
}
.btn-pay:hover { transform: scale(1.04); }
.pay-via { text-align: center; opacity: 0.65; font-size: 0.88rem; margin-top: 8px; }

/* ======================== DISCLAIMER SECTION ======================== */
.disclaimer-section {
    background: #f8f9fa;
    padding: 50px 0 100px; /* Extra bottom padding for sticky CTA */
    border-top: 1px solid #dee2e6;
}

.disclaimer-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid var(--green-1);
}

.disclaimer-list {
    list-style-position: outside;
    padding-left: 24px;
    color: #495057;
}

.disclaimer-list li {
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.disclaimer-list li strong {
    color: var(--green-1);
    font-weight: 700;
}


/* ======================== FOOTER ======================== */
.footer { background: var(--dark); color: var(--white); padding: 56px 0 18px; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px;
    margin-bottom: 36px;
}
.footer-logo { height: 52px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-description { line-height: 1.7; opacity: 0.8; font-size: 0.93rem; }
.footer-col h4 { margin-bottom: 16px; font-size: 1.1rem; color: var(--yellow); }
.footer-links, .footer-contact { list-style: none; }
.footer-links li, .footer-contact li { margin-bottom: 10px; }
.footer-links a { color: var(--white); text-decoration: none; opacity: 0.75; transition: all 0.3s; font-size: 0.93rem; }
.footer-links a:hover { opacity: 1; color: var(--yellow); }
.footer-contact li { opacity: 0.85; font-size: 0.93rem; }
/* Footer bottom margin fix */
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    padding-bottom: 20px; /* Added extra padding */
    margin-bottom: 80px; /* Space for sticky CTA on mobile */
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
    font-size: 0.88rem;
}

/* Adjust sticky CTA positioning */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--green-1);
    padding: 12px 16px;
    z-index: 998;
    display: none;
    box-shadow: 0 -4px 18px rgba(0,0,0,0.18);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .disclaimer-section {
        padding: 40px 0 120px; /* More bottom padding on mobile */
    }
    
    .disclaimer-content {
        padding: 25px 20px;
    }
    
    .disclaimer-title {
        font-size: 1.3rem;
    }
    
    .disclaimer-list li {
        font-size: 0.88rem;
        margin-bottom: 14px;
    }
    
    .footer-bottom {
        margin-bottom: 100px; /* More space on mobile for sticky CTA */
    }
}

@media (max-width: 480px) {
    .disclaimer-section {
        padding: 30px 0 130px;
    }
    
    .disclaimer-list {
        padding-left: 18px;
    }
}

/* ======================== WHATSAPP FLOAT ======================== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px;
    background: #25D366; color: var(--white);
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.28);
    z-index: 999; transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,0.38); }
.whatsapp-float svg { width: 32px; height: 32px; }

/* ======================== STICKY CTA MOBILE ======================== */
.sticky-cta {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--green-1);
    padding: 12px 16px;
    z-index: 998; display: none;
    box-shadow: 0 -4px 18px rgba(0,0,0,0.18);
}
.sticky-cta.show { display: block; }
.btn-sticky {
    width: 100%; background: var(--yellow); color: var(--dark);
    padding: 14px;
    border: none; border-radius: 8px;
    font-weight: 800; font-size: 1.05rem;
    cursor: pointer;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 900px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero-carousel { height: 620px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-sub2 { font-size: 0.93rem; }
    .btn-hero { padding: 14px 36px; font-size: 1rem; }

    /* Countdown on one row, compact */
    .countdown-timer {
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
        max-width: 340px;
    }
    .countdown-item {
        padding: 10px 8px;
        min-width: 0;
        flex: 1;
    }
    .countdown-value { font-size: 1.5rem; }
    .countdown-label { font-size: 0.65rem; }

    /* Metrics: 2 then 3 on mobile */
    .metrics-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .metric-item {
        padding: 14px 8px;
    }
    .metric-icon { font-size: 1.6rem; margin-bottom: 6px; }
    .metric-number { font-size: 1.6rem; margin-bottom: 4px; }
    .metric-label { font-size: 0.72rem; }

    /* Section titles */
    .section-title { font-size: 1.8rem; }

    /* Videos halved */
    .video-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    /* Who */
    .who-grid { grid-template-columns: 1fr; }

    /* Pricing */
    .pricing-grid, .weeks-grid { grid-template-columns: 1fr; }

    /* Header */
    .logo { height: 38px; }
    .btn-header { padding: 9px 18px; font-size: 0.85rem; }

    /* Sticky */
    .sticky-cta { display: none; } /* shown via JS */
    .whatsapp-float { bottom: 80px; }

    /* Two choices stacked */
    .two-choices { grid-template-columns: 1fr; }

    /* Final cta h2 */
    .final-cta h2 { font-size: 1.9rem; }

    /* Marketing video */
    .marketing-video-wrapper {
        padding-bottom: 56.25%; /* standard 16:9 on mobile */
    }
}

@media (max-width: 480px) {
    .hero-carousel { height: 580px; }
    .hero-title { font-size: 1.75rem; }
    .countdown-timer { max-width: 300px; gap: 6px; }
    .countdown-item { padding: 8px 6px; }
    .countdown-value { font-size: 1.3rem; }
    .countdown-label { font-size: 0.6rem; }
    .metrics-grid { gap: 8px; }
    .metric-number { font-size: 1.4rem; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .income-grid { grid-template-columns: 1fr; }
    .final-payment-grid { grid-template-columns: 1fr; }
}

/* Special mobile metrics layout: 2 top, 3 bottom */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto auto;
    }
    .metric-item:nth-child(1) { grid-column: 1 / 4; }
    .metric-item:nth-child(2) { grid-column: 4 / 7; }
    .metric-item:nth-child(3) { grid-column: 1 / 3; }
    .metric-item:nth-child(4) { grid-column: 3 / 5; }
    .metric-item:nth-child(5) { grid-column: 5 / 7; }
}


.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-grid-item {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.testimonial-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Mobile: single column */
@media (max-width: 600px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* WRAPPER */
.success-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* SUBTITLE */
.success-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #555;
}

/* GRID */
.success-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ✅ mobile: 2 per row */
    gap: 12px;
}

/* CARD */
.success-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    aspect-ratio: 3 / 4; /* keeps uniform size */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* IMAGE */
.success-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* HOVER (desktop feel) */
.success-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* CTA */
.success-cta {
    text-align: center;
    margin-top: 35px;
}

.success-btn {
    background: #16a34a;
    color: #fff;
    border: none;
    padding: 14px 26px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.success-btn:hover {
    background: #15803d;
}

/* 📲 TABLET */
@media (min-width: 768px) {
    .success-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 💻 DESKTOP */
@media (min-width: 1024px) {
    .success-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}