:root {
        --primary-blue: #1E40AF;
        --deep-navy: #1E3A8A;
        --success-green: #059669;
        --accent-gold: #F59E0B;
        --warm-orange: #EA580C;
        --light-bg: #F8FAFC;
        --soft-gray: #F1F5F9;
        --white: #FFFFFF;
        --text-dark: #0F172A;
        --text-medium: #334155;
        --text-light: #64748B;
        --border-light: #E2E8F0;
    }

    .screen-reader-text {
        border: 0;
        clip: rect(1px, 1px, 1px, 1px);
        clip-path: inset(50%);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
        word-wrap: normal;
    }

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

    body {
        font-family: 'Inter', sans-serif;
        background: var(--white);
        color: var(--text-dark);
        line-height: 1.7;
        font-size: 18px;
        width: 100%;
        overflow-x: hidden;
    }

    /* Hero */
    .hero {
        background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
        padding: 4rem 2rem 5rem;
        color: var(--white);
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 80%;
        height: 200%;
        background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
        animation: pulse 15s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }

    .hero-content {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 0 2rem;
    }

    .trust-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
        width: 100%;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        background: rgba(255,255,255,0.1);
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        font-size: 16px;
        font-weight: 600;
    }

    .trust-icon { font-size: 24px; }

    .trustpilot-badge {
        background: #00B67A;
        padding: 0.8rem 1.5rem;
        border-radius: 8px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .stars { color: #FFD700; font-size: 18px; }

    h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }

    .hero-title {
        font-size: 4rem;
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 1.5rem;
        max-width: 1200px;
        text-shadow: 0 4px 12px rgba(0,0,0,0.2);
        text-align: left;
        color: var(--white);
    }

    .hero-subtitle {
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        max-width: 900px;
        line-height: 1.6;
        text-align: left;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 1100px;
        margin: 2.5rem 0;
    }

    .hero-feature {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        padding: 2rem 1.5rem;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.2);
        text-align: left;
    }

    .hero-feature-icon { font-size: 2.5rem; display: block; margin-bottom: 0.8rem; }
    .hero-feature-title { font-size: 20px; font-weight: 700; margin-bottom: 0.5rem; }
    .hero-feature-text { font-size: 16px; opacity: 0.9; }

    .cta-group {
        display: flex;
        gap: 1.5rem;
        margin-top: 2.5rem;
        flex-wrap: wrap;
    }

    .cta-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        background: var(--accent-gold);
        color: var(--text-dark);
        padding: 1.5rem 3rem;
        font-size: 20px;
        font-weight: 800;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
        border: none;
    }

    .cta-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
    }

    .cta-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        background: transparent;
        color: var(--white);
        padding: 1.5rem 3rem;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        border-radius: 12px;
        border: 2px solid var(--white);
        transition: all 0.3s ease;
    }

    .cta-secondary:hover { background: rgba(255,255,255,0.1); }

    /* ===== CONTAINER MODIFIED FOR FULL WIDTH ===== */
    /* ===== FULL WIDTH FIX - NO SIDE MARGINS ===== */
/* جعل الحاوية الرئيسية تمتد بالكامل */
.container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
}

/* استثناء الفوتر من هذه القواعد حتى لا يتأثر تنسيقه */
footer .container,
.footer .container,
.site-footer .container {
    max-width: 1400px !important;
    padding: 0 2rem !important;
    margin: 0 auto !important;
}

