.btn-primary {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 55px;
}

.btn-primary:hover {
    background: rgba(244, 122, 31, 0.5);
    color: rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-light);
    padding: 15px 0;
    padding-left: 30px;
    padding-right: 8px;
    font-size: 18px;
    border-radius: 100px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 55px;
}

.btn-secondary:hover {
    border-color: rgba(245, 240, 232, 0.6);
    background: rgba(245, 240, 232, 0.06);
}

.btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    box-sizing: border-box;
    width: 188px;
    height: 55px;
    padding: 15px 8px 15px 30px;
    background: rgba(244, 122, 31, 0.3);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-more:hover {
    background: rgba(244, 122, 31, 0.45);
}

.service-card--orange .btn-more {
    background: rgba(0, 0, 0, 0.3);
}

.service-card--orange .btn-more:hover {
    background: rgba(0, 0, 0, 0.45);
}

.btn-projects {
    box-sizing: border-box;
    width: 248px;
    height: 55px;
    padding: 0 18px 0 22px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-light);
    font-size: 18px;
    border: none;
    border-radius: 100px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    white-space: nowrap;
}

.btn-projects:hover {
    border-color: rgba(245, 240, 232, 0.6);
    background: rgba(0, 0, 0, 0.6);
}