/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 84px);
    padding: 64px 0 34px;
    /*background: linear-gradient(180deg, #f8f0e6 0%, #eadccb 100%);*/
    background:
            radial-gradient(circle at 70% 40%, rgba(255,255,255,0.35), transparent 60%),
            linear-gradient(180deg, #f8f0e6 0%, #eadccb 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("../assets/pattern.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 182px);
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    align-items: center;
    gap: 35px;
    min-height: calc(100vh - 235px);
}

.hero-content {
    max-width: 610px;
    justify-self: center;
    text-align: right;
}

.hero-badge {
    display: inline-flex;
    padding: 8px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(239, 223, 203, 0.76);
    border: 1px solid rgba(216, 200, 180, 0.82);
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-dark);
}

.hero h1 {
    font-size: clamp(58px, 5.8vw, 86px);
    line-height: 1.05;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    max-width: 620px;
    margin: 0 0 34px auto;
    font-size: 23px;
    line-height: 1.55;
    color: var(--primary-dark);
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.btn-primary,
.btn-secondary {
    min-height: 56px;
    padding: 0 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    border-radius: 12px;
    font-weight: 900;
    transition: 0.25s ease;
}

.btn-whatsapp-hover {
    flex-direction: row-reverse;
}

.btn-whatsapp-hover img {
    width: 16px;
    height: 16px;
    opacity: 0.9;
    object-fit: contain;
    transform: translateY(0px);
    filter: brightness(0) invert(1);
}

.btn-primary {
    background: linear-gradient(180deg, #376da3, #244f80);
    color: var(--white);
    box-shadow: 0 14px 26px rgba(47, 94, 146, 0.24);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.72);
    border: 2px solid rgba(47, 94, 146, 0.35);
    color: var(--primary-dark);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-whatsapp-hover {
    background: linear-gradient(180deg, #214a78 0%, #14385f 100%);
    border: 1px solid rgba(31, 53, 82, 0.18);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(31, 53, 82, 0.16);
}

.btn-whatsapp-hover:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #183d66 0%, #0f2f52 100%);
    box-shadow: 0 18px 34px rgba(31, 53, 82, 0.26);
}

.hero-points {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 22px;
    font-size: 15px;
    font-weight: 800;
}

.hero-points span {
    position: relative;
    white-space: nowrap;
    padding-right: 22px;
}

.hero-points span::before {
    content: "";
    position: absolute;
    right: 0;
    top: 7px;
    width: 11px;
    height: 7px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(-45deg);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: none;
}

.hero-image img {
    width: clamp(640px, 55vw, 960px);
    max-width: none;
    /*filter: drop-shadow(0 38px 34px rgba(31, 53, 82, 0.16)) drop-shadow(0 8px 8px rgba(31, 53, 82, 0.07));*/
    filter:
            drop-shadow(0 50px 40px rgba(31, 53, 82, 0.18))
            drop-shadow(0 12px 10px rgba(31, 53, 82, 0.08));
}

.hero-image::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2%;
    width: clamp(320px, 28vw, 500px);
    height: 52px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(
            ellipse at center,
            rgba(31, 53, 82, 0.23),
            rgba(31, 53, 82, 0.1) 40%,
            transparent 72%
    );
    filter: blur(12px);
    z-index: -1;
}

/* SECTION TITLE */

.section-title {
    text-align: center;
    margin-bottom: 54px;
}

.section-title h2 {
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 900;
    color: var(--primary-dark);
}

.line {
    width: 70px;
    height: 3px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), #dfc4a2);
}

/* BENEFITS */

.benefits {
    padding: 92px 0;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.benefit-card {
    min-height: 250px;
    background: var(--white);
    border-radius: 22px;
    padding: 34px 22px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(31, 53, 82, 0.05);

    /* вот это обновляем */
    transition: box-shadow 0.25s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-soft);
}

.benefit-card-link {
    display: block;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.benefit-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(31, 53, 82, 0.09);
}

.benefit-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--beige-soft);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.25s ease, transform 0.25s ease;
}

.benefit-card-link:hover .benefit-whatsapp {
    background: rgba(37, 211, 102, 0.18);
    transform: scale(1.04);
}

.benefit-icon svg {
    width: 42px;
    height: 42px;
}

.benefit-icon svg path,
.benefit-icon svg circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-whatsapp {
    background: rgba(37, 211, 102, 0.11);
}

.benefit-whatsapp svg {
    width: 44px;
    height: 44px;
}

.benefit-whatsapp .wa-phone-icon path {
    fill: none;
    stroke: var(--whatsapp);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--muted);
}

