.edu-access-page {
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

.edu-access-page *,
.edu-access-page *::before,
.edu-access-page *::after {
    box-sizing: border-box;
}

.edu-container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.edu-hero {
    padding: 90px 0;
    background: linear-gradient(135deg, #f5f3ff, #eef7ff);
}

.edu-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.edu-badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 30px;
    background: #e9e4ff;
    color: #6546d7;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.edu-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    margin: 0 0 25px;
    letter-spacing: -2px;
}

.edu-hero h1 span {
    color: #6847e8;
}

.edu-hero p {
    max-width: 650px;
    font-size: 19px;
    color: #5b6475;
    margin-bottom: 30px;
}

.edu-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.edu-btn {
    display: inline-block;
    text-decoration: none !important;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    transition: .2s;
}

.edu-btn-primary {
    background: #6847e8;
    color: #ffffff !important;
}

.edu-btn-primary:hover {
    background: #5333c9;
    transform: translateY(-2px);
}

.edu-btn-light {
    background: #ffffff;
    color: #333 !important;
    border: 1px solid #ddd;
}

.edu-btn-white {
    background: #ffffff;
    color: #6847e8 !important;
}

.edu-preview-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,.10);
    text-align: center;
}

.edu-preview-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.edu-preview-card h3 {
    font-size: 27px;
    margin: 0 0 15px;
}

.edu-preview-card p {
    color: #687080;
}

.edu-section {
    padding: 90px 0;
}

.edu-section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.edu-section-title h2 {
    font-size: 40px;
    line-height: 1.15;
    margin: 0 0 15px;
}

.edu-section-title p {
    color: #697386;
    font-size: 17px;
}

.edu-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.edu-feature {
    padding: 30px 24px;
    border: 1px solid #e9e9ef;
    border-radius: 16px;
    background: #ffffff;
}

.edu-feature-icon {
    font-size: 35px;
    margin-bottom: 15px;
}

.edu-feature h3 {
    margin: 0 0 10px;
}

.edu-feature p {
    margin: 0;
    color: #697386;
}

.edu-plans-section {
    background: #f7f8fc;
}

.edu-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.edu-plan {
    position: relative;
    padding: 35px 28px;
    background: #ffffff;
    border: 1px solid #e5e7ed;
    border-radius: 18px;
    text-align: center;
}

.edu-plan-popular {
    border: 2px solid #6847e8;
}

.edu-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #6847e8;
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.edu-plan-name {
    font-size: 23px;
    font-weight: 700;
}

.edu-price {
    font-size: 55px;
    font-weight: 800;
    margin: 15px 0 5px;
}

.edu-price span {
    font-size: 25px;
    vertical-align: top;
}

.edu-plan-validity {
    color: #697386;
    margin-bottom: 25px;
}

.edu-plan-button {
    width: 100%;
    border: 0;
    border-radius: 9px;
    padding: 13px;
    background: #6847e8;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.edu-create-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.edu-create-grid div {
    padding: 17px 20px;
    border: 1px solid #e7e8ed;
    border-radius: 10px;
    font-weight: 600;
}

.edu-steps-section {
    background: #f7f8fc;
}

.edu-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.edu-step {
    text-align: center;
}

.edu-step-number {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #6847e8;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.edu-checkout-section {
    background: #ffffff;
}

.edu-checkout {
    max-width: 760px;
    margin: auto;
    padding: 45px;
    border: 1px solid #e4e6ed;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,.07);
}

.edu-checkout h2 {
    text-align: center;
    font-size: 34px;
    margin: 0 0 8px;
}

.edu-checkout-subtitle {
    text-align: center;
    color: #697386;
    margin-bottom: 35px;
}

.edu-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.edu-form-group {
    display: flex;
    flex-direction: column;
}

.edu-form-group.edu-full {
    grid-column: 1 / -1;
}

.edu-form-group label {
    font-weight: 700;
    margin-bottom: 7px;
}

.edu-form-group input,
.edu-form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #d9dce4;
    border-radius: 9px;
    font-size: 15px;
    background: #ffffff;
}

.edu-form-group input:focus,
.edu-form-group select:focus {
    outline: none;
    border-color: #6847e8;
}

.edu-order-box {
    margin-top: 25px;
    padding: 20px;
    background: #f7f8fc;
    border-radius: 12px;
}

.edu-order-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
}

.edu-total-row {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-size: 20px;
}

.edu-pay-button {
    width: 100%;
    margin-top: 25px;
    border: 0;
    border-radius: 10px;
    padding: 16px;
    background: #6847e8;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
}

.edu-pay-button:hover {
    background: #5333c9;
}

.edu-secure {
    text-align: center;
    color: #697386;
    font-size: 13px;
    margin-top: 14px;
}

.edu-faq {
    max-width: 800px;
    margin: auto;
}

.edu-faq details {
    border-bottom: 1px solid #e5e6eb;
    padding: 20px 0;
}

.edu-faq summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
}

.edu-faq p {
    color: #697386;
    margin-bottom: 0;
}

.edu-final-cta {
    padding: 80px 0;
    background: #6847e8;
    color: #ffffff;
    text-align: center;
}

.edu-final-cta h2 {
    font-size: 42px;
    margin: 0 0 15px;
}

.edu-final-cta p {
    font-size: 18px;
    margin-bottom: 28px;
}

@media (max-width: 850px) {

    .edu-hero-grid {
        grid-template-columns: 1fr;
    }

    .edu-features {
        grid-template-columns: 1fr 1fr;
    }

    .edu-plans {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: auto;
    }

    .edu-create-grid {
        grid-template-columns: 1fr 1fr;
    }

    .edu-steps {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .edu-hero {
        padding: 60px 0;
    }

    .edu-section {
        padding: 60px 0;
    }

    .edu-hero h1 {
        font-size: 45px;
    }

    .edu-features,
    .edu-create-grid,
    .edu-form-grid {
        grid-template-columns: 1fr;
    }

    .edu-form-group.edu-full {
        grid-column: auto;
    }

    .edu-checkout {
        padding: 25px 18px;
    }

    .edu-section-title h2 {
        font-size: 32px;
    }

}