:root {
    color-scheme: light;
}

#seo-shell,
#seo-shell * {
    box-sizing: border-box;
}

#seo-shell {
    position: fixed;
    inset: 0;
    z-index: 10000;
    overflow: auto;
    color: #163727;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.seo-shell__header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 3;
}

.seo-shell__nav {
    display: flex;
    width: min(1180px, calc(100% - 48px));
    min-height: 92px;
    margin: 0 auto;
    align-items: center;
    gap: 32px;
}

.seo-shell__brand {
    display: inline-flex;
    margin-right: auto;
}

.seo-shell__brand img {
    width: 188px;
    height: auto;
    filter: brightness(0) invert(1);
}

.seo-shell__links {
    display: flex;
    gap: 28px;
}

.seo-shell__nav a,
.seo-shell__footer a {
    color: #fff;
    text-decoration: none;
}

.seo-shell__hero {
    position: relative;
    display: grid;
    min-height: 680px;
    align-items: center;
    overflow: hidden;
}

.seo-shell__hero-image,
.seo-shell__hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.seo-shell__hero-image {
    object-fit: cover;
}

.seo-shell__hero-shade {
    background: linear-gradient(90deg, rgba(10, 42, 24, 0.82), rgba(10, 42, 24, 0.22));
}

.seo-shell__hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 48px));
    margin: 80px auto 0;
    color: #fff;
}

.seo-shell__hero-content h1 {
    max-width: 760px;
    margin: 14px 0 22px;
    font-size: clamp(2.7rem, 6vw, 5.25rem);
    line-height: 0.98;
}

.seo-shell__hero-content p {
    max-width: 650px;
    margin: 0 0 30px;
    font-size: 1.14rem;
    line-height: 1.65;
}

.seo-shell__eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.seo-shell__eyebrow--dark {
    color: #287e49;
}

.seo-shell__button {
    display: inline-flex;
    min-height: 48px;
    padding: 13px 22px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #103923;
    background: #91e365;
    font-weight: 700;
    text-decoration: none;
}

.seo-shell__button--header {
    color: #103923 !important;
}

.seo-shell__section {
    padding: 88px 24px;
}

.seo-shell__section--tint {
    background: #eff8ee;
}

.seo-shell__section-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.seo-shell__section h2,
.seo-shell__footer h2 {
    max-width: 840px;
    margin: 12px 0 22px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
}

.seo-shell__section p {
    max-width: 760px;
    line-height: 1.7;
}

.seo-shell__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 38px;
}

.seo-shell__steps article {
    padding: 24px;
    border: 1px solid #d8e9d9;
    border-radius: 16px;
    background: #fff;
}

.seo-shell__footer {
    padding: 72px 24px;
    color: #fff;
    background: #113b27;
}

.seo-shell__footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.seo-shell__footer address {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-style: normal;
}

@media (max-width: 820px) {
    .seo-shell__nav {
        width: calc(100% - 32px);
        min-height: 78px;
    }

    .seo-shell__brand img {
        width: 154px;
    }

    .seo-shell__links,
    .seo-shell__button--header {
        display: none;
    }

    .seo-shell__hero {
        min-height: 620px;
    }

    .seo-shell__hero-content {
        width: calc(100% - 40px);
        margin-top: 64px;
    }

    .seo-shell__steps,
    .seo-shell__footer-inner {
        grid-template-columns: 1fr;
    }
}
