html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    -webkit-font-smoothing: antialiased;
}

:root {
    --main-color: rgb(23, 124, 42);
    --secondary-color: rgb(134, 190, 155);
    --text-bg-color: rgb(104, 166, 221);
    --font-arial: "Arial", sans-serif;
    --font-arial-bold: "Arial Bold", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

input,
textarea,
button {
    outline: none;
    border: none;
}

body.no-scroll {
    overflow: hidden;
}

body {
    font-family: var(--font-arial), sans-serif;
    font-size: 18px;
    color: var(--main-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

main {
    display: flex;
    flex-direction: column;
    gap: 200px;
    overflow: hidden;
}

section.hero {
    height: 860px;
    padding: 30px 15px;
    position: relative;
    padding-top: 200px;

    .hero__content {
        display: flex;
        flex-direction: column;

        h1 {
            font-size: 100px;
            line-height: 100px;

            &:first-child {
                color: var(--secondary-color);
            }
        }

        span {
            font-size: 44px;
            line-height: 50px;
        }
    }

    .circle-bg {
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        transform: translate(20%, -20px);
        width: 50vw;
        max-width: 800px;
        height: auto;
        aspect-ratio: 1/1;
        border-radius: 50%;
        background-color: var(--secondary-color);
        box-shadow: 0 0 80px rgba(134, 190, 155, 0.4), 0 0 30px rgba(134, 190, 155, 0.2);
        will-change: transform;
    }

    .circle-fg {
        position: absolute;
        z-index: 2;
        bottom: 0;
        right: 0;
        transform: translate(15%, 10%);
        width: 45vw;
        max-width: 700px;
        height: auto;
        aspect-ratio: 1/1;
        border-radius: 50%;
        background-color: var(--main-color);
        box-shadow: 0 0 80px rgba(23, 124, 42, 0.4), 0 0 30px rgba(23, 124, 42, 0.2);
        will-change: transform;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            width: 90%;
            height: auto;
        }
    }
}

section.about {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-start;

    &>h1 {
        font-size: 50px;
        line-height: 1.1;
        font-family: var(--font-arial-bold), sans-serif;
        position: relative;

        &::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--main-color);
        }
    }

    .about__content {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
        align-items: stretch;
        width: 100%;

        .about__left {
            display: flex;

            img {
                width: 100%;
                height: auto;
                border-radius: 20px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
                object-fit: cover;
            }
        }

        img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            flex-grow: 1;
            object-fit: cover;
        }
    }

    .about__right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        background: rgba(134, 190, 155, 0.05);
        border-radius: 30px;

        p {
            font-size: 20px;
            line-height: 1.6;
            color: #333;

            b {
                color: var(--main-color);
            }
        }
    }
}

section.why {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: start;

    div {
        display: flex;
        flex-direction: column;
        gap: 35px;
        padding: 40px;
        background: rgba(134, 190, 155, 0.03);
        border-radius: 30px;
        border: 1px solid rgba(23, 124, 42, 0.05);

        h1 {
            font-size: 44px;
            line-height: 1.1;
            font-family: var(--font-arial-bold), sans-serif;
            color: var(--main-color);
            margin-bottom: 10px;
        }

        p {
            font-size: 19px;
            line-height: 1.6;
            color: #444;

            &.desc {
                font-size: 17px;
                background: var(--main-color);
                color: #fff;
                padding: 20px;
                border-radius: 15px;
                line-height: 1.5;
                font-weight: 400;
                opacity: 1;
            }
        }
    }

    &>div:last-child {
        background: #fff;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
        border-color: rgba(23, 124, 42, 0.1);
    }
}

section.quality {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;

    &>h1 {
        font-size: 48px;
        line-height: 1.1;
        font-family: var(--font-arial-bold), sans-serif;
    }

    &>span {
        max-width: 600px;
        width: 100%;
        font-size: 22px;
        line-height: 32px;
        text-align: center;
        opacity: 0.8;
    }

    .items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        width: 100%;
        margin-top: 50px;

        .item {
            position: relative;
            padding: 40px 30px 80px;
            background: #fff;
            border-radius: 24px;
            border: 1px solid rgba(134, 190, 155, 0.2);
            transition: all 0.3s ease;
            overflow: hidden;

            h3 {
                font-size: 24px;
                line-height: 1.2;
                font-weight: 700;
                margin-bottom: 15px;
                color: var(--main-color);
            }

            p {
                font-size: 16px;
                line-height: 1.6;
                color: #666;
            }

            span.fg-num {
                position: absolute;
                font-size: 120px;
                line-height: 1;
                font-weight: 900;
                color: var(--secondary-color);
                opacity: 0.1;
                bottom: -20px;
                right: 20px;
                pointer-events: none;
            }
        }
    }
}