.benefit-card-whatsapp .benefit-icon,
.benefit-whatsapp {
    background: rgba(37, 211, 102, 0.11);
}

.benefit-card-whatsapp:hover .benefit-icon,
.benefit-card-link:hover .benefit-whatsapp {
    background: rgba(37, 211, 102, 0.18);
}

.benefit-card-whatsapp .benefit-icon img,
.benefit-whatsapp img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: none;
}

.benefit-arrow {
    display: none;
}

/* SERVICES */

.services {
    padding: 96px 0 104px;
    background: linear-gradient(180deg, #f8f0e6 0%, #eadccb 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/pattern.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    min-height: 330px;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    padding: 48px 34px 38px;
    border: 1px solid rgba(214, 194, 168, 0.9);
    box-shadow:
            0 8px 20px rgba(31, 53, 82, 0.04),
            0 18px 48px rgba(31, 53, 82, 0.06);
}

.service-card h3 {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 18px;
    color: var(--primary-dark);
}

.service-card h3::after {
    content: "";
    display: block;
    width: 38px;
    height: 3px;
    margin-top: 18px;
    border-radius: 999px;
    background: #d8b98f;
}

.service-card p {
    max-width: 240px;
    color: var(--text);
    opacity: 0.82;
    font-size: 17px;
    line-height: 1.65;
}

/* QUOTE */

.quote-section {
    padding: 55px 0 75px;
    background: #ffffff;
}

.quote-card {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(180deg, #082f5b 0%, #06274d 100%);
}

.quote-pattern {
    position: absolute;
    inset: 0;
    background-image: url("../assets/pattern.svg");
    background-size: 230px;
    opacity: 0.035;
}

.quote-content {
    position: relative;
    z-index: 1;
    padding: 22px 36px 16px;
}

.quote-title {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.quote-title h2 {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 7px;
    line-height: 1.05;
}

.quote-title p {
    font-size: 15px;
    opacity: 0.73;
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 14px;
}

.quote-field,
.quote-check {
    min-height: 56px;
    border-radius: 7px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: var(--primary-dark);
}

.field-icon {
    width: 24px;
    min-width: 24px;
    height: 24px;
    opacity: 0.8;
}

.quote-field strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
}

.quote-field input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    color: var(--primary-dark);
}

.quote-field input::placeholder {
    color: rgba(31, 53, 82, 0.45);
}

.quote-check {
    justify-content: flex-start;
    cursor: pointer;
}

.quote-check span {
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}

.quote-check input {
    appearance: none;
    width: 18px;
    height: 18px;

    border: 1.5px solid rgba(31,53,82,.5);
    border-radius: 5px;

    background: #fff;

    cursor: pointer;
    transition: .2s ease;
    margin-left: auto;
}

.quote-check input:checked {
    background: #244f80;
    border-color: #244f80;
    box-shadow: 0 2px 6px rgba(36,79,128,.18);

    background-image: url("../assets/check.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px;
}

.quote-divider {
    grid-column: span 2;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin-top: 2px;
}

.quote-move-title {
    grid-column: span 2;
    color: #fff;
    margin-top: 2px;
}

.quote-move-title h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 3px;
}

.quote-move-title p {
    font-size: 13px;
    opacity: 0.73;
}

.move-size {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.move-option {
    cursor: pointer;
}

.move-option input {
    display: none;
}

.move-option span {
    min-height: 72px;
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: center;
    column-gap: 12px;
    padding: 14px 16px;
    border-radius: 7px;
    background: #ffffff;
    color: var(--primary-dark);
    border: 1.5px solid rgba(31,53,82,0.18);
    transition: 0.2s ease;
}

.move-option i {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid rgba(31,53,82,0.55);
    position: relative;
}

.move-option input:checked + span i::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--primary);
}

.move-option strong {
    grid-column: 2;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 2px;
}

.move-option small {
    grid-column: 2;
    font-size: 12px;
    line-height: 1.35;
    opacity: 0.75;
}

