:root {
    --hz-bg: #fffdf9;
    --hz-surface: #ffffff;
    --hz-surface-soft: #f7f8fb;
    --hz-ink: #071c46;
    --hz-muted: #5d6880;
    --hz-line: #e4e7ed;
    --hz-blue: #1262ff;
    --hz-blue-deep: #0747d8;
    --hz-blue-soft: #eaf2ff;
    --hz-green: #46b83f;
    --hz-orange: #ff8515;
    --hz-shadow: 0 24px 70px rgba(31, 41, 65, .12);
    --hz-shadow-soft: 0 14px 35px rgba(31, 41, 65, .09);
    --hz-radius-xl: 34px;
    --hz-radius-lg: 24px;
    --hz-radius-md: 16px;
    --hz-shell: 1240px;
}

body.hz-atlas[data-hz-theme="dark"] {
    --hz-bg: #081225;
    --hz-surface: #111d34;
    --hz-surface-soft: #17243d;
    --hz-ink: #f6f8ff;
    --hz-muted: #aab4c8;
    --hz-line: #293650;
    --hz-blue-soft: #132b55;
    --hz-shadow: 0 24px 70px rgba(0, 0, 0, .38);
    --hz-shadow-soft: 0 14px 35px rgba(0, 0, 0, .28);
}

html {
    scroll-behavior: smooth;
}

body.hz-atlas {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--hz-ink);
    background: var(--hz-bg);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    transition: color .25s ease, background-color .25s ease;
}

body.hz-atlas.hz-rtl {
    font-family: "Tajawal", Tahoma, Arial, sans-serif;
}

.hz-atlas *,
.hz-atlas *::before,
.hz-atlas *::after {
    box-sizing: border-box;
}

.hz-atlas img {
    max-width: 100%;
    height: auto;
}

.hz-atlas a {
    color: inherit;
    text-decoration: none;
}

.hz-atlas button,
.hz-atlas input,
.hz-atlas select {
    font: inherit;
}

.hz-shell {
    width: min(calc(100% - 48px), var(--hz-shell));
    margin-inline: auto;
}

.hz-skip-link {
    position: fixed;
    inset-block-start: 10px;
    inset-inline-start: 10px;
    z-index: 10000;
    padding: 10px 16px;
    color: #fff;
    background: var(--hz-blue);
    border-radius: 10px;
    transform: translateY(-150%);
}

.hz-skip-link:focus {
    transform: translateY(0);
}

.hz-header {
    position: sticky;
    inset-block-start: 0;
    z-index: 1000;
    min-height: 82px;
    background: color-mix(in srgb, var(--hz-bg) 92%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--hz-line) 72%, transparent);
    backdrop-filter: blur(18px);
}

.hz-header__inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(18px, 3vw, 48px);
    direction: rtl;
}

.hz-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.hz-brand img,
.hz-footer__brand img {
    display: block;
    width: 118px;
    height: auto;
}

body.hz-atlas[data-hz-theme="dark"] .hz-brand img,
body.hz-atlas[data-hz-theme="dark"] .hz-footer__brand img {
    filter: invert(1) saturate(0) brightness(1.45);
}

.hz-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(16px, 2.1vw, 31px);
    white-space: nowrap;
    direction: rtl;
}

.hz-ltr .hz-nav {
    direction: ltr;
}

.hz-nav a {
    position: relative;
    color: var(--hz-ink);
    font-size: 14px;
    font-weight: 700;
}

.hz-nav a::after {
    content: "";
    position: absolute;
    inset-inline: 50%;
    inset-block-end: -8px;
    height: 2px;
    background: var(--hz-blue);
    transition: inset-inline .2s ease;
}

.hz-nav a:hover::after,
.hz-nav a:focus-visible::after {
    inset-inline: 0;
}

.hz-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    direction: rtl;
}

.hz-language,
.hz-currency {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--hz-muted);
    font-size: 12px;
    font-weight: 700;
    direction: ltr;
}

.hz-language a {
    opacity: .68;
}

.hz-language a.is-active,
.hz-language a:hover {
    color: var(--hz-ink);
    opacity: 1;
}

