:root {
    --color-purple: #61399E;
    --color-orange: #E67E00;
    --color-orange-text: #C47A2B;
    --color-green: #7BB542;
    --color-bg-light: #F9F7FD;
}

.cta-section {
    padding: 80px 0;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 120px;
    padding: 20px 40px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.cta-card__text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.cta-card--purple {
    border-color: #E8E2F7;
    color: var(--color-purple);
}

.cta-card--orange {
    border-color: #FEEBC8;
    color: var(--color-orange-text);
}

.cta-card--green {
    border-color: #E2F2D5;
    color: var(--color-green);
}

.cta-card--blue {
    border-color: #E8E2F7;
    color: var(--color-purple);
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.footer {
    position: relative;
    background-color: transparent;
}
.button--outline {
    text-decoration: none;
}
.hot-nav {
    padding: 25px 0;
    margin-top: 35px;
}
.footer__inner {
    background-color: var(--color-bg-light);
    border-radius: 55px 55px 0 0;
    padding: 50px 0 30px 0;
}

.footer__top {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 60px;
}

.footer__logo {
    height: 70px;
    width: auto;
}

.footer__contact-link {
    font-size: 18px;
    font-weight: 600;
    color: #4A4A4A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__contact-link:hover {
    color: var(--color-orange);
}

.btn-discovery {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #D16E00 0%, #E98702 100%);
    color: #fff;
    border: none;
    padding: 15px 24px 15px 40px;
    border-radius: 25px;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-discovery:hover {
    background: linear-gradient(to right, #E98702 0%, #D16E00 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 126, 0, 0.3);
}

.btn-discovery.btn-primary {
    background: linear-gradient(to right, #73499A 0%, #8B59BC 100%)!important;
}
.btn-discovery.btn-primary:hover {
    background: linear-gradient(to right, #8B59BC 0%, #73499A 100%);
    box-shadow: 0 10px 25px rgba(135, 87, 182, 0.3);
}

.btn-discovery:active {
    transform: scale(0.97);
}

.btn-discovery__icon {
    background: #fff;
    color: var(--color-orange);
    width: 32px;
    height: 32px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    transition: transform 0.3s ease;
}
.btn-discovery.btn-primary .btn-discovery__icon {
    background: #fff!important;
    color: #8757B6!important;
}

.btn-discovery:hover .btn-discovery__icon {
    transform: translateX(4px);
}

.footer__heading {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list li {
    margin-bottom: 15px;
}

.footer__list a {
    color: #8E8E8E;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer__list a:hover {
    color: var(--color-purple);
}

.footer__bottom {
    background-color: var(--color-bg-light);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer__copyright {
    font-size: 14px;
    color: #A0A0A0;
}

@media (max-width: 991px) {
    .footer__inner {
        border-radius: 40px 40px 0 0;
        padding: 60px 0 40px 0;
    }
    .footer__top {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .footer__contacts {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .cta-card {
        height: 100px;
        padding: 15px 25px;
    }
    .cta-card__text {
        font-size: 16px;
    }
}