.move-option input:checked + span {
    background: linear-gradient(180deg, #fff6ea 0%, #f6dec0 100%);
    border-color: #e0a84f;
}

.items-field {
    grid-column: span 2;
    display: none;
    border-radius: 7px;
    padding: 12px 16px;
    background: linear-gradient(180deg, #fff8ee 0%, #f7e1c2 100%);
}

.items-field.active {
    display: block;
}

.items-field strong {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
}

.items-field input {
    width: 100%;
    height: 36px;
    border-radius: 6px;
    border: 1px solid rgba(31,53,82,0.2);
    padding: 0 10px;
    font-size: 13px;
}

.quote-submit {
    grid-column: span 2;
    height: 50px;
    margin-top: 0;
    margin-bottom: 4px;
    border: none;
    border-radius: 7px;
    background: linear-gradient(180deg, #f8d8a6 0%, #efc17b 100%);
    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s ease;
}

.quote-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    background: linear-gradient(180deg, #f4cf94 0%, #e9b568 100%);
}

.quote-note {
    grid-column: span 2;
    height: 30px;
    margin-bottom: 4px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    background: transparent;
    border: none;

    color: rgba(255,255,255,0.73);
    font-size: 12px;
    font-weight: 500;
}

.quote-note::before {
    content: "";
    width: 20px;
    height: 20px;
    min-width: 20px;
    opacity: 0.75;
    background: url("../assets/camera.svg") center / contain no-repeat;
    transform: translateY(-2px);
}

.quote-field input.input-error {
    color: #d94b4b;
}

.quote-field input.input-error::placeholder {
    color: #c96a6a !important;
    opacity: 1;
}

.quote-field.error {
    border: 1px solid #c96a6a;
    box-shadow:
            0 0 0 1px rgba(201,106,106,.15),
            0 6px 14px rgba(201,106,106,.08);
}

.quote-field.error {
    box-shadow: 0 0 0 2px rgba(217, 75, 75, 0.35);
}

/* icons */

.field-icon {
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.quote-field .field-icon {
    width: 22px;
    min-width: 22px;
    height: 22px;
    opacity: 0.82;
}

.quote-form > label:nth-of-type(1) .field-icon,
.quote-form > label:nth-of-type(2) .field-icon {
    background-image: url("../assets/location.svg");
}

.quote-form > label:nth-of-type(3) .field-icon,
.quote-form > label:nth-of-type(4) .field-icon {
    background-image: url("../assets/floor.svg");
}

.quote-form > label:nth-of-type(5) .field-icon,
.quote-form > label:nth-of-type(6) .field-icon {
    background-image: url("../assets/elevator.svg");
}

.move-option span {
    grid-template-columns: 18px 46px 1fr;
}

.move-option i {
    grid-column: 1;
}

.move-option span::before {
    content: "";
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.move-option:nth-child(1) span::before {
    background-image: url("../assets/furniture.svg");
}

.move-option:nth-child(2) span::before {
    background-image: url("../assets/apartment.svg");
}

.move-option strong,
.move-option small {
    grid-column: 3;
}

.pac-container {
    z-index: 99999 !important;
    border-radius: 10px;
    margin-top: 8px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.18);
    border: 1px solid rgba(31,53,82,0.12);
    overflow: hidden;
    font-family: inherit;
}

.pac-item {
    padding: 10px 14px;
    font-size: 13px;
    cursor: pointer;
}

.pac-item:hover {
    background: #f7efe3;
}

.pac-icon {
    display: none;
}
/* REVIEWS */

.reviews {
    padding: 92px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.review-card {
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
    border-radius: 18px;
    padding: 30px 28px 28px;
    text-align: left;
    box-shadow:
            0 8px 22px rgba(31, 53, 82, 0.045),
            0 18px 42px rgba(31, 53, 82, 0.055);
}

.review-card::before {
    content: "";
    display: block;
    width: 24px;
    height: 19px;
    margin-bottom: 14px;
    background-image: url("../assets/quote.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.review-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-card p::after {
    margin-top: 14px;
}

.review-card strong {
    display: block;
    font-size: 15px;
    font-weight: 900;
    color: var(--primary-dark);
}

/* CONTACT */

.contact-section {
    padding: 20px 0 70px;
}

.contact-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 36px 48px;
    border-radius: 24px;

    background: linear-gradient(180deg, #fbf4ea 0%, #ead6bd 100%);

    border: 1px solid rgba(214, 194, 168, 0.75);
    box-shadow:
            0 12px 30px rgba(31, 53, 82, 0.055),
            0 28px 70px rgba(31, 53, 82, 0.08);
}

.contact-pattern {
    position: absolute;
    inset: 0;
    background-image: url("../assets/pattern.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.45;
    pointer-events: none;
}

.contact-content,
.contact-buttons {
    position: relative;
    z-index: 1;
}

.contact-content > span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #c69a63;
}

.contact-content h2 {
    max-width: 580px;
    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.contact-content p {
    max-width: 520px;
    font-size: 19px;
    line-height: 1.55;
    color: var(--primary-dark);
    opacity: 0.9;
}

.contact-points {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.contact-points span {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
}

.contact-points span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #d1a46c;
}

.contact-points span::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 7px;
    width: 7px;
    height: 4px;
    border-left: 2px solid #d1a46c;
    border-bottom: 2px solid #d1a46c;
    transform: rotate(-45deg);
}

.contact-buttons {
    display: flex;
    align-items: center;
    margin-top: 6px;
    gap: 14px;
}

.contact-button {
    min-width: 200px;
    min-height: 74px;
    padding: 12px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 14px;
    font-weight: 800;
    transition: 0.25s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
}

.contact-phone {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 26px rgba(31, 53, 82, 0.06);
    color: var(--primary-dark);
    border: 1px solid rgba(31, 53, 82, 0.08);
}

.contact-whatsapp {
    background: linear-gradient(180deg, #214a78 0%, #14385f 100%);
    color: #ffffff;
    border: 1px solid rgba(31, 53, 82, 0.18);
    box-shadow: 0 12px 26px rgba(31, 53, 82, 0.18);
}

.contact-whatsapp:hover {
    background: linear-gradient(180deg, #183d66 0%, #0f2f52 100%);
    box-shadow: 0 18px 34px rgba(31, 53, 82, 0.26);
}

.contact-button small {
    font-size: 13px;
    opacity: 0.8;
}

.contact-button strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 900;
}

.contact-button img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-phone strong {
    font-size: 21px;
}

/* FOOTER */

.footer {
    padding: 70px 0 24px;
    background:
            radial-gradient(circle at 20% 0%, rgba(255,255,255,0.05), transparent 60%),
            linear-gradient(180deg, #1c3654 0%, #142c45 100%);
    color: var(--footer-text);
}

.footer p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 52px;
}

.footer-logo {
    width: 154px;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 290px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    transition: 0.25s ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.25);
}

.footer-socials svg {
    width: 17px;
    height: 17px;
}

.footer-socials svg path,
.footer-socials svg rect,
.footer-socials svg circle {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer h4 {
    color: #f7f3ee;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 18px;
}

.footer a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s ease;
}

.footer a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-socials a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.footer-bottom {
    width: min(100% - 40px, var(--container));
    margin: 42px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    opacity: 0.76;
}

/* =========================
   DESKTOP LANGUAGE LAYOUTS
   applies only on desktop
========================= */

@media (min-width: 1101px) {
    body.landing-he .hero {
        padding: 52px 0 34px;
    }

    body.landing-he .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 42px;
        min-height: calc(100vh - 235px);
        direction: rtl;
    }

    body.landing-he .hero-content {
        max-width: 560px;
        justify-self: center;
        text-align: center;
    }

    body.landing-he .hero h1 {
        font-size: clamp(52px, 4.7vw, 72px);
        line-height: 1.08;
        letter-spacing: -0.4px;
    }

    body.landing-he .hero p {
        max-width: 520px;
        margin-inline: auto;
    }

    body.landing-he .hero-buttons,
    body.landing-he .hero-points {
        justify-content: center;
        flex-wrap: nowrap;
    }

    body.landing-he .hero-image {
        transform: translate(0, -28px);
    }

    body.landing-he .hero-image img {
        width: clamp(760px, 58vw, 980px);
    }

    body.landing-en .hero {
        padding: 52px 0 34px;
    }

    body.landing-en .hero-inner {
        grid-template-columns: 1.08fr 0.92fr;
        gap: 36px;
        min-height: calc(100vh - 235px);
        direction: ltr;
    }

    body.landing-en .hero-content {
        max-width: 610px;
        justify-self: center;
        text-align: left;
    }

    body.landing-en .hero h1 {
        font-size: clamp(56px, 5.4vw, 82px);
        line-height: 1.05;
        letter-spacing: -1px;
    }

    body.landing-en .hero p {
        max-width: 600px;
        margin: 0 0 34px 0;
    }

    body.landing-en .hero-buttons,
    body.landing-en .hero-points {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    body.landing-en .hero-points span {
        padding-right: 0;
        padding-left: 22px;
    }

    body.landing-en .hero-points span::before {
        right: auto;
        left: 0;
        transform: rotate(45deg);
    }

    body.landing-en .hero-image {
        transform: translate(-60px, -28px);
    }

    body.landing-en .hero-image img {
        width: clamp(700px, 52vw, 920px);
    }
}

/* GLOBAL VISUAL BALANCE */

body.landing-en .hero-inner {
    transform: translateX(-100px);
}

body.landing-he .hero-inner {
    transform: translateX(50px);
}

html[dir="rtl"] .hero-content {
    text-align: right;
    align-items: flex-end;
}