.hz-currency {
    min-width: 46px;
    justify-content: center;
}

.hz-theme-toggle {
    position: relative;
    width: 58px;
    height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    color: var(--hz-muted);
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(22, 30, 48, .08);
}

.hz-theme-toggle .fa-moon {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #202a3a;
    border-radius: 50%;
}

body.hz-atlas[data-hz-theme="dark"] .hz-theme-toggle .fa-sun {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    color: #18223a;
    background: #ffcd69;
    border-radius: 50%;
}

body.hz-atlas[data-hz-theme="dark"] .hz-theme-toggle .fa-moon {
    width: auto;
    height: auto;
    color: var(--hz-muted);
    background: transparent;
}

.hz-client-button {
    min-height: 42px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff !important;
    background: var(--hz-blue);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 9px 22px rgba(18, 98, 255, .24);
    transition: transform .2s ease, background-color .2s ease;
}

.hz-client-button:hover,
.hz-client-button:focus-visible {
    color: #fff;
    background: var(--hz-blue-deep);
    transform: translateY(-2px);
}

.hz-menu-toggle {
    width: 42px;
    height: 42px;
    padding: 9px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 12px;
}

.hz-menu-toggle > span:not(.sr-only) {
    width: 100%;
    height: 2px;
    background: var(--hz-ink);
    border-radius: 99px;
}

.hz-main--home {
    padding: 0 !important;
}

.hz-home {
    position: relative;
    isolation: isolate;
    background: var(--hz-bg);
}

.hz-hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hz-hero__grid {
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(28px, 5vw, 76px);
    direction: rtl;
}

.hz-ltr .hz-hero__grid {
    direction: rtl;
}

.hz-hero__copy {
    position: relative;
    z-index: 2;
    direction: rtl;
    text-align: right;
}

.hz-ltr .hz-hero__copy {
    direction: ltr;
    text-align: left;
}

.hz-eyebrow,
.hz-section-heading > p {
    margin: 0 0 16px;
    color: var(--hz-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
}

.hz-hero h1 {
    margin: 0;
    max-width: 670px;
    color: var(--hz-ink);
    font-size: clamp(48px, 5.4vw, 76px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.12;
}

.hz-rtl .hz-hero h1 {
    letter-spacing: -.025em;
}

.hz-hero__lead {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--hz-muted);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.8;
}

.hz-hero__actions {
    margin-top: 33px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hz-button {
    min-height: 52px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.hz-button:hover,
.hz-button:focus-visible {
    transform: translateY(-3px);
}

.hz-button--primary {
    color: #fff !important;
    background: var(--hz-blue);
    box-shadow: 0 14px 30px rgba(18, 98, 255, .23);
}

.hz-button--primary:hover {
    background: var(--hz-blue-deep);
}

.hz-button--outline {
    color: var(--hz-ink);
    background: transparent;
    border-color: var(--hz-ink);
}

.hz-scroll-cue {
    margin-top: 56px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--hz-muted);
    font-size: 13px;
    font-weight: 600;
}

.hz-scroll-cue i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid #a8b1c1;
    border-radius: 50%;
}

.hz-hero__visual {
    position: relative;
    min-height: 550px;
    display: grid;
    place-items: center;
    direction: ltr;
}

.hz-hero__visual img {
    width: min(100%, 670px);
    filter: saturate(1.08) drop-shadow(0 26px 28px rgba(58, 66, 84, .13));
    animation: hz-float 5.5s ease-in-out infinite;
    will-change: transform;
}

.hz-slide-count {
    position: absolute;
    inset-block-start: 38px;
    inset-inline-start: 0;
    min-width: 74px;
    padding: 12px 14px;
    display: inline-flex;
    justify-content: center;
    gap: 3px;
    color: var(--hz-muted);
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 14px;
    font-size: 12px;
    box-shadow: var(--hz-shadow-soft);
}

.hz-slide-count strong {
    color: var(--hz-ink);
}

.hz-domain {
    position: relative;
    z-index: 4;
    margin-top: -18px;
}

#hz-domain-search,
#hz-services,
#hz-plan {
    scroll-margin-top: 100px;
}