section.advantages {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;

    &>h1 {
        font-size: 48px;
        line-height: 1.1;
        font-family: var(--font-arial-bold), sans-serif;
    }

    &>span {
        font-size: 22px;
        font-weight: 500;
        color: var(--secondary-color);
    }

    .items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
        margin-top: 120px;

        .item {
            background-color: #fff;
            color: #333;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 70px 40px 50px;
            border-radius: 30px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
            position: relative;
            transition: all 0.4s ease;
            border: 1px solid rgba(23, 124, 42, 0.15);

            .fg-num {
                position: absolute;
                border-radius: 20px;
                background-color: var(--main-color);
                width: 70px;
                height: 70px;
                display: flex;
                align-items: center;
                justify-content: center;
                top: 0;
                left: 50%;
                translate: -50% -50%;
                box-shadow: 0 10px 20px rgba(23, 124, 42, 0.3);

                span {
                    font-size: 32px;
                    font-weight: 700;
                    color: #fff;
                }
            }

            h3 {
                margin-top: 20px;
                font-size: 22px;
                line-height: 1.3;
                color: var(--main-color);
                font-weight: 700;
            }

            p {
                margin-top: 15px;
                font-size: 16px;
                line-height: 1.6;
                color: #666;
            }

            .advantage-icon {
                width: 80px;
                height: 80px;
                margin-top: 30px;
                border-radius: 50%;
                opacity: 0.9;
                background: #fff;
                fill: var(--main-color);
            }
        }
    }
}

section.contacts {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 100px;

    .header {
        text-align: flex-start;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        position: relative;
        width: 100%;

        &>h1 {
            font-size: 50px;
            line-height: 1.1;
            font-family: var(--font-arial-bold), sans-serif;
            color: var(--main-color);
        }

        &>span {
            max-width: 600px;
            width: 100%;
            font-size: 20px;
            line-height: 1.6;
            color: #666;
        }

        &>.circle {
            position: absolute;
            z-index: 2;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            aspect-ratio: 1/1;
            border-radius: 50%;
            background-color: var(--secondary-color);
            box-shadow: 0 0 80px rgba(134, 190, 155, 0.4), 0 0 30px rgba(134, 190, 155, 0.2);
            will-change: transform;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                width: 70%;
                height: auto;
            }
        }
    }

    .contacts__content {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
        margin-top: 40px;
        position: relative;
        align-items: start;

        .contact {
            gap: 40px;
            position: relative;
            display: flex;
            flex-direction: column;

            &>div:first-child {
                z-index: 5;
                padding: 50px;
                background: var(--main-color);
                color: #fff;
                border-radius: 40px;
                display: flex;
                flex-direction: column;
                box-shadow: 0 20px 50px rgba(23, 124, 42, 0.2);
            }

            h2 {
                font-size: 28px;
                line-height: 1.2;
                font-weight: 700;
                margin-bottom: 20px;
                word-break: break-all;

                a {
                    color: #fff;
                    text-decoration: none;
                    transition: opacity .3s;

                    &:hover {
                        opacity: 0.75;
                    }
                }
            }

            span {
                font-weight: 700;
                opacity: 0.7;
                text-transform: uppercase;
                letter-spacing: 1px;
                font-size: 14px;
                margin-top: 10px;
            }

            p {
                margin-top: 5px;
                font-size: 18px;
                line-height: 1.6;
            }
        }

        form {
            padding: 30px 0;
            display: flex;
            flex-direction: column;
            gap: 20px;

            .input-group {
                display: flex;
                flex-direction: column;
                gap: 8px;
            }

            input,
            textarea {
                color: #333;
                border: 1px solid rgba(0, 0, 0, 0.1);
                background-color: rgba(134, 190, 155, 0.05);
                font-size: 17px;
                padding: 20px 25px;
                border-radius: 15px;
                transition: all 0.3s ease;
                width: 100%;

                &:focus {
                    border-color: var(--main-color);
                    background: #fff;
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
                }

                &.invalid {
                    border-color: #ef4444;
                    background-color: #fef2f2;
                }
            }

            .error-msg {
                color: #ef4444;
                font-size: 14px;
                font-weight: 500;
                margin-left: 10px;
                display: none;
            }

            .input-group.invalid {

                input,
                textarea {
                    border-color: #ef4444;
                    background-color: #fef2f2;
                }

                .error-msg {
                    display: block;
                }
            }

            input:not([type="checkbox"]) {
                height: 65px;
            }

            input[type="checkbox"] {
                width: 20px;
                height: 20px;
                cursor: pointer;
                accent-color: var(--main-color);
                border-radius: 4px;
            }

            textarea {
                height: 160px;
                resize: none;
                font-family: var(--font-arial), sans-serif;
            }

            label {
                color: #444;
                display: flex;
                align-items: center;
                gap: 12px;
                font-size: 16px;
                cursor: pointer;
            }

            button {
                background-color: var(--main-color);
                color: #fff;
                padding: 0 40px;
                display: block;
                width: fit-content;
                font-weight: 700;
                height: 65px;
                font-size: 18px;
                border-radius: 15px;
                cursor: pointer;
                transition: all 0.3s ease;

                &:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 10px 20px rgba(23, 124, 42, 0.3);
                }
            }

            .success-msg {
                color: #10B981;
                font-size: 17px;
                font-weight: 700;
                margin-bottom: 20px;
                display: none;
                text-align: center;
                background: rgba(16, 185, 129, 0.08);
                padding: 15px;
                border-radius: 12px;
                border: 1px solid rgba(16, 185, 129, 0.2);
            }

            .success-msg.visible {
                display: block;
            }
        }

        .circle-bg {
            position: absolute;
            z-index: 1;
            right: 0;
            translate: -10% -100px;
            top: 0;
            width: 100vw;
            max-width: 670px;
            height: auto;
            aspect-ratio: 1/1;
            border-radius: 50%;
            background-color: var(--secondary-color);
            display: none;
        }

        .circle-fg {
            display: none;
        }
    }
}