/* جعل جميع الأقسام تمتد بعرض الصفحة */
.section,
.hero,
.right-for-you-section,
.timeline-section,
.lesson-section,
.problem-section,
.curriculum-section,
.why-section,
.features-section,
.perfect-section,
.methodology-section,
.certificate-section,
.pricing-section,
.faq-section,
.mid-cta-section,
.final-cta {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* جعل محتوى النصوص داخل الأقسام له حد أقصى للعرض مع توسيط */
.container > h2,
.container > p,
.container > .section-subtitle,
.placement-text h3,
.placement-text p,
.certificate-info p,
.cert-requirements li,
.mid-cta-content p {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* الشبكات والعناصر العريضة تمتد مع مسافات داخلية */
.profiles-grid,
.timeline,
.why-grid,
.pricing-cards,
.certificate-wrapper,
.lesson-wrapper,
.perfect-grid,
.methodology-grid {
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
}

/* إزالة أي هوامش جانبية من الأقسام الداخلية */
.hero-content,
.placement-banner,
.comparison-table,
.features-table,
.levels,
.faq-list {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* معالجة الشاشات الصغيرة */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem !important;
    }
    .profiles-grid,
    .timeline,
    .why-grid,
    .pricing-cards,
    .certificate-wrapper,
    .lesson-wrapper,
    .perfect-grid,
    .methodology-grid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .container > h2,
    .container > p,
    .container > .section-subtitle {
        padding: 0 1rem;
    }
}

    /* For grids that should stretch with inner padding */
    .profiles-grid,
    .timeline,
    .why-grid,
    .pricing-cards,
    .certificate-wrapper,
    .lesson-wrapper,
    .perfect-grid,
    .methodology-grid {
        padding-left: 2rem;
        padding-right: 2rem;
        width: 100%;
    }

    /* Full-width backgrounds sections */
    .hero, .methodology-section, .final-cta, .mid-cta-section,
    .right-for-you-section, .timeline-section, .lesson-section,
    .problem-section, .curriculum-section, .why-section,
    .features-section, .perfect-section, .certificate-section,
    .pricing-section, .faq-section {
        width: 100%;
    }

    /* Ensure no horizontal overflow */
    .comparison-table, .features-table {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .section {
        padding: 5rem 0;
        width: 100%;
    }

    .section-label {
        display: inline-block;
        background: var(--primary-blue);
        color: var(--white);
        padding: 0.6rem 1.8rem;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    h2 {
        font-size: 3rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1.2rem;
        line-height: 1.2;
        text-align: center;
    }

    .section-subtitle {
        font-size: 1.3rem;
        color: var(--text-medium);
        line-height: 1.7;
        margin-bottom: 3rem;
        text-align: center;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    /* ===== RIGHT FOR YOU SECTION ===== */
    .right-for-you-section {
        background: var(--white);
        border-bottom: 3px solid var(--border-light);
    }

    .profiles-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

    .profile-card {
        border-radius: 20px;
        padding: 2.5rem;
        border: 2px solid var(--border-light);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .profile-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
    }

    .profile-card.good::before { background: var(--success-green); }
    .profile-card.not-for::before { background: #DC2626; }

    .profile-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    }

    .profile-card.good { background: #F0FDF4; border-color: #BBF7D0; }
    .profile-card.not-for { background: #FFF1F2; border-color: #FECDD3; }

    .profile-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        display: block;
    }

    .profile-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 1.2rem;
        font-family: 'Playfair Display', serif;
    }

    .profile-card.good h3 { color: var(--success-green); }
    .profile-card.not-for h3 { color: #DC2626; }

    .profile-list {
        list-style: none;
    }

    .profile-list li {
        padding: 0.7rem 0 0.7rem 2rem;
        position: relative;
        font-size: 17px;
        color: var(--text-medium);
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .profile-list li:last-child { border-bottom: none; }

    .profile-card.good .profile-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--success-green);
        font-weight: 900;
        font-size: 18px;
    }

    .profile-card.not-for .profile-list li::before {
        content: '✗';
        position: absolute;
        left: 0;
        color: #DC2626;
        font-weight: 900;
        font-size: 18px;
    }

    .placement-banner {
        background: linear-gradient(135deg, #1E40AF, #1E3A8A);
        color: white;
        border-radius: 20px;
        padding: 3rem;
        margin-top: 3rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .placement-text h3 {
        color: white;
        font-size: 26px;
        margin-bottom: 0.8rem;
    }

    .placement-text p {
        font-size: 17px;
        opacity: 0.9;
        max-width: 600px;
    }

    .placement-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        background: var(--accent-gold);
        color: var(--text-dark);
        padding: 1.3rem 2.5rem;
        font-size: 18px;
        font-weight: 800;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
        white-space: nowrap;
        flex-shrink: 0;
        box-shadow: 0 6px 20px rgba(245,158,11,0.4);
        border: none;
    }

    .placement-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(245,158,11,0.5);
    }

    /* ===== TIMELINE SECTION ===== */
    .timeline-section {
        background: var(--light-bg);
    }

    .timeline {
        max-width: 1100px;
        margin: 3rem auto 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        position: relative;
    }

    .timeline::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 16.67%;
        right: 16.67%;
        height: 4px;
        background: linear-gradient(to right, var(--primary-blue), var(--accent-gold), var(--success-green));
        z-index: 0;
    }

    .timeline-item {
        text-align: center;
        padding: 0 1.5rem;
        position: relative;
        z-index: 1;
    }

    .timeline-dot {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        font-weight: 900;
        margin: 0 auto 1.5rem;
        border: 4px solid white;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        position: relative;
    }

    .timeline-item:nth-child(1) .timeline-dot { background: var(--primary-blue); color: white; }
    .timeline-item:nth-child(2) .timeline-dot { background: var(--accent-gold); color: var(--text-dark); }
    .timeline-item:nth-child(3) .timeline-dot { background: var(--success-green); color: white; }

    .timeline-card {
        background: var(--white);
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 0 6px 25px rgba(0,0,0,0.07);
        border: 2px solid var(--border-light);
        transition: all 0.3s ease;
        text-align: left;
        margin-top: 0.5rem;
    }

    .timeline-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

    .timeline-period {
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .timeline-item:nth-child(1) .timeline-period { color: var(--primary-blue); }
    .timeline-item:nth-child(2) .timeline-period { color: #B45309; }
    .timeline-item:nth-child(3) .timeline-period { color: var(--success-green); }

    .timeline-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 1.2rem;
        color: var(--text-dark);
    }

    .timeline-milestones {
        list-style: none;
    }

    .timeline-milestones li {
        padding: 0.6rem 0 0.6rem 1.8rem;
        position: relative;
        font-size: 16px;
        color: var(--text-medium);
        border-bottom: 1px solid var(--border-light);
    }

    .timeline-milestones li:last-child { border-bottom: none; }
    .timeline-milestones li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--accent-gold);
        font-weight: 900;
    }

    .timeline-outcome {
        margin-top: 1.5rem;
        padding: 1.2rem;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .timeline-item:nth-child(1) .timeline-outcome { background: #EFF6FF; color: var(--primary-blue); }
    .timeline-item:nth-child(2) .timeline-outcome { background: #FFFBEB; color: #92400E; }
    .timeline-item:nth-child(3) .timeline-outcome { background: #F0FDF4; color: #065F46; }

    /* ===== SAMPLE LESSON SECTION ===== */
    .lesson-section {
        background: var(--white);
    }

    .lesson-wrapper {
        max-width: 1100px;
        margin: 3rem auto 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .lesson-timeline {
        position: relative;
    }

    .lesson-step {
        display: flex;
        gap: 2rem;
        margin-bottom: 2rem;
        align-items: flex-start;
    }

    .lesson-step:last-child { margin-bottom: 0; }

    .lesson-time {
        min-width: 90px;
        background: var(--primary-blue);
        color: white;
        text-align: center;
        padding: 0.8rem;
        border-radius: 10px;
        font-weight: 800;
        font-size: 14px;
        flex-shrink: 0;
    }

    .lesson-step-content {
        background: var(--soft-gray);
        border-radius: 12px;
        padding: 1.5rem;
        flex: 1;
        border-left: 4px solid var(--accent-gold);
    }

    .lesson-step-content h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
        font-family: 'Playfair Display', serif;
    }

    .lesson-step-content p {
        font-size: 15px;
        color: var(--text-medium);
    }

    .lesson-info {
        background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
        color: white;
        border-radius: 24px;
        padding: 3rem;
        position: sticky;
        top: 2rem;
    }

    .lesson-info h3 {
        color: white;
        font-size: 26px;
        margin-bottom: 2rem;
    }

    .lesson-info-item {
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .lesson-info-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .lesson-info-icon {
        width: 50px;
        height: 50px;
        background: rgba(255,255,255,0.15);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
    }

    .lesson-info-text h4 {
        color: white;
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 0.4rem;
        font-family: 'Playfair Display', serif;
    }

    .lesson-info-text p {
        font-size: 15px;
        opacity: 0.85;
        line-height: 1.6;
    }

    /* Problem/Solution Section */
    .problem-section { background: var(--light-bg); }

    .comparison-table {
        max-width: 1200px;
        margin: 3rem auto;
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        width: 100%;
    }

    .table-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
        color: var(--white);
        padding: 2rem;
    }

    .table-header > div:first-child {
        border-right: 2px solid rgba(255,255,255,0.2);
    }

    .table-header h3 {
        font-size: 24px;
        font-weight: 800;
        text-align: center;
        font-family: 'Playfair Display', serif;
        color: var(--white);
    }

    .table-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-bottom: 1px solid var(--border-light);
        transition: all 0.3s ease;
    }

    .table-row:hover { background: var(--soft-gray); }

    .table-cell {
        padding: 2rem;
        font-size: 18px;
        line-height: 1.6;
    }

    .table-cell:first-child {
        border-right: 1px solid var(--border-light);
        color: var(--text-light);
    }

    .table-cell:last-child {
        font-weight: 600;
        color: var(--success-green);
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .table-cell:last-child::before {
        content: '✓';
        color: var(--success-green);
        font-size: 24px;
        font-weight: 900;
        flex-shrink: 0;
    }

    /* Curriculum Section */
    .curriculum-section { background: var(--white); }

    .levels {
        max-width: 1200px;
        margin: 3rem auto;
        width: 100%;
    }

    .level {
        background: var(--soft-gray);
        margin-bottom: 2rem;
        border-radius: 16px;
        overflow: hidden;
        border: 2px solid var(--border-light);
        transition: all 0.3s ease;
    }

    .level:hover {
        border-color: var(--primary-blue);
        box-shadow: 0 8px 30px rgba(30, 64, 175, 0.15);
    }

    .level-header {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-navy) 100%);
        color: var(--white);
        padding: 2rem 2.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .level-title {
        font-size: 28px;
        font-weight: 700;
        font-family: 'Playfair Display', serif;
    }

    .level-toggle {
        font-size: 32px;
        font-weight: 700;
        transition: transform 0.3s ease;
    }

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

    .level-content {
        padding: 2.5rem;
        display: none;
    }

    .level.active .level-content { display: block; }

    .level-content ul { list-style: none; margin-top: 1.5rem; }

    .level-content li {
        padding: 1rem 0 1rem 2.5rem;
        position: relative;
        font-size: 18px;
        border-bottom: 1px solid var(--border-light);
    }

    .level-content li:last-child { border-bottom: none; }

    .level-content li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--accent-gold);
        font-weight: 900;
        font-size: 20px;
    }

    /* Why Choose Section */
    .why-section {
        background: linear-gradient(to bottom, var(--light-bg) 0%, var(--white) 100%);
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        margin-top: 3rem;
    }

    .why-card {
        background: var(--white);
        padding: 3rem;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.06);
        border: 2px solid transparent;
        transition: all 0.4s ease;
        text-align: left;
    }

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 45px rgba(0,0,0,0.12);
        border-color: var(--primary-blue);
    }

    .why-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-navy) 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        margin-bottom: 2rem;
    }

    .why-card h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--text-dark);
        font-family: 'Playfair Display', serif;
    }

    .why-card p {
        font-size: 17px;
        color: var(--text-medium);
        line-height: 1.7;
    }

    /* Comparison Table Section */
    .features-section { background: var(--light-bg); }

    .features-table {
        max-width: 1200px;
        margin: 3rem auto;
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        width: 100%;
    }

    .features-header {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        background: linear-gradient(135deg, var(--success-green) 0%, #10B981 100%);
        color: var(--white);
        padding: 2rem;
        font-weight: 800;
        font-size: 20px;
    }

    .features-header h3 { color: var(--white); font-size: 20px; }

    .features-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid var(--border-light);
        align-items: center;
    }

    .features-row:last-child { border-bottom: none; }
    .features-row:hover { background: var(--soft-gray); }

    .feature-name { font-size: 18px; font-weight: 600; }

    .check, .cross { text-align: center; font-size: 28px; }
    .check { color: var(--success-green); }
    .cross { color: #DC2626; }

    /* Perfect For Section */
    .perfect-section { background: var(--white); }

    .perfect-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

    .perfect-card {
        background: var(--soft-gray);
        padding: 2.5rem;
        border-radius: 16px;
        border-left: 5px solid var(--success-green);
        transition: all 0.3s ease;
        text-align: left;
    }

    .perfect-card:hover {
        transform: translateX(8px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .perfect-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--primary-blue);
        font-family: 'Playfair Display', serif;
    }

    .perfect-card p {
        font-size: 17px;
        color: var(--text-medium);
        line-height: 1.7;
    }

    /* Methodology Section */
    .methodology-section {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-navy) 100%);
        color: var(--white);
    }

    .methodology-section h2,
    .methodology-section .section-subtitle { color: var(--white); }

    .methodology-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-top: 3rem;
    }

    .method-card {
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        padding: 3rem;
        border-radius: 20px;
        border: 2px solid rgba(255,255,255,0.2);
        text-align: left;
    }

    .method-number {
        width: 60px;
        height: 60px;
        background: var(--accent-gold);
        color: var(--text-dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: 900;
        margin-bottom: 1.5rem;
    }

    .method-card h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 1.2rem;
        font-family: 'Playfair Display', serif;
        color: var(--white);
    }

    .method-card p {
        font-size: 17px;
        line-height: 1.7;
        opacity: 0.95;
    }

    /* ===== CERTIFICATE SECTION ===== */
    .certificate-section {
        background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
        border-top: 3px solid #BBF7D0;
        border-bottom: 3px solid #BBF7D0;
    }

    .certificate-wrapper {
        max-width: 1100px;
        margin: 3rem auto 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .certificate-info h3 {
        font-size: 28px;
        font-weight: 700;
        color: #065F46;
        margin-bottom: 1.5rem;
    }

    .certificate-info p {
        font-size: 17px;
        color: #065F46;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        opacity: 0.9;
    }

    .cert-requirements {
        list-style: none;
        margin-top: 1.5rem;
    }

    .cert-requirements li {
        padding: 0.8rem 0 0.8rem 2.5rem;
        position: relative;
        font-size: 17px;
        color: #065F46;
        border-bottom: 1px solid rgba(5, 150, 105, 0.2);
        font-weight: 500;
    }

    .cert-requirements li:last-child { border-bottom: none; }

    .cert-requirements li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--success-green);
        font-weight: 900;
        font-size: 18px;
    }

    .certificate-visual {
        background: white;
        border-radius: 20px;
        padding: 3rem;
        text-align: center;
        box-shadow: 0 15px 45px rgba(5, 150, 105, 0.2);
        border: 3px solid #A7F3D0;
        position: relative;
    }

    .certificate-visual::before {
        content: '🎓';
        font-size: 60px;
        display: block;
        margin-bottom: 1.5rem;
    }

    .cert-title {
        font-size: 22px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        font-family: 'Playfair Display', serif;
    }

    .cert-subtitle {
        font-size: 16px;
        color: var(--text-light);
        margin-bottom: 2rem;
    }

    .cert-tag {
        display: inline-block;
        background: var(--success-green);
        color: white;
        padding: 0.5rem 1.2rem;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 700;
        margin: 0.3rem;
    }

    /* Pricing Section */
    .pricing-section { background: var(--light-bg); }

    .pricing-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        margin-top: 3rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .pricing-card {
        background: var(--white);
        padding: 3rem;
        border-radius: 20px;
        border: 3px solid var(--border-light);
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }

    .pricing-card.featured {
        border-color: var(--accent-gold);
        background: linear-gradient(to bottom, #FFFBEB 0%, var(--white) 100%);
        transform: scale(1.05);
    }

    .popular-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--accent-gold);
        color: var(--text-dark);
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .pricing-name {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--primary-blue);
        font-family: 'Playfair Display', serif;
    }

    .pricing-price { font-size: 48px; font-weight: 900; margin-bottom: 0.5rem; color: var(--text-dark); }
    .pricing-period { font-size: 16px; color: var(--text-light); margin-bottom: 2rem; }

    .pricing-features {
        list-style: none;
        margin-bottom: 2.5rem;
        text-align: left;
    }

    .pricing-features li {
        padding: 0.8rem 0;
        font-size: 16px;
        color: var(--text-medium);
        border-bottom: 1px solid var(--border-light);
    }

    .pricing-features li:last-child { border-bottom: none; }

    .pricing-cta {
        display: block;
        padding: 1.2rem 2rem;
        background: var(--primary-blue);
        color: var(--white);
        border-radius: 10px;
        text-decoration: none;
        font-weight: 700;
        font-size: 18px;
        transition: all 0.3s ease;
        border: none;
    }

    .pricing-cta:hover { background: var(--deep-navy); transform: scale(1.05); }
    .pricing-card.featured .pricing-cta { background: var(--accent-gold); color: var(--text-dark); }

    /* FAQ Section */
    .faq-section { background: var(--white); }

    .faq-list {
        max-width: 1000px;
        margin: 3rem auto;
        width: 100%;
        padding: 0 2rem;
    }

    .faq-item {
        background: var(--soft-gray);
        margin-bottom: 1.5rem;
        border-radius: 16px;
        overflow: hidden;
        border: 2px solid var(--border-light);
    }

    .faq-question {
        padding: 2rem 2.5rem;
        font-size: 20px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .faq-question h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-dark);
    }

    .faq-question:hover { background: var(--white); color: var(--primary-blue); }

    .faq-toggle { font-size: 28px; font-weight: 700; color: var(--primary-blue); }

    .faq-answer {
        padding: 0 2.5rem 2rem;
        font-size: 18px;
        color: var(--text-medium);
        line-height: 1.8;
        display: none;
    }

    .faq-item.active .faq-answer { display: block; }

    /* ===== MID-PAGE CTA ===== */
    .mid-cta-section {
        background: linear-gradient(135deg, #F59E0B 0%, #DC2626 100%);
        padding: 4rem 2rem;
        text-align: center;
        color: var(--white);
    }

    .mid-cta-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .mid-cta-content h2 {
        color: var(--white);
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .mid-cta-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.95;
    }

    .mid-cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .mid-cta-btn {
        display: inline-block;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .mid-cta-btn.primary {
        background: var(--white);
        color: #DC2626;
    }

    .mid-cta-btn.primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .mid-cta-btn.secondary {
        background: transparent;
        color: var(--white);
        border: 2px solid var(--white);
    }

    .mid-cta-btn.secondary:hover {
        background: rgba(255,255,255,0.1);
        transform: translateY(-3px);
    }

    /* Final CTA */
    .final-cta {
        background: linear-gradient(135deg, var(--warm-orange) 0%, #DC2626 100%);
        padding: 6rem 2rem 8rem;
        text-align: center;
        color: var(--white);
        width: 100%;
    }

    .final-content {
        max-width: 1000px;
        margin: 0 auto;
        width: 100%;
        padding: 0 2rem;
    }

    .final-stats {
        display: flex;
        justify-content: center;
        gap: 4rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .stat { text-align: center; }

    .stat-number {
        font-size: 56px;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .stat-label { font-size: 18px; opacity: 0.9; }

    .final-cta h2 { color: var(--white); font-size: 3.5rem; margin-bottom: 1.5rem; }
    .final-cta p { font-size: 1.4rem; margin-bottom: 3rem; opacity: 0.95; }

    /* Responsive */
    @media (max-width: 1200px) {
        .hero-features,
        .why-grid,
        .pricing-cards { grid-template-columns: repeat(2, 1fr); }

        .methodology-grid,
        .perfect-grid,
        .profiles-grid,
        .certificate-wrapper { grid-template-columns: 1fr; }

        .timeline { grid-template-columns: 1fr; }
        .timeline::before { display: none; }
    }

    @media (max-width: 992px) {
        .hero-features,
        .why-grid,
        .pricing-cards { grid-template-columns: 1fr; }

        .hero-title { font-size: 3rem; }
        h2 { font-size: 2.5rem; }

        .lesson-wrapper { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
        .hero-title { font-size: 2.5rem; text-align: center; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.3rem; }
        .hero-subtitle { text-align: center; }
        .hero-features { margin: 2.5rem auto; }
        .hero-feature { text-align: center; }
        .hero-content { padding: 0 1rem; }

        .table-header,
        .table-row,
        .features-header,
        .features-row { grid-template-columns: 1fr; gap: 1rem; }

        .table-header > div:first-child {
            border-right: none;
            border-bottom: 2px solid rgba(255,255,255,0.2);
            padding-bottom: 1rem;
        }

        .table-cell:first-child {
            border-right: none;
            border-bottom: 1px solid var(--border-light);
        }

        .cta-group { flex-direction: column; align-items: stretch; }
        .cta-primary, .cta-secondary { justify-content: center; text-align: center; }

        .final-stats { flex-direction: column; gap: 2rem; }
        .final-cta h2 { font-size: 2.5rem; }
        .section { padding: 3rem 0; }
        .container { padding: 0 1rem !important; }
        .placement-banner { flex-direction: column; text-align: center; }

        .profiles-grid,
        .timeline,
        .why-grid,
        .pricing-cards,
        .certificate-wrapper,
        .lesson-wrapper,
        .perfect-grid,
        .methodology-grid {
            padding-left: 1rem;
            padding-right: 1rem;
        }
    }

    @media (max-width: 480px) {
        .hero-title { font-size: 2rem; }
        h2 { font-size: 1.8rem; }
        h3 { font-size: 1.2rem; }
        .hero-subtitle { font-size: 1.2rem; }
        .cta-primary, .cta-secondary { padding: 1.2rem 2rem; font-size: 18px; }
        .trust-bar { gap: 1rem; }
        .trust-item, .trustpilot-badge { width: 100%; justify-content: center; }
        .pricing-card { padding: 2rem; }
        .pricing-card.featured { transform: scale(1); }
    }