.hz-domain__panel {
    min-height: 178px;
    padding: 34px 40px;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    direction: rtl;
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: var(--hz-radius-xl);
    box-shadow: var(--hz-shadow);
}

.hz-domain__icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--hz-blue);
    border-radius: 50%;
    font-size: 32px;
    box-shadow: 0 15px 26px rgba(18, 98, 255, .28);
}

.hz-domain__body {
    min-width: 0;
}

.hz-domain h2 {
    margin: 0 0 14px;
    color: var(--hz-ink);
    font-size: clamp(23px, 2vw, 30px);
    font-weight: 800;
}

.hz-domain__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px 126px;
    direction: rtl;
}

.hz-ltr .hz-domain__form {
    direction: ltr;
}

.hz-domain__form input,
.hz-domain__form select,
.hz-domain__form button {
    min-height: 54px;
    border: 1px solid var(--hz-line);
}

.hz-domain__form input {
    min-width: 0;
    padding: 0 20px;
    color: var(--hz-ink);
    background: var(--hz-surface);
    border-radius: 0 12px 12px 0;
    outline: none;
}

.hz-ltr .hz-domain__form input {
    border-radius: 12px 0 0 12px;
}

.hz-domain__form input:focus {
    position: relative;
    z-index: 1;
    border-color: var(--hz-blue);
    box-shadow: 0 0 0 3px rgba(18, 98, 255, .13);
}

.hz-domain__form input::placeholder {
    color: #a5adba;
}

.hz-domain__form select {
    padding: 0 14px;
    color: var(--hz-ink);
    background: var(--hz-surface);
    border-inline-start: 0;
}

.hz-domain__form button {
    color: #fff;
    background: var(--hz-blue);
    border-color: var(--hz-blue);
    border-radius: 12px 0 0 12px;
    font-weight: 800;
    cursor: pointer;
}

.hz-ltr .hz-domain__form button {
    border-radius: 0 12px 12px 0;
}

.hz-tld-row {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    color: var(--hz-muted);
    font-size: 12px;
    direction: ltr;
}

.hz-tld-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hz-dot {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
}

.hz-dot--blue { background: var(--hz-blue); }
.hz-dot--green { background: var(--hz-green); }
.hz-dot--orange { background: var(--hz-orange); }
.hz-dot--navy { background: #758097; }

.hz-paths {
    padding: 118px 0 86px;
}

.hz-section-heading {
    margin: 0 auto 58px;
    max-width: 680px;
    text-align: center;
}

.hz-section-heading h2 {
    margin: 0;
    color: var(--hz-ink);
    font-size: clamp(34px, 3.4vw, 50px);
    font-weight: 800;
    letter-spacing: -.035em;
}

.hz-section-heading span {
    margin-top: 9px;
    display: block;
    color: var(--hz-muted);
    font-size: 18px;
}

.hz-paths__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(30px, 5vw, 76px);
}

.hz-path {
    position: relative;
    min-width: 0;
    padding: 0 12px 10px;
    text-align: center;
}

.hz-path__art {
    height: 250px;
    display: grid;
    place-items: end center;
}

.hz-path__art img {
    width: 245px;
    max-height: 245px;
    object-fit: contain;
    filter: saturate(1.18) drop-shadow(0 20px 22px rgba(44, 53, 72, .1));
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.hz-path:hover .hz-path__art img {
    transform: translateY(-12px) rotate(-1deg);
}

.hz-path__number {
    position: absolute;
    inset-block-start: 205px;
    inset-inline-start: calc(50% - 108px);
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(25, 35, 55, .18);
}

.hz-path--blue .hz-path__number { background: var(--hz-blue); }
.hz-path--green .hz-path__number { background: var(--hz-green); }
.hz-path--orange .hz-path__number { background: var(--hz-orange); }

.hz-path h3 {
    margin: 21px 0 8px;
    color: var(--hz-ink);
    font-size: 22px;
    font-weight: 800;
}

.hz-path p {
    min-height: 54px;
    margin: 0 auto 16px;
    max-width: 300px;
    color: var(--hz-muted);
    font-size: 15px;
}

.hz-path > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
}

