.terms-hero {
    padding: 130px 0 65px;
    text-align: center;
    background:
            radial-gradient(circle at 50% 0%, rgba(93,63,211,.12), transparent 34%),
            linear-gradient(180deg, #fff 0%, #F5F7FA 100%);
}

.terms-hero .st {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.terms-hero .ss {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.terms-page {
    padding: 55px 0 100px;
    background: #F5F7FA;
}

.terms-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 760px);
    justify-content: center;
    gap: 28px;
    align-items: start;
}

.terms-index {
    position: sticky;
    top: 110px;
    padding: 24px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 18px 50px rgba(0,0,0,.04);
}

.terms-index span {
    display: block;
    margin-bottom: 16px;
    font-family: var(--font-h);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--purple);
}

.terms-index a {
    display: block;
    padding: 11px 0;
    color: #667586;
    font-size: .9rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: .25s ease;
}

.terms-index a:last-child {
    border-bottom: none;
}

.terms-index a:hover {
    color: var(--purple-e);
    transform: translateX(4px);
}

.terms-content {
    display: grid;
    gap: 24px;
}

.terms-card {
    padding: 38px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 18px 50px rgba(0,0,0,.04);
}

.terms-card h2 {
    font-family: var(--font-h);
    font-size: 1.75rem;
    line-height: 1.15;
    letter-spacing: -.04em;
    margin-bottom: 18px;
    color: var(--charcoal);
}

.terms-card h3 {
    font-family: var(--font-h);
    font-size: 1.12rem;
    margin: 24px 0 12px;
    color: var(--purple);
}

.terms-card p {
    color: #667586;
    line-height: 1.85;
    font-size: .94rem;
    margin-bottom: 18px;
}

.terms-card p:last-child {
    margin-bottom: 0;
}

.terms-card ul {
    padding-left: 20px;
    margin: 18px 0;
    color: #667586;
}

.terms-card li {
    margin-bottom: 10px;
    line-height: 1.65;
    font-size: .94rem;
}

.terms-list-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
    margin: 24px 0;
}

.terms-list-grid ul {
    margin: 0;
    padding: 24px 24px 24px 42px;
    border-radius: 22px;
    background: #F7F8FC;
    border: 1px solid rgba(0,0,0,.04);
}

.terms-check-list {
    list-style: none;
    padding-left: 0 !important;
}

.terms-check-list li {
    position: relative;
    padding-left: 30px;
}

.terms-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--purple);
    font-weight: 900;
}

.terms-highlight {
    margin-top: 24px;
    padding: 22px 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(93,63,211,.09), rgba(142,121,255,.06));
    border: 1px solid rgba(93,63,211,.10);
    color: #4B4A8F;
    line-height: 1.7;
    font-weight: 600;
}

.terms-contact-card {
    background:
            radial-gradient(circle at 90% 0%, rgba(255,255,255,.14), transparent 34%),
            linear-gradient(135deg, var(--purple), var(--purple-e));
    color: #fff;
}

.terms-contact-card h2,
.terms-contact-card p {
    color: #fff;
}

.terms-contact-card p {
    color: rgba(255,255,255,.78);
}

.terms-contact-card .btn-p {
    margin-top: 12px;
    background: #fff;
    color: var(--purple);
    box-shadow: none;
}

@media (max-width: 1024px) {
    .terms-layout {
        grid-template-columns: 1fr;
    }

    .terms-index {
        position: relative;
        top: auto;
    }
}

@media (max-width: 640px) {
    .terms-hero {
        padding: 130px 0 70px;
    }

    .terms-page {
        padding: 70px 0 90px;
    }

    .terms-card {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .terms-card h2 {
        font-size: 1.45rem;
    }

    .terms-list-grid {
        grid-template-columns: 1fr;
    }
}


.about-contact {
    padding: 90px 0 120px;
    background: #F5F7FA;
}

.about-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 54px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--purple), var(--purple-e));
    color: #fff;
    box-shadow: var(--shadow-purple);
}

.about-contact-box .sl,
.about-contact-box h2,
.about-contact-box p {
    color: #fff;
}

.about-contact-box h2 {
    max-width: 720px;
    font-family: var(--font-h);
    font-size: 2.4rem;
    line-height: 1.05;
    letter-spacing: -.04em;
    margin-bottom: 16px;
}

.about-contact-box p {
    max-width: 680px;
    color: rgba(255,255,255,.76);
    line-height: 1.7;
}

.about-contact-box .btn-p {
    background: #fff;
    color: var(--purple);
    min-width: 220px;
    box-shadow: none;
}

@media (max-width: 900px) {
    .about-contact-box {
        flex-direction: column;
        align-items: flex-start;
    }
}