.cta-section {
    background: #0B0E11;
}

.cta-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 90px 32px;
    text-align: center;
}

.cta-inner img {
    height: 40px;
    margin-bottom: 26px;
}

.cta-inner h2 {
    font-family: 'Archivo';
    font-weight: 800;
    font-size: 40px;
    letter-spacing: -0.022em;
    color: #fff;
    margin: 0;
    text-wrap: balance;
}

.cta-inner p {
    font-size: 18px;
    color: #B7C0C6;
    max-width: 560px;
    margin: 18px auto 0;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px;
}

.cta-buttons .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0B0E11;
    text-decoration: none;
    font-weight: 700;
    font-size: 15.5px;
    padding: 15px 26px;
    border-radius: 12px;
    transition: transform 0.2s;
}



.cta-buttons .btn-white:hover {
    transform: translateY(-1px);
}

.cta-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.cta-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15.5px;
    padding: 15px 26px;
    border-radius: 12px;
    border: 1px solid #3A4046;
    transition: border-color 0.2s;
}

.cta-buttons .btn-outline:hover {
    border-color: #fff;
}

.microsoft {
    width: 24px;
    height: 24px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);

    gap: 2px;

    flex-shrink: 0;
}

.microsoft span:nth-child(1) {
    background: #f25022;
}

.microsoft span:nth-child(2) {
    background: #7fba00;
}

.microsoft span:nth-child(3) {
    background: #00a4ef;
}

.microsoft span:nth-child(4) {
    background: #ffb900;
}