html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.home-hero {
    padding: 0 0 8px;
}

.home-hero__container {
    margin: 0 auto;
    padding: 0;
}

.home-hero__stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    margin-bottom: 28px;
}

.home-hero__title {
    margin: 0;
    line-height: 1;
    text-align: center;
    font-family: "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    width: 100%;
    font-synthesis: none;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-optical-sizing: none;
}

.home-hero__accent {
    color: #8cbd57;
}

.home-hero__desc {
    font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-stretch: 100%;
    font-size: 18px;
    line-height: 1.55;
    text-align: center;
    opacity: .95;
    overflow: visible;

    font-synthesis: none;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-optical-sizing: none;
}

.home-hero__buttons {
    --btn-gap: 16px;
    display: flex;
    gap: var(--btn-gap);
    justify-content: center;
    flex-wrap: nowrap;
}

.home-hero__btn,
.home-hero__btn--alt {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: none;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-appearance: none;
}

.home-hero__btn {
    display: inline-block;
    margin: 0;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    background: #8cbd57;
    color: #fff;
    font-family: "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(122, 192, 88, .25);
    white-space: nowrap;
    box-sizing: border-box;
    border: 2px solid transparent;
    flex: 0 0 var(--btn-equal-width, auto);
    text-align: center;
    font-size: 14px;
}

.home-hero__btn:hover {
    filter: brightness(.96);
}

.home-hero__btn:active {
    transform: translateY(1px);
}

.home-hero__btn--alt {
    background: #fff;
    color: #8cbd57;
    border-color: #8cbd57;
    box-shadow: 0 6px 18px rgba(122, 192, 88, .12);
    font-family: "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 700;
    line-height: 1;
    font-size: 14px;
}

.home-hero__btn--alt:hover {
    background: #f9fff6;
}

@media (max-width: 700px) {
    .home-hero__buttons {
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .home-hero__title {
        font-size: 2.5rem;
    }

    .home-hero__btn {
        flex: auto;
        width: 100%;
    }
}

.hero-modal__overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, .45);
}

.hero-modal__card {
    width: min(480px, 92vw);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, .18);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.hero-modal__head {
    position: relative;
    padding: 0;
    background: #fff;
    font-weight: 700;
    display: block;
    align-items: center;
    justify-content: center;
}

#heroModalTitle {
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 18px;
    font-family: robotomedium;
    line-height: 1;
    color: #000;
    max-width: calc(100% - 20px);
    box-sizing: border-box;
    margin: 20px 20px 0;
    width: calc(100% - 40px);
    padding: 18px 60px 18px 20px;
    max-width: none;
}

.hero-modal__close {
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 38px;
    line-height: 1;
    color: #111827;
    padding: 4px 8px;
    border-radius: 8px;
}

.hero-modal__close:hover {
    background: #f3f4f6;
}

.hero-modal__body {
    padding: 18px 46px 16px;
}

.hero-modal__hint {
    color: #111827;
    margin: 0 0 16px;
    font-size: 14px;
    font: normal normal 14px roboto_ltregular, sans-serif, arial;
}

.hfield {
    margin-bottom: 20px;
}

.hlabel {
    display: block;
    margin: 0 0 6px;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
}

.hinput {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    padding: 10px 14px;
    font: inherit;
    box-sizing: border-box;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.hinput::placeholder {
    color: #9ca3af;
}

.hinput:focus {
    outline: none;
    border-color: #d2232a;
    box-shadow: 0 0 0 4px rgba(210, 35, 42, .12);
}

.hconsent {
    position: relative;
    display: block;
    margin: 12px 0 20px;
    color: #111827;
    font-size: 14px;
}

.hconsent__chk {
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.hconsent__label {
    position: relative;
    padding-left: 28px;
    line-height: 1.35;
    display: inline-block;
    cursor: default;
}

.hconsent__label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #cfd3da;
    border-radius: 4px;
    background: #fff;
    pointer-events: none;
}

.hconsent__chk:checked + .hconsent__label::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 6px;
    width: 10px;
    height: 6px;
    border-left: 2px solid #8cbd57;
    border-bottom: 2px solid #8cbd57;
    transform: rotate(-45deg);
}

.hconsent__chk:focus-visible + .hconsent__label::before {
    outline: 2px solid #8cbd57;
    outline-offset: 2px;
}

.hconsent.error .hconsent__label::before {
    border-color: #ef4444;
}

.hconsent__label a {
    text-decoration: none;
    color: #555555;
}

.hconsent__label a:hover {
    text-decoration: none;
    color: #777777;
}


.hactions {
    display: flex;
    gap: 12px;
    margin: 16px 0 18px;
}

.hbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #8cbd57;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    transition: filter .15s ease, transform .05s ease;
}

.hbtn:hover {
    filter: brightness(.96);
}

.hbtn:active {
    transform: translateY(1px);
}

.hbtn--ghost {
    background: #fff;
    color: #333;
    border-color: #d0d0d0;
}

.herr {
    color: #d2232a;
    margin: 8px 0 0;
}

.hdn {
    display: none;
}

.hero-ok {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-ok__title {
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}

.hero-ok__text {
    color: #444;
    margin: 0;
}

.hreq {
    color: #d2232a;
    font-weight: 700;
}

.hactions--single .hbtn[type="submit"] {
    flex: 1 1 100%;
}

.hform-note {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.4;
    color: #111827;
    padding-bottom: 20px;
}

.hmsg {
    display: none;
    color: #d2232a;
    margin: 4px 0 6px;
    font-size: 12px;
    line-height: 1.3;
    font-family: robotoMedium;
}

.hfield.error .hmsg {
    display: block
}

.hfield.error .hinput {
    border-color: #d2232a;
    box-shadow: 0 0 0 4px rgba(210, 35, 42, .12);
}

@media (max-width: 430px) {
    .home-hero__title {
        font-size: 2.0rem;
    }

    .home-hero__desc {
        line-height: 1.25;
    }

    .home-hero__desc p {
        margin-block-start: 10px;
        margin-block-end: 10px;
    }
}

@supports (-webkit-touch-callout: none) {
    .home-hero__title,
    .home-hero__desc {
        -webkit-text-size-adjust: none;
        text-size-adjust: none;

        font-synthesis: none;
        -webkit-font-smoothing: antialiased;
    }

    .home-hero__title,
    .home-hero__desc {
        text-rendering: optimizeSpeed;
    }
}

.home-hero__title {
    font-size: clamp(28px, 7.2vw, 56px);
    line-height: 1.05;
    letter-spacing: 0;
    word-break: normal;
    overflow-wrap: anywhere;
    -webkit-hyphens: auto;
    hyphens: auto;
}

@media (max-width: 700px) {
    .home-hero__title {
        font-size: clamp(26px, 8vw, 40px);
    }
}

.home-hero__title strong,
.home-hero__desc strong {
    font-weight: 700;
}

.webformModalContainer{
  text-align: left;
}