.main-header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(12, 39, 131, 0.1);
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.nav-links-desktop a {
    text-decoration: none;
    color: var(--main-color);
    font-weight: 600;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links-desktop a:hover {
    color: var(--secondary-color);
}

.nav-links-desktop a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
}

.menu-btn {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    width: 48px;
    height: 48px;
    background-color: var(--main-color);
    position: fixed;
    top: 15px;
    right: 15px;
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 1px;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 0;
    }

    .main-header {
        background: transparent;
        border-bottom: none;
        box-shadow: none;
        position: absolute;
        width: 100%;
        height: 0;
        padding: 0;
        overflow: hidden;
        z-index: 1001;
    }

    .nav-links-desktop {
        display: none;
    }

    .mobile-menu {
        display: flex;
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--main-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.4s ease,
            visibility 0s 0.4s;
    }

    .mobile-menu.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: all;
        opacity: 1;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.4s ease,
            visibility 0s;
    }

    .nav-links-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        list-style: none;
    }

    .nav-links-mobile li a {
        color: #fff;
        font-size: 24px;
        text-decoration: none;
        font-weight: 600;
    }

    .nav-links-mobile li a:hover {
        color: var(--secondary-color);
    }

    .menu-btn {
        display: flex;
    }

    .menu-btn.active {
        background-color: transparent;
    }

    .menu-btn.active span {
        background-color: #fff;
    }

    main {
        gap: 60px;
    }

    .container {
        padding: 0 20px;
    }

    section.hero {
        height: 700px;
        padding-top: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        overflow: hidden;

        .hero__content {
            align-items: center;

            h1 {
                font-size: 48px;
                line-height: 52px;
            }

            span {
                font-size: 20px;
                line-height: 28px;
                margin-top: 10px;
            }
        }

        .circle-bg {
            position: relative;
            transform: translate(0);
            width: 75vw;
            margin: 30px auto 0;
            right: auto;
            top: auto;
        }

        .circle-fg {
            width: 65vw;
            transform: translate(10%, 15%);
        }
    }

    section.about {
        gap: 30px;

        &>h1 {
            font-size: 36px;

            &::after {
                width: 40px;
            }
        }

        .about__content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;

            .about__right {
                padding: 30px 20px;

                p {
                    font-size: 18px;
                }
            }
        }
    }

    section.why {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;

        div {
            padding: 30px;

            h1 {
                font-size: 32px;
            }

            p {
                font-size: 17px;
            }
        }
    }

    section.quality {
        &>h1 {
            font-size: 32px;
            text-align: center;
        }

        .items {
            grid-template-columns: 1fr;
            gap: 20px;

            .item {
                padding: 40px 20px;

                span.fg-num {
                    font-size: 80px;
                }
            }
        }
    }

    section.advantages {
        &>h1 {
            font-size: 32px;
            text-align: center;
        }

        &>span {
            font-size: 18px;
        }

        .items {
            grid-template-columns: 1fr;
            gap: 60px;
            margin-top: 60px;

            .item {
                padding: 40px 20px;

                .fg-num {
                    left: 50%;
                    translate: -50% -50%;
                }
            }
        }
    }

    section.contacts {
        gap: 40px;
        padding-bottom: 60px;

        .header {
            align-items: center;
            text-align: center;

            &>h1 {
                font-size: 36px;
            }

            &>span {
                font-size: 18px;
            }

            &>.circle {
                display: none;
            }
        }

        .contacts__content {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 20px;

            .contact {
                display: flex;
                flex-direction: column;

                &>div:first-child {
                    order: 1;
                    padding: 30px;
                    border-radius: 25px;

                    h2 {
                        font-size: 22px;
                    }
                }
            }

            form {
                order: 2;
                width: 100%;
                padding: 0;

                button {
                    width: 100%;
                }
            }
        }
    }
}