.hz-path--blue > a { color: var(--hz-blue); }
.hz-path--green > a { color: var(--hz-green); }
.hz-path--orange > a { color: var(--hz-orange); }

.hz-plan-section {
    padding: 34px 0 50px;
}

.hz-plan {
    min-height: 590px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    direction: rtl;
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: var(--hz-radius-xl);
    box-shadow: var(--hz-shadow);
}

.hz-plan__intro,
.hz-plan__offer {
    position: relative;
    padding: clamp(42px, 5vw, 72px);
}

.hz-plan__intro {
    overflow: hidden;
    background: var(--hz-blue-soft);
}

.hz-plan__intro h2 {
    margin: 13px 0 8px;
    color: var(--hz-ink);
    font-size: clamp(34px, 3.3vw, 50px);
    font-weight: 800;
    letter-spacing: -.04em;
    direction: ltr;
    text-align: right;
}

.hz-ltr .hz-plan__intro h2 {
    text-align: left;
}

.hz-plan__intro p {
    max-width: 420px;
    margin: 0;
    color: var(--hz-muted);
}

.hz-plan__tag {
    padding: 7px 11px;
    display: inline-flex;
    color: var(--hz-blue);
    background: color-mix(in srgb, var(--hz-blue-soft) 60%, var(--hz-surface));
    border: 1px solid color-mix(in srgb, var(--hz-blue) 18%, transparent);
    border-radius: 9px;
    font-size: 11px;
    font-weight: 800;
}

.hz-plan__intro img {
    position: absolute;
    inset-inline: 20px;
    inset-block-end: -22px;
    margin: auto;
    width: min(78%, 460px);
    filter: drop-shadow(0 18px 25px rgba(31, 44, 74, .13));
}

.hz-plan__offer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--hz-surface);
    direction: rtl;
}

.hz-ltr .hz-plan__offer {
    direction: ltr;
}

.hz-plan__from {
    margin: 0;
    color: var(--hz-muted);
    font-size: 16px;
    font-weight: 600;
}

.hz-plan__price {
    margin: 0 0 28px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    direction: ltr;
    justify-content: flex-end;
}

.hz-ltr .hz-plan__price {
    justify-content: flex-start;
}

.hz-plan__price strong {
    color: var(--hz-blue);
    font-size: clamp(64px, 7vw, 104px);
    font-weight: 800;
    letter-spacing: -.065em;
    line-height: .95;
}

.hz-plan__price span {
    padding-bottom: 9px;
    color: var(--hz-muted);
    font-size: 14px;
    line-height: 1.4;
}

.hz-plan__features {
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 11px;
    list-style: none;
    color: var(--hz-ink);
    font-size: 15px;
}

.hz-plan__features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hz-plan__features i {
    color: var(--hz-blue);
}

.hz-plan__cta {
    width: 100%;
}

.hz-plan__details {
    margin-top: 14px;
    color: var(--hz-blue) !important;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
}

.hz-trust {
    padding: 28px 0 92px;
}

.hz-trust__grid {
    min-height: 126px;
    padding: 26px 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: var(--hz-radius-lg);
    box-shadow: var(--hz-shadow-soft);
}

.hz-trust__item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hz-trust__item + .hz-trust__item {
    border-inline-start: 1px solid var(--hz-line);
    padding-inline-start: 24px;
}

.hz-trust__item > i {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
}

.hz-trust__item--blue > i { background: var(--hz-blue); }
.hz-trust__item--green > i { background: var(--hz-green); }
.hz-trust__item--orange > i { background: var(--hz-orange); }

.hz-trust__item strong,
.hz-trust__item span {
    display: block;
}

.hz-trust__item strong {
    color: var(--hz-ink);
    font-size: 15px;
    font-weight: 800;
}

.hz-trust__item span {
    margin-top: 2px;
    color: var(--hz-muted);
    font-size: 12px;
}

.hz-footer {
    padding: 70px 0 22px;
    color: #c7d0e1;
    background: #07152d;
}

