/* CSS Variables */
:root {
    --color-pink: #E82387;
    --color-blue: #296FB4;
    --color-yellow: #F8F812;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #FFFFFF;
    --color-bg-light-grey: #f7f9fa;
    --color-border: #e0e0e0;
    
    --font-primary: 'Outfit', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(41, 111, 180, 0.15);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--color-blue);
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.bg-light-grey {
    background-color: var(--color-bg-light-grey);
}

.bg-blue {
    background-color: var(--color-blue);
    color: white;
}

.bg-blue .section-title,
.bg-blue .section-subtitle {
    color: white;
}

.bg-blue .highlight-blue {
    color: var(--color-yellow);
}

.bg-blue .struggle-card,
.bg-blue .benefit-card,
.bg-blue .offer-card,
.bg-blue .testimonial-card {
    color: var(--color-text);
}

.text-left {
    text-align: left !important;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.highlight-pink {
    color: var(--color-pink);
}

.highlight-blue {
    color: var(--color-blue);
}

.highlight-yellow {
    color: var(--color-yellow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--color-blue);
    color: white;
}

.btn-primary:hover {
    background-color: #1e568f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(41, 111, 180, 0.2);
}

.btn-yellow {
    background-color: var(--color-yellow);
    color: #1a1a1a;
}

.btn-yellow:hover {
    background-color: #e0e00d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(248, 248, 18, 0.3);
}

.btn-pink {
    background-color: var(--color-pink);
    color: white;
}

.btn-pink:hover {
    background-color: #cc1b73;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(232, 35, 135, 0.3);
}

.w-100 {
    width: 100%;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.logo h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-blue);
}

.logo span {
    color: var(--color-pink);
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248,248,18,0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(41, 111, 180, 0.1);
    color: var(--color-blue);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.benefit-item {
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.hero-guarantee {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-photo {
    width: 100%;
    max-width: 450px;
    max-height: 480px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    border: 10px solid white;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
}

.hero-photo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Pain Points */
.struggles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.struggle-card {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.struggle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(41, 111, 180, 0.2);
}

.struggle-card .icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.struggle-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.struggle-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Solution Section */
.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.solution-desc {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.solution-list {
    margin-top: 30px;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.solution-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.stat-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-card p {
    font-weight: 500;
    font-size: 1.1rem;
}

.blue-bg {
    background-color: var(--color-blue);
}

.pink-bg {
    background-color: var(--color-pink);
}

.yellow-bg {
    background-color: var(--color-yellow);
    color: #1a1a1a !important;
}

/* What You Get Section (New) */
.section-pre-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.bg-blue .section-pre-title {
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    margin-bottom: 25px;
    color: var(--color-blue);
}

.bg-blue .feature-icon {
    color: white;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.bg-blue .feature-item h3 {
    color: white;
}

.feature-item p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.bg-blue .feature-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* Program Structure */
.structure-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.structure-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--color-bg-light-grey);
    border-radius: 4px;
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content {
    margin-left: 40px;
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    width: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.timeline-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #f0f0f0;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.timeline-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timeline-features li {
    position: relative;
    padding-left: 25px;
}

.timeline-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-pink);
    font-weight: bold;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    flex-grow: 1;
}

.student-name {
    font-weight: 700;
    color: var(--color-blue);
}

/* Schedule Section */
.schedule.section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.schedule-subtitle {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-blue);
    margin-bottom: 5px;
}

.schedule-instruction {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.schedule-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    color: var(--color-text);
}

.schedule-card {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--color-bg-light-grey);
    border-radius: 12px;
}

.schedule-card:last-of-type {
    margin-bottom: 0;
}

.schedule-card h3 {
    font-size: 1.25rem;
    color: var(--color-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.schedule-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 10px;
}

.schedule-card li {
    font-size: 1.05rem;
    position: relative;
    font-weight: 500;
}

.schedule-footer {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text);
}

/* Offer Section */
.offer-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    padding: 50px;
    text-align: center;
    border-top: 10px solid var(--color-pink);
    position: relative;
    overflow: hidden;
}

.offer-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.offer-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.offer-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.original-price {
    font-size: 1.5rem;
    color: var(--color-text-light);
    text-decoration: line-through;
}

.sale-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-blue);
    line-height: 1;
}

.discount-badge {
    position: absolute;
    top: -20px;
    right: 20%;
    background-color: var(--color-yellow);
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    transform: rotate(10deg);
}

.offer-details {
    text-align: left;
    background-color: var(--color-bg-light-grey);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.offer-details ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 600px) {
    .offer-details ul {
        grid-template-columns: 1fr;
    }
}

.offer-details li {
    font-weight: 500;
}

.secure-checkout {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    color: var(--color-text);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: white;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #fafafa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-blue);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: white;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--color-text-light);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 10px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-yellow);
}

.footer-col p, .footer-col a {
    color: #cccccc;
    margin-bottom: 10px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-content {
        text-align: center;
    }
    
    .section-title.text-left {
        text-align: center !important;
    }
    
    .solution-list li {
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .structure-timeline::before {
        left: 30px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-content {
        margin-left: 20px;
        padding: 20px;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .sale-price {
        font-size: 2.8rem;
    }
    
    .discount-badge {
        right: 5%;
    }
}

/* Sticky Footer CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    padding: 15px 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-blue);
}

.sticky-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-sale-price {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--color-pink);
}

.sticky-original-price {
    text-decoration: line-through;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .sticky-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .sticky-title {
        font-size: 0.95rem;
    }
    .sticky-sale-price {
        font-size: 1.2rem;
    }
    .sticky-cta .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Struggles Linear Layout (Pain Points Section) */
.pain-points {
    padding: 45px 0 !important;
}

.struggles-linear {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 30px;
    text-align: center;
}

.struggle-linear-item {
    padding: 10px;
}

.struggle-linear-item p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
    display: inline-block;
}

.struggle-linear-item p::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--color-yellow);
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
}

@media (max-width: 900px) {
    .struggles-linear {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .struggles-linear {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
