* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--lr-font);
    color: var(--lr-black-100);
    background: var(--lr-white);
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    background: none;
}

.lr-container {
    width: 100%;
    max-width: calc(var(--lr-container) + var(--lr-gap) * 2);
    margin: 0 auto;
    padding: 0 var(--lr-gap);
}

.lr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: var(--lr-radius-pill);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    width: fit-content;
}

.lr-btn:hover {
    opacity: 0.9;
}

.lr-btn--primary {
    background: var(--lr-green-100);
    color: var(--lr-white);
}

.lr-btn--secondary {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--lr-green-100);
    color: var(--lr-green-100);
    backdrop-filter: blur(6px);
}

.lr-btn--gold {
    background: var(--lr-gold-80);
    color: var(--lr-black-100);
}

.lr-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.lr-section-title__left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.lr-section-title__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.lr-section-title__heading {
    font-size: 40px;
    font-weight: 600;
    color: var(--lr-green-100);
    line-height: 1.3;
}

.lr-section-title__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--lr-black-80);
    flex-shrink: 0;
}

.lr-section-title__link img {
    width: 16px;
    height: 16px;
}

.lr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--lr-black-80);
    margin-bottom: 24px;
}

.lr-eyebrow img {
    width: 24px;
    height: 24px;
}

.lr-heading-xl {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--lr-black-100);
}

.lr-heading-xl strong,
.lr-heading-xl .lr-text-bold {
    font-weight: 600;
}

.lr-heading-lg {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3;
}

.lr-heading-md {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
}

.lr-text-muted {
    color: var(--lr-black-60);
}

.lr-text-dark {
    color: var(--lr-black-80);
}

.lr-text-center {
    text-align: center;
}

.lr-center-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 872px;
    margin-left: auto;
    margin-right: auto;
}

.lr-eyebrow--center {
    justify-content: center;
}

.overflow {
    display: none;
}

@media (max-width: 1200px) {
    .lr-section-title__heading {
        font-size: 32px;
    }

    .lr-heading-xl {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    :root {
        --lr-gap: 16px;
    }

    .lr-section-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .lr-section-title__heading {
        font-size: 28px;
    }

    .lr-heading-xl {
        font-size: 28px;
    }

    .lr-btn {
        width: 100%;
    }
}