.hz-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 48px;
}

.hz-footer__brand img {
    filter: invert(1) saturate(0) brightness(2);
}

.hz-footer__brand p {
    max-width: 300px;
    margin: 18px 0 0;
    color: #95a3bc;
}

.hz-footer h2 {
    margin: 3px 0 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.hz-footer__grid > div:not(.hz-footer__brand) a {
    margin-bottom: 10px;
    display: block;
    color: #aeb9cd;
    font-size: 14px;
}

.hz-footer__grid a:hover {
    color: #fff;
}

.hz-footer__bottom {
    margin-top: 50px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #22304a;
    color: #8190a9;
    font-size: 12px;
}

.hz-page-hero {
    padding: 68px 0 58px;
    background: var(--hz-blue-soft);
}

.hz-page-hero p {
    margin: 0 0 8px;
    color: var(--hz-blue);
    font-weight: 800;
}

.hz-page-hero h1 {
    margin: 0;
    color: var(--hz-ink);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
}

.hz-main--inner {
    min-height: 50vh;
    padding: 60px 0 90px;
    color: var(--hz-ink);
    background: var(--hz-bg);
}

.hz-client-content {
    padding: 26px;
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: var(--hz-radius-lg);
    box-shadow: var(--hz-shadow-soft);
}

.hz-client-content--fluid {
    padding: 0;
    border: 0;
    box-shadow: none;
}

[data-hz-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1);
}

[data-hz-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes hz-float {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1.14); }
    50% { transform: translate3d(0, -14px, 0) scale(1.14); }
}

@media (max-width: 1120px) {
    .hz-header__inner {
        gap: 18px;
    }

    .hz-nav {
        gap: 15px;
    }

    .hz-hero {
        min-height: 560px;
    }

    .hz-hero__grid {
        min-height: 560px;
    }

    .hz-hero__visual {
        min-height: 480px;
    }
}

@media (max-width: 1000px) and (min-width: 761px) {
    .hz-header__inner {
        gap: 12px;
    }

    .hz-brand img {
        width: 100px;
    }

    .hz-nav {
        gap: 10px;
    }

    .hz-nav a {
        font-size: 12px;
    }

    .hz-header__actions {
        gap: 6px;
    }

    .hz-language,
    .hz-currency {
        font-size: 10px;
    }

    .hz-currency {
        min-width: 36px;
    }

    .hz-theme-toggle {
        width: 52px;
    }

    .hz-client-button {
        min-height: 38px;
        padding-inline: 12px;
        font-size: 12px;
    }

    .hz-hero h1 {
        font-size: 43px;
    }

    .hz-hero__lead {
        font-size: 16px;
    }
}

@media (max-width: 760px) {
    .hz-shell {
        width: min(calc(100% - 36px), var(--hz-shell));
    }

    .hz-header__inner {
        grid-template-columns: auto 1fr;
    }

    .hz-language,
    .hz-currency {
        display: none;
    }

    .hz-nav {
        position: absolute;
        inset-block-start: 73px;
        inset-inline: 18px;
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        text-align: start;
        background: var(--hz-surface);
        border: 1px solid var(--hz-line);
        border-radius: 18px;
        box-shadow: var(--hz-shadow);
    }

    .hz-nav.is-open {
        display: flex;
    }

    .hz-nav a {
        padding: 12px 8px;
    }

    .hz-nav a::after {
        display: none;
    }

    .hz-header__actions {
        justify-self: end;
    }

    .hz-menu-toggle {
        display: flex;
    }

    .hz-hero,
    .hz-hero__grid {
        min-height: auto;
    }

    .hz-hero {
        padding: 70px 0 40px;
    }

    .hz-hero__grid {
        grid-template-columns: 1fr;
    }

    .hz-hero__visual {
        min-height: 440px;
        grid-row: 2;
    }

    .hz-hero__copy {
        max-width: 700px;
    }

    .hz-scroll-cue {
        margin-top: 34px;
    }

    .hz-domain {
        margin-top: 20px;
    }

    .hz-domain__panel {
        grid-template-columns: 1fr;
    }

    .hz-domain__icon {
        display: none;
    }

    .hz-paths__grid {
        gap: 22px;
    }

    .hz-path__art {
        height: 210px;
    }

    .hz-path__art img {
        width: 205px;
    }

    .hz-path__number {
        inset-block-start: 168px;
        inset-inline-start: calc(50% - 92px);
    }

    .hz-plan {
        grid-template-columns: 1fr;
    }

    .hz-plan__intro {
        min-height: 540px;
    }

    .hz-plan__offer {
        min-height: 560px;
    }

    .hz-trust__grid {
        grid-template-columns: 1fr;
    }

    .hz-trust__item + .hz-trust__item {
        padding-inline-start: 0;
        padding-block-start: 20px;
        border-inline-start: 0;
        border-block-start: 1px solid var(--hz-line);
    }
}

