.container-custom {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 120px 0;
}
section.hero{
    min-height: 100vh;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--purple-soft);
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.section-title {
    margin-top: 18px;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 800;
    letter-spacing: -.05em;
    color: var(--black);
}

.section-desc {
    margin-top: 18px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 16px;
}

.btn-main,
.btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    padding: 0 28px;
    border-radius: 14px;
    font-weight: 800;
    transition: .25s ease;
}

.btn-main {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
    border: 0;
    box-shadow: 0 14px 30px rgba(113, 87, 255, .28);
}

.btn-main:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 20px 45px rgba(113, 87, 255, .36);
}

.btn-line {
    background: rgba(255,255,255,.68);
    color: var(--purple);
    border: 1px solid rgba(113, 87, 255, .28);
}

.btn-line:hover {
    background: var(--purple-soft);
    color: var(--purple-dark);
    transform: translateY(-3px);
}

.profile-info {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.info-row {
    display: grid;
    grid-template-columns: 32px 70px 1fr;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.info-row i,
.info-row b {
    color: var(--purple);
}

.modal-content {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid var(--border);
    padding: 24px 30px;
}

.modal-body {
    padding: 30px;
}

.top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: var(--black);
    color: #fff;
    box-shadow: 0 14px 40px rgba(16,17,36,.18);
}

@media (max-width: 575px) {
    .container-custom {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 90px 0;
    }
}