:root {
    --color-primary: #2857d6;
    --color-primary-dark: #1f45ad;
    --color-text: #172033;
    --color-muted: #66728a;
    --color-border: #e3e8f2;
    --color-background: #ffffff;
    --color-soft: #f5f7fb;
    --color-white: #ffffff;
    --container-width: 1180px;
    --radius: 14px;
    --shadow: 0 18px 50px rgba(24, 42, 82, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--color-text);
    background: var(--color-background);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(
        var(--container-width),
        calc(100% - 40px)
    );
    margin-inline: auto;
}

.section {
    padding: 80px 0;
}

.section-soft {
    background: var(--color-soft);
}

.section-heading {
    margin-bottom: 38px;
    text-align: center;
}

.section-heading span {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
}