:root {
    --color-orange: #f57c00;
    --color-orange-dark: #d96800;
    --color-orange-soft: #fff4e8;
    --color-graphite: #292d30;
    --color-border: #e4e6e8;
    --color-dark: #1d1d1d;

    --color-steel: #616161;
    --color-light: #f5f6fa;
    --color-white: #ffffff;

    --color-background: #f5f6f7;
    --shadow-card: 0 20px 50px rgba(26, 30, 33, 0.08);
    --shadow-2: 0 22px 55px rgba(25, 25, 25, 0.09);
    --radius-large: 28px;
    --radius-medium: 20px;

    --font-main: "Inter", sans-serif;
    --font-heading: "Poppins", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-graphite);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    line-height: 1.6;
}

.container {
    width: min(100% - 32px, 1200px);
    margin-inline: auto;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
}

h1 {
    font-size: clamp(2.5rem, 1.8571rem + 1.7857vw, 4rem);
    max-width: 760px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

h2 {
    max-width: 760px;
    font-size: clamp(2rem, 1.5714rem + 1.1905vw, 3rem);
    margin-bottom: 18px;
    line-height: 1.12;
    letter-spacing: -0.035em;
    color: var(--color-graphite);
    font-weight: 700;
}

.section {
    padding-block: 104px;
}

.section-heading {
    margin-bottom: 48px;
}

.section-heading--center {
    max-width: 790px;
    margin-inline: auto;
    margin-bottom: 52px;
    text-align: center;
}

.section-heading p {
    max-width: 700px;
    margin: 0;
    color: var(--color-steel);
    font-size: 1.05rem;
    line-height: 1.75;
}

.section-heading--center p {
    margin-inline: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: var(--color-orange);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.section-badge::before {
    content: "";
    width: 28px;
    height: 3px;
    background: currentColor;
}

.section-badge--light {
    color: #ffb15f;
}

.section-badge--dark {
    color: #ffd5ac;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding-inline: 28px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 800;
    will-change: transform;
    transform: translate(0, 0);
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--color-orange);
    color: var(--color-white);
}

.button--primary:hover {
    background: var(--color-orange-dark);
}

.button--secondary {
    border-color: rgba(41, 45, 48, 0.18);
    background: var(--color-white);
    color: var(--color-graphite);
}

.button--secondary:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.button--light {
    background: var(--color-white);
    color: var(--color-graphite);
}

.button--light:hover {
    color: var(--color-orange);
}

button {
    font-family: var(--font-main);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #ffad53;
}

@media (max-width: 980px) {
    .section {
        padding-block: 80px;
    }

    h1 {
        line-height: 1.2;
        letter-spacing: -0.015em;
    }

    h2 {
        letter-spacing: -0.015em;
    }
}

@media (max-width: 640px) {
    .section {
        padding-block: 66px;
    }

    .section-heading {
        margin-bottom: 36px;
    }
}