.scroll-to-top {
    background-color: var(--main-color);
    color: #fff;
    width: 56px;
    height: 56px;
    display: flex;
    position: fixed;
    z-index: 99990;
    bottom: 30px;
    right: 30px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(23, 124, 42, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 12px 30px rgba(23, 124, 42, 0.5);
    transform: translateY(-5px) scale(1.05);
}



.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-bottom {
    transform: translateY(100px);
}

.reveal-top {
    transform: translateY(-100px);
}

.reveal-left {
    transform: translateX(-100px);
}

.reveal-right {
    transform: translateX(100px);
}

.reveal-zoom {
    transform: scale(0.5);
}

.reveal-rotate {
    transform: rotate(-10deg) scale(0.8);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0);
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-stagger.active>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger.active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger.active>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger.active>*:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-stagger.active>*:nth-child(6) {
    transition-delay: 0.6s;
}

.hero__content h1,
.hero__content span {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.hero__content.active h1,
.hero__content.active span {
    opacity: 1;
    transform: translateX(0);
}

.hero__content.active h1:nth-child(1) {
    transition-delay: 0.1s;
}

.hero__content.active h1:nth-child(2) {
    transition-delay: 0.2s;
}

.hero__content.active h1:nth-child(3) {
    transition-delay: 0.3s;
}

.hero__content.active span {
    transition-delay: 0.5s;
}

.circle-bg {
    opacity: 0;
    transform: translate(40%, -20px);
    transition: all 1.5s cubic-bezier(0.5, 0, 0, 1);
}

.circle-bg.active {
    opacity: 1;
    transform: translate(20%, -20px);
}

.circle-fg {
    opacity: 0;
    transform: translate(-10%, 10%);
    transition: all 1.5s cubic-bezier(0.5, 0, 0, 1);
}

.circle-fg.active {
    opacity: 1;
    transform: translate(15%, 10%);
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1) !important;
}

.reveal-stagger.active>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(1) {
    transition-delay: 0.1s !important;
}

.reveal-stagger.active>*:nth-child(2) {
    transition-delay: 0.2s !important;
}

.reveal-stagger.active>*:nth-child(3) {
    transition-delay: 0.3s !important;
}

.reveal-stagger.active>*:nth-child(4) {
    transition-delay: 0.4s !important;
}

.reveal-stagger.active>*:nth-child(5) {
    transition-delay: 0.5s !important;
}

.reveal-stagger.active>*:nth-child(6) {
    transition-delay: 0.6s !important;
}
section.contacts .contacts__content form .form-error-msg {
    color: #ef4444;
    font-size: 15px;
    font-weight: 600;
    display: none;
    text-align: center;
    background: #fef2f2;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

section.contacts .contacts__content form .form-error-msg.visible {
    display: block;
}

.topyang-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* ------------------------------------------------------------------
   WordPress integration fixes
   ------------------------------------------------------------------ */

/* The theme's global style.css sets `ul { margin: 0 0 1.5em 3em }`;
   reset it for the landing navigation lists. */
.main-header .nav-menu ul,
.nav-links-desktop,
.nav-links-mobile,
.mobile-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Sticky header and fixed burger button must clear the WP admin bar. */
body.admin-bar .main-header {
    top: 32px;
}

body.admin-bar .menu-btn {
    top: calc(15px + 32px);
}

body.admin-bar .mobile-menu {
    padding-top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .main-header {
        top: 46px;
    }

    body.admin-bar .menu-btn {
        top: calc(15px + 46px);
    }

    body.admin-bar .mobile-menu {
        padding-top: 46px;
    }
}

/* Below 600px the admin bar is absolute, but the html top margin stays,
   so keep the burger button below it to remain clickable at page top. */
@media screen and (max-width: 600px) {
    body.admin-bar .menu-btn {
        top: calc(15px + 46px);
    }
}

/* The theme's global style.css adds bottom margins to paragraphs and
   a system font stack to form elements; restore the landing metrics. */
body.topyang-landing main p {
    margin-bottom: 0;
}

body.topyang-landing input,
body.topyang-landing textarea,
body.topyang-landing button,
body.topyang-landing select {
    font-family: var(--font-arial), sans-serif;
}

/* Normalize in the theme's style.css gives h1 `margin: 0.67em 0`;
   headings inside the landing manage their own spacing. */
body.topyang-landing h1,
body.topyang-landing h2,
body.topyang-landing h3,
body.topyang-landing h4,
body.topyang-landing h5,
body.topyang-landing h6 {
    margin: 0;
}
