@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--hc-text);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container-hc {
    width: min(100% - 32px, var(--hc-container));
    margin-left: auto;
    margin-right: auto;
}

.section {
    padding: 90px 0;
}

.section-light {
    background: var(--hc-bg);
}

.section-title {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-title .eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-radius: 50px;
    background: #eff6ff;
    color: var(--hc-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
}

.section-title h2 {
    margin-bottom: 16px;
    color: var(--hc-dark);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-title p {
    color: var(--hc-muted);
    font-size: 16px;
}

.btn-hc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--hc-transition);
}

.btn-primary-hc {
    background: var(--hc-primary);
    color: #ffffff;
    box-shadow: 0 7px 18px rgba(37, 99, 235, .22);
}

.btn-primary-hc:hover {
    background: var(--hc-primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-hc {
    background: #ffffff;
    color: var(--hc-dark);
    border-color: var(--hc-border);
}

.btn-outline-hc:hover {
    color: var(--hc-primary);
    border-color: #bfdbfe;
    background: #f8fbff;
}

.w-100 {
    width: 100%;
}

.text-primary-hc {
    color: var(--hc-primary);
}

.badge-hc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 6px 11px;
    font-size: 11px;
    font-weight: 800;
}

@media (max-width: 768px) {

    .section {
        padding: 65px 0;
    }

    .container-hc {
        width: min(100% - 28px, var(--hc-container));
    }

}