/* LP EN page base */
.lp-en-page {
    padding: 16px 0 48px;
    color: #111111;

    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;;
}

.lp-en-shell {
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: 0 40px;
}

.lp-en-section {
    margin-top: 28px;
}

.lp-en-section__title {
    margin: 0 0 24px;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    color: #111111;
}

/* LP EN hero block */
.lp-en-hero__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    overflow: hidden;
    min-height: 520px;
    padding: 48px 40px 40px;
    border-radius: 34px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 26%, rgba(255, 255, 255, 0.68) 48%, rgba(255, 255, 255, 0.15) 100%),
        url('/img/heroes/hero1.png') center / cover no-repeat;
    box-shadow: 0 24px 70px rgba(23, 29, 43, 0.08);
}

.lp-en-hero__content {
    max-width: 650px;
}

.lp-en-hero__title {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    color: #111111;
}

.lp-en-hero__text {
    font-size: 16px;
    line-height: 1.2;
    color: #202020;
}

.lp-en-hero__text p {
    margin: 0 0 10px;
}

.lp-en-hero__stats {
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: min(100%, 1100px);
    padding: 22px 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(17, 23, 37, 0.08);
}

.lp-en-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.lp-en-stat__icon {
    flex: 0 0 54px;
    color: var(--accent-red, #d30e17);
}

.lp-en-stat__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lp-en-stat__value {
    font-size: 32px;
    line-height: 1;
    font-weight: 600;
    color: var(--accent-red, #d30e17);
}

.lp-en-stat__label {
    font-size: 12px;
    line-height: 1.1;
    color: #444444;
}

/* LP EN services block */
.lp-en-services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(180px, 1fr));
    gap: 16px;
}

.lp-en-services__item {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 180px;
    border-radius: 22px;
    background: #f2f2f2;
    box-shadow: 0 18px 38px rgba(17, 23, 37, 0.06);
}

.lp-en-services__image,
.lp-en-services__overlay {
    position: absolute;
    inset: 0;
}

.lp-en-services__image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform .3s ease;
}

.lp-en-services__overlay {
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.1) 0%, rgba(14, 14, 14, 0.58) 100%);
}

.lp-en-services__title,
.lp-en-services__arrow {
    position: absolute;
    z-index: 1;
}

.lp-en-services__title {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 600;
    color: #ffffff;
}

.lp-en-services__arrow {
    opacity: 0;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-red, #d30e17);
    color: #ffffff;
    transition: opacity 0.3s ease-in-out;
}

.lp-en-services__item:hover .lp-en-services__arrow {
    opacity: 1;
}

.lp-en-services__arrow svg {
    width: 20px;
    height: 20px;
    display: block;
}

.lp-en-services__item:hover .lp-en-services__image {
    transform: scale(1.03);
}

.lp-en-services__item--lab {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.lp-en-services__item--ct {
    grid-column: 2;
    grid-row: 1;
}

.lp-en-services__item--mri {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.lp-en-services__item--uzi {
    grid-column: 4;
    grid-row: 1;
}

.lp-en-services__item--xray {
    grid-column: 1;
    grid-row: 3;
}

.lp-en-services__item--mammography {
    grid-column: 2;
    grid-row: 2 / span 2;
}

.lp-en-services__item--programs {
    grid-column: 3;
    grid-row: 3;
}

.lp-en-services__item--covid {
    grid-column: 4;
    grid-row: 2 / span 2;
}

/* LP EN video block */
.lp-en-video__frame {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 20px 44px rgba(17, 23, 37, 0.08);
}

.lp-en-video__frame iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 360px;
    border: 0;
}

/* LP EN FAQ block */
.lp-en-faq__card {
    overflow: hidden;
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 22px 52px rgba(17, 23, 37, 0.08);
}

.lp-en-faq__item {
    border-bottom: 1px solid #e2e4ea;
}

.lp-en-faq__item:last-child {
    border-bottom: 0;
}

.lp-en-faq__summary {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 60px;
    padding: 20px 34px;
    cursor: pointer;
}

.lp-en-faq__summary::-webkit-details-marker {
    display: none;
}

.lp-en-faq__question {
    font-size: 16px;
    line-height: 1.1;
    font-weight: 400;
    color: #111111;
}

.lp-en-faq__icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: var(--accent-red, #d30e17);
    transition: transform .2s ease;
}

.lp-en-faq__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lp-en-faq__item[open] .lp-en-faq__icon {
    transform: rotate(90deg);
}

.lp-en-faq__answer {
    padding: 0 34px 28px;
}

.lp-en-faq__answer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    color: #444444;
}

/* LP EN location block */
.lp-en-location__card {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(340px, 420px) minmax(0, 1fr);
    min-height: 427px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 24px 56px rgba(17, 23, 37, 0.08);
}

.lp-en-location__intro {
    position: relative;
    z-index: 1;
    padding: 28px 28px 36px;
    background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 68%, rgba(255,255,255,0) 100%);
}

.lp-en-location__select-wrap {
    position: relative;
    display: inline-flex;
    width: min(100%, 280px);
    margin-bottom: 34px;
}

.lp-en-location__select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 12px;
    height: 12px;
    margin-top: -8px;
    border-right: 2px solid #111111;
    border-bottom: 2px solid #111111;
    transform: rotate(45deg);
    pointer-events: none;
}

.lp-en-location__select {
    width: 100%;
    min-height: 56px;
    padding: 0 44px 0 20px;
    border: 0;
    border-radius: 999px;
    background: #f0f0f2;
    color: #111111;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    appearance: none;
}