@media (max-width: 720px) {
    .hz-shell {
        width: min(calc(100% - 28px), var(--hz-shell));
    }

    .hz-header,
    .hz-header__inner {
        min-height: 70px;
    }

    .hz-brand img {
        width: 94px;
    }

    .hz-client-button {
        width: 42px;
        min-width: 42px;
        height: 42px;
        min-height: 42px;
        padding: 0;
        justify-content: center;
    }

    .hz-client-button span {
        display: none;
    }

    .hz-theme-toggle {
        width: 54px;
        flex: 0 0 54px;
    }

    .hz-nav {
        inset-block-start: 64px;
        inset-inline: 14px;
    }

    .hz-hero {
        padding-top: 54px;
    }

    .hz-hero h1 {
        font-size: clamp(36px, 10.2vw, 44px);
        line-height: 1.18;
    }

    .hz-hero__lead {
        margin-top: 18px;
        font-size: 17px;
    }

    .hz-hero__actions {
        margin-top: 26px;
    }

    .hz-button {
        flex: 1 1 150px;
        padding-inline: 18px;
    }

    .hz-hero__visual {
        min-height: 330px;
    }

    .hz-hero__visual img {
        animation: none;
        transform: scale(1.02);
    }

    .hz-slide-count {
        inset-block-start: 4px;
    }

    .hz-domain__panel {
        min-height: 0;
        padding: 26px 20px;
        border-radius: 24px;
    }

    .hz-domain__form {
        grid-template-columns: 1fr 92px;
    }

    .hz-domain__form input {
        grid-column: 1 / -1;
        border-radius: 12px 12px 0 0;
    }

    .hz-domain__form select {
        border-inline-start: 1px solid var(--hz-line);
        border-block-start: 0;
        border-radius: 0 0 12px 0;
    }

    .hz-domain__form button,
    .hz-ltr .hz-domain__form button {
        border-block-start: 0;
        border-radius: 0 0 0 12px;
    }

    .hz-tld-row {
        gap: 14px;
        justify-content: center;
    }

    .hz-paths {
        padding: 88px 0 56px;
    }

    .hz-section-heading {
        margin-bottom: 34px;
    }

    .hz-section-heading h2 {
        font-size: 34px;
    }

    .hz-section-heading span {
        font-size: 16px;
    }

    .hz-paths__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hz-path p {
        min-height: 0;
    }

    .hz-plan {
        border-radius: 24px;
    }

    .hz-plan__intro,
    .hz-plan__offer {
        padding: 36px 24px;
    }

    .hz-plan__intro {
        min-height: 480px;
    }

    .hz-plan__offer {
        min-height: 520px;
    }

    .hz-plan__price strong {
        font-size: 68px;
    }

    .hz-trust__grid {
        padding: 24px 20px;
    }

    .hz-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }

    .hz-footer__brand {
        grid-column: 1 / -1;
    }

    .hz-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 460px) {
    .hz-hero__actions {
        flex-direction: column;
    }

    .hz-button {
        flex-basis: auto;
        width: 100%;
    }

    .hz-footer__grid {
        grid-template-columns: 1fr;
    }

    .hz-footer__brand {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hz-atlas *, .hz-atlas *::before, .hz-atlas *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
    [data-hz-reveal] {
        opacity: 1;
        transform: none;
    }
}