.lp-en-location__headline {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.lp-en-location__pin {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    margin-top: 4px;
    color: var(--accent-red, #d30e17);
}

.lp-en-location__pin svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lp-en-location__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 600;
    color: #111111;
}

.lp-en-location__meta {
    margin-top: 34px;
    font-size: 16px;
    line-height: 1.45;
    color: #1d1d1d;
}

.lp-en-location__label {
    margin-bottom: 8px;
    font-weight: 600;
}

.lp-en-location__email {
    margin-top: 50px;
    font-size: 20px;
    line-height: 1.4;
    color: #111111;
}

.lp-en-location__map {
    min-width: 0;
}

.lp-en-location__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 427px;
    border: 0;
}

/* LP EN responsive */
@media (max-width: 1399px) {
    .lp-en-shell {
        padding: 0 28px;
    }

    .lp-en-hero__body {
        min-height: 500px;
        padding: 40px 30px 34px;
    }

    .lp-en-hero__content {
        max-width: 560px;
    }

    .lp-en-hero__text {
        font-size: 18px;
    }

    .lp-en-services__title {
        font-size: 22px;
    }

    .lp-en-faq__question {
        font-size: 22px;
    }

    .lp-en-faq__answer p,
    .lp-en-location__meta,
    .lp-en-location__email {
        font-size: 18px;
    }
}

@media (max-width: 1199px) {
    .lp-en-hero__body {
        min-height: auto;
        gap: 28px;
        padding-bottom: 32px;
    }

    .lp-en-hero__stats {
        margin-top: 0;
    }

    .lp-en-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 18px;
    }

    .lp-en-services__item,
    .lp-en-services__item--lab,
    .lp-en-services__item--ct,
    .lp-en-services__item--mri,
    .lp-en-services__item--uzi,
    .lp-en-services__item--xray,
    .lp-en-services__item--mammography,
    .lp-en-services__item--programs,
    .lp-en-services__item--covid {
        grid-column: auto;
        grid-row: auto;
        min-height: 260px;
    }

    .lp-en-location__card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .lp-en-location__intro {
        background: #ffffff;
    }

    .lp-en-location__map iframe {
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    .lp-en-page {
        padding: 8px 0 28px;
    }

    .lp-en-shell {
        padding: 0 16px;
    }

    .lp-en-section {
        margin-top: 22px;
    }

    .lp-en-section__title {
        margin-bottom: 16px;
        font-size: 22px;
        letter-spacing: 0;
    }

    .lp-en-hero__body {
        min-height: 0;
        padding: 22px 18px;
        border-radius: 18px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.90) 45%, rgba(255, 255, 255, 0.82) 100%),
            url('/images/bg_lp.jpg') center / cover no-repeat;
        box-shadow: 0 16px 34px rgba(17, 23, 37, 0.08);
    }

    .lp-en-hero__title {
        margin-bottom: 12px;
        font-size: 22px;
        letter-spacing: 0;
    }

    .lp-en-hero__text {
        font-size: 16px;
        line-height: 1.18;
    }

    .lp-en-hero__text p {
        margin-bottom: 4px;
    }

    .lp-en-hero__stats {
        display: none;
    }

    .lp-en-services__grid {
        gap: 10px;
    }

    .lp-en-services__item,
    .lp-en-services__item--lab,
    .lp-en-services__item--ct,
    .lp-en-services__item--mri,
    .lp-en-services__item--uzi,
    .lp-en-services__item--xray,
    .lp-en-services__item--mammography,
    .lp-en-services__item--programs,
    .lp-en-services__item--covid {
        min-height: 148px;
        border-radius: 16px;
    }

    .lp-en-services__title {
        left: 12px;
        right: 12px;
        bottom: 12px;
        font-size: 15px;
    }

    .lp-en-services__arrow {
        right: 12px;
        bottom: 12px;
        width: 38px;
        height: 38px;
    }

    .lp-en-services__arrow svg {
        width: 16px;
        height: 16px;
    }

    .lp-en-video__frame {
        border-radius: 18px;
    }

    .lp-en-video__frame iframe {
        min-height: 220px;
    }

    .lp-en-faq__card {
        border-radius: 24px;
    }

    .lp-en-faq__summary {
        min-height: 78px;
        padding: 20px 18px;
        gap: 12px;
    }

    .lp-en-faq__question {
        font-size: 16px;
        line-height: 1.25;
    }

    .lp-en-faq__icon {
        flex-basis: 18px;
        width: 18px;
        height: 18px;
    }

    .lp-en-faq__answer {
        padding: 0 18px 20px;
    }

    .lp-en-faq__answer p {
        font-size: 14px;
    }

    .lp-en-location__card {
        border-radius: 24px;
    }

    .lp-en-location__intro {
        padding: 18px 18px 0;
    }

    .lp-en-location__select-wrap {
        width: 100%;
        margin-bottom: 24px;
    }

    .lp-en-location__select {
        min-height: 50px;
        font-size: 14px;
    }

    .lp-en-location__title {
        font-size: 18px;
    }

    .lp-en-location__meta,
    .lp-en-location__email {
        font-size: 14px;
    }

    .lp-en-location__meta {
        margin-top: 18px;
    }

    .lp-en-location__email {
        margin-top: 24px;
        padding-bottom: 24px;
    }

    .lp-en-location__map iframe {
        min-height: 280px;
    }
}
