/* RED SHINE CLEANING THEME */
.bunker-hero {
    position: relative;
    min-height: calc(100svh - var(--header-height, 80px));
    min-height: calc(100dvh - var(--header-height, 80px));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #2b0f12;
    color: #ffffff;
}

.bunker-hero {
    position: relative;
    min-height: calc(100svh - var(--header-height, 80px));
    min-height: calc(100dvh - var(--header-height, 80px));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f5f7f8;
    color: #172126;
}

.bunker-hero .bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bunker-hero .image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    opacity: 1 !important;
    filter: none !important;
}

.bunker-hero .overlay {
    position: absolute;
    inset: 0;
    background: transparent !important;
    opacity: 1 !important;
    pointer-events: none;
}

.bunker-hero::before,
.bunker-hero::after,
.bunker-hero .bg::before,
.bunker-hero .bg::after {
    display: none !important;
    content: none !important;
}

.container {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) 0;
}

.content {
    width: min(100%, 760px);
}

.eyebrow {
    margin: 0 0 22px;
    color: #e1443f;
    font-size: clamp(12px, 1.1vw, 15px);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.title {
    max-width: 760px;
    margin: 0;
    color: #e1443f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 7vw, 86px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.text {
    max-width: 660px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 1.6vw, 21px);
    font-weight: 500;
    line-height: 1.65;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

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

.btn--primary {
    color: #ffffff;
    background: #e1443f;
    border: 1px solid #e1443f;
    box-shadow: 0 14px 32px rgba(225, 68, 63, 0.22);
}

.btn--primary:hover {
    background: #ff6b5f;
    border-color: #ff6b5f;
}

.btn--secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(8px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.54);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: clamp(46px, 6vw, 72px);
}

.feature {
    min-width: 0;
    padding: 22px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(2, 14, 22, 0.42);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.feature-number {
    display: inline-flex;
    margin-bottom: 18px;
    color: #e1443f;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.feature h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .bunker-hero {
        align-items: flex-end;
    }

    .overlay {
        background:
            radial-gradient(circle at 72% 30%, rgba(225, 68, 63, 0.18) 0%, transparent 38%),
            linear-gradient(180deg, rgba(2, 10, 18, 0.48) 0%, rgba(2, 10, 18, 0.92) 72%, rgba(2, 10, 18, 0.98) 100%);
    }

    .container {
        padding-top: 96px;
        padding-bottom: 36px;
    }

    .content {
        width: 100%;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 34px;
    }

    .feature {
        padding: 18px;
    }
}

@media (max-width: 560px) {
    .bunker-hero {
        min-height: calc(100svh - var(--header-height, 72px));
        min-height: calc(100dvh - var(--header-height, 72px));
    }

    .container {
        width: min(100% - 24px, 1180px);
        padding-top: 64px;
        padding-bottom: 28px;
    }

    .eyebrow {
        margin-bottom: 18px;
        letter-spacing: 0.2em;
    }

    .title {
        font-size: clamp(38px, 13vw, 58px);
        line-height: 1.02;
    }

    .text {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.58;
    }

    .actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }

    .btn {
        width: 100%;
        min-height: 52px;
        padding: 15px 20px;
    }
}
/*  */
.br-home {
    background: #fff7f5;
    color: #211314;
}

.br-container {
    width: min(100% - 32px, 1120px);
    margin: 0 auto;
}

.br-kicker {
    margin: 0 0 14px;
    color: #e1443f;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.br-benefits {
    padding: 70px 0;
    background: #ffffff;
}

.br-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 44px;
}

.br-benefit {
    min-width: 0;
}

.br-benefit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #e1443f;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.br-benefit h3 {
    margin: 0 0 10px;
    color: #211314;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
}

.br-benefit p {
    margin: 0;
    color: rgba(16, 32, 37, 0.72);
    font-size: 14px;
    line-height: 1.55;
}

.br-about-preview {
    padding: 86px 0;
    background: #fff0ec;
}

.br-about-preview__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
    gap: clamp(38px, 7vw, 90px);
    align-items: center;
}

.br-about-preview__media {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 52px rgba(33, 19, 20, 0.14);
    background: #dfeeea;
}

.br-about-preview__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    object-fit: cover;
}

.br-about-preview__content h2,
.br-section-head h2,
.br-contact-preview__content h2 {
    margin: 0;
    color: #211314;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.4vw, 52px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.br-about-preview__content p,
.br-contact-preview__content p {
    margin: 20px 0 0;
    color: rgba(16, 32, 37, 0.76);
    font-size: 16px;
    line-height: 1.65;
}

.br-text-link {
    display: inline-flex;
    margin-top: 24px;
    color: #e1443f;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.br-text-link::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.br-text-link:hover::after {
    transform: translateX(4px);
}

.br-tours-preview {
    padding: 88px 0 96px;
    background: #ffffff;
}

.br-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 42px;
}

.br-section-head__link {
    flex: 0 0 auto;
    color: #e1443f;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.br-section-head__link::after {
    content: "→";
    margin-left: 8px;
}

.br-tour-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.br-tour-card {
    min-width: 0;
    border: 1px solid rgba(33, 19, 20, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(33, 19, 20, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.br-tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 58px rgba(33, 19, 20, 0.12);
}

.br-tour-card__image {
    display: block;
    overflow: hidden;
    background: #dfeeea;
}

.br-tour-card__image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.br-tour-card:hover .br-tour-card__image img {
    transform: scale(1.04);
}

.br-tour-card__body {
    padding: 22px 24px 24px;
}

.br-tour-card__tag {
    display: inline-flex;
    margin-bottom: 12px;
    color: #e1443f;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.br-tour-card h3 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.br-tour-card h3 a {
    color: #211314;
    text-decoration: none;
}

.br-tour-card h3 a:hover {
    color: #e1443f;
}

.br-tour-card p {
    margin: 0;
    color: rgba(16, 32, 37, 0.72);
    font-size: 14px;
    line-height: 1.6;
}

.br-tour-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(33, 19, 20, 0.09);
    color: rgba(16, 32, 37, 0.72);
    font-size: 12px;
    font-weight: 700;
}

.br-contact-preview {
    padding: 92px 0;
    background: #2b0f12;
}

.br-contact-preview__box {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    gap: clamp(34px, 6vw, 80px);
    align-items: start;
}

.br-contact-preview__content h2 {
    color: #ffffff;
}

.br-contact-preview__content p {
    color: rgba(255, 255, 255, 0.74);
}

.br-contact-form {
    display: grid;
    gap: 15px;
    padding: 26px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.22);
}

.br-contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.br-contact-form label {
    display: grid;
    gap: 8px;
    color: rgba(16, 32, 37, 0.82);
    font-size: 13px;
    font-weight: 800;
}

.br-contact-form input,
.br-contact-form select,
.br-contact-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(33, 19, 20, 0.14);
    border-radius: 8px;
    background: #fff8f6;
    color: #211314;
    font: inherit;
    font-size: 14px;
    padding: 12px 13px;
    outline: none;
}

.br-contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.br-contact-form input:focus,
.br-contact-form select:focus,
.br-contact-form textarea:focus {
    border-color: #e1443f;
    box-shadow: 0 0 0 4px rgba(225, 68, 63, 0.12);
}

.br-contact-form button {
    min-height: 50px;
    border: 0;
    border-radius: 8px;
    color: #2b0f12;
    background: #e1443f;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.br-contact-form button:hover {
    background: #ff6b5f;
    transform: translateY(-1px);
}

.br-contact-form__note {
    margin: 0;
    color: rgba(16, 32, 37, 0.58);
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 980px) {
    .br-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .br-about-preview__grid,
    .br-contact-preview__box {
        grid-template-columns: 1fr;
    }

    .br-tour-grid {
        grid-template-columns: 1fr;
    }

    .br-section-head {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .br-container {
        width: min(100% - 24px, 1120px);
    }

    .br-benefits,
    .br-about-preview,
    .br-tours-preview,
    .br-contact-preview {
        padding: 58px 0;
    }

    .br-benefits__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .br-about-preview__content h2,
    .br-section-head h2,
    .br-contact-preview__content h2 {
        font-size: 34px;
    }

    .br-contact-form__row {
        grid-template-columns: 1fr;
    }

    .br-contact-form {
        padding: 20px;
    }
}

/* FRESH CLEAN SERVICE OVERRIDES */
.bunker-hero {
    background: #2b0f12;
}

.overlay {
    background:
        radial-gradient(circle at 78% 28%, rgba(74, 168, 255, 0.24) 0%, transparent 34%),
        radial-gradient(circle at 42% 72%, rgba(225, 68, 63, 0.22) 0%, transparent 34%),
        linear-gradient(90deg, rgba(13, 43, 43, 0.92) 0%, rgba(13, 43, 43, 0.74) 44%, rgba(13, 43, 43, 0.42) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(13, 43, 43, 0.54) 100%);
}

.eyebrow,
.br-kicker,
.br-benefit__icon,
.br-tour-card__tag {
    color: #e1443f;
}

.btn--primary,
.br-contact-form button {
    background: #e1443f;
    border-color: #e1443f;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(225, 68, 63, 0.24);
}

.btn--primary:hover,
.br-contact-form button:hover {
    background: #ff6b5f;
    border-color: #ff6b5f;
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.38);
}

.br-home {
    background: #fff7f5;
    color: #211314;
}

.br-benefits,
.br-tours-preview {
    background: #ffffff;
}

.br-about-preview {
    background: #fff0ec;
}

.br-benefit,
.br-tour-card,
.br-contact-form {
    border-color: rgba(33, 19, 20, 0.1);
    box-shadow: 0 18px 48px rgba(33, 19, 20, 0.07);
}

.br-tour-card {
    border-radius: 22px;
}

.br-about-preview__media,
.br-tour-card__image {
    background: #dfeeea;
}

.br-text-link,
.br-section-head__link,
.br-tour-card h3 a:hover {
    color: #e1443f;
}

.br-contact-preview {
    background:
        radial-gradient(circle at 15% 12%, rgba(225, 68, 63, 0.18) 0%, transparent 34%),
        linear-gradient(145deg, #2b0f12 0%, #43181d 100%);
}

.br-contact-form {
    border-radius: 24px;
}

.br-contact-form input,
.br-contact-form select,
.br-contact-form textarea {
    background: #fff7f5;
    border-color: rgba(33, 19, 20, 0.12);
    color: #211314;
}

.br-contact-form input:focus,
.br-contact-form select:focus,
.br-contact-form textarea:focus {
    border-color: #e1443f;
    box-shadow: 0 0 0 4px rgba(225, 68, 63, 0.13);
}
/*  */
.luno-problem-section {
    padding: clamp(72px, 8vw, 120px) 0;
    background: #ffffff;
    color: #101418;
    overflow: hidden;
}

.luno-problem-container {
    width: min(100% - 32px, 1240px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: clamp(42px, 7vw, 96px);
    align-items: center;
}

.luno-problem-content {
    max-width: 650px;
}

.luno-problem-kicker {
    margin: 0 0 24px;
    color: #d7a629;
    font-size: clamp(18px, 1.7vw, 26px);
    font-weight: 800;
    line-height: 1.25;
}

.luno-problem-title {
    max-width: 680px;
    margin: 0;
    color: #050607;
    font-size: clamp(30px, 5.2vw, 64px);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -0.055em;
}

.luno-problem-line {
    width: min(100%, 560px);
    height: 6px;
    margin: clamp(28px, 4vw, 44px) 0;
    background: #d7a629;
}

.luno-problem-lead {
    max-width: 650px;
    margin: 0;
    color: #1b1f23;
    font-size: clamp(18px, 1.45vw, 23px);
    font-weight: 500;
    line-height: 1.55;
}

.luno-problem-question {
    margin: 34px 0 22px;
    color: #090b0d;
    font-size: clamp(19px, 1.55vw, 24px);
    font-weight: 900;
    line-height: 1.35;
}

.luno-problem-list {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.luno-problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    color: #13171a;
    font-size: clamp(18px, 1.4vw, 23px);
    font-weight: 500;
    line-height: 1.35;
}

.luno-problem-icon {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ff0f55;
    border-radius: 50%;
    color: #ff0f55;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.luno-problem-note {
    max-width: 680px;
    margin: 34px 0 0;
    color: #13171a;
    font-size: clamp(18px, 1.45vw, 23px);
    font-weight: 500;
    line-height: 1.55;
}

.luno-problem-note strong {
    color: #050607;
    font-weight: 900;
}

.luno-problem-media {
    position: relative;
}

.luno-problem-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

/* Tablet */
@media (max-width: 980px) {
    .luno-problem-container {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .luno-problem-content {
        max-width: 100%;
    }

    .luno-problem-title {
        max-width: 760px;
    }

    .luno-problem-line {
        width: min(100%, 460px);
    }

    .luno-problem-media {
        max-width: 720px;
    }

    .luno-problem-image {
        aspect-ratio: 16 / 10;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .luno-problem-section {
        padding: 58px 0;
    }

    .luno-problem-container {
        width: min(100% - 24px, 1240px);
        gap: 34px;
    }

    .luno-problem-kicker {
        margin-bottom: 18px;
    }

    .luno-problem-title {
        font-size: clamp(34px, 11vw, 48px);
        line-height: 1.08;
    }

    .luno-problem-line {
        height: 5px;
        margin: 26px 0;
    }

    .luno-problem-lead,
    .luno-problem-note {
        font-size: 17px;
        line-height: 1.55;
    }

    .luno-problem-question {
        margin-top: 28px;
        font-size: 18px;
    }

    .luno-problem-list {
        gap: 12px;
    }

    .luno-problem-list li {
        font-size: 17px;
        line-height: 1.38;
    }

    .luno-problem-icon {
        width: 20px;
        height: 20px;
        font-size: 16px;
        margin-top: 2px;
    }

    .luno-problem-image {
        aspect-ratio: 4 / 3;
        border-radius: 16px;
    }
}
/*  */
.luno-relief-section {
    background: #050505;
    color: #ffffff;
    overflow: hidden;
}

.luno-relief-stats {
    background: #080808;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.luno-relief-stats__inner {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    padding: clamp(36px, 5vw, 58px) 0 clamp(38px, 5vw, 64px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.luno-relief-stat {
    display: grid;
    gap: 14px;
}

.luno-relief-stat strong {
    color: #e0b22f;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.luno-relief-stat span {
    color: #ffffff;
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.luno-relief-main {
    background: #000000;
    padding: clamp(76px, 8vw, 120px) 0 clamp(86px, 9vw, 132px);
}

.luno-relief-container {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
}

.luno-relief-heading {
    max-width: 820px;
    margin: 0 auto clamp(46px, 6vw, 70px);
    text-align: center;
}

.luno-relief-kicker {
    margin: 0 0 18px;
    color: #e0b22f;
    font-size: clamp(18px, 1.7vw, 24px);
    font-weight: 900;
    line-height: 1.25;
}

.luno-relief-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 4.6vw, 60px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.055em;
}

.luno-relief-subtitle {
    max-width: 740px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 1.4vw, 21px);
    font-weight: 600;
    line-height: 1.55;
}

.luno-relief-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.luno-relief-card {
    min-height: 330px;
    padding: clamp(30px, 3.5vw, 42px) clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;
    border: 3px solid #e0b22f;
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 0%, rgba(224, 178, 47, 0.08) 0%, transparent 34%),
        #000000;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.luno-relief-card:hover {
    transform: translateY(-6px);
    border-color: #f0c94c;
    background:
        radial-gradient(circle at 50% 0%, rgba(224, 178, 47, 0.14) 0%, transparent 38%),
        #050505;
}

.luno-relief-card__icon {
    width: 74px;
    height: 74px;
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e0b22f;
}

.luno-relief-card__icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.luno-relief-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(27px, 2.5vw, 38px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.luno-relief-card p {
    max-width: 340px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(17px, 1.35vw, 20px);
    font-weight: 600;
    line-height: 1.55;
}

/* Tablet */
@media (max-width: 980px) {
    .luno-relief-stats__inner {
        gap: 18px;
    }

    .luno-relief-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
    }

    .luno-relief-card {
        min-height: auto;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .luno-relief-stats__inner {
        width: min(100% - 24px, 1180px);
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 42px 0;
    }

    .luno-relief-stat strong {
        font-size: 48px;
    }

    .luno-relief-stat span {
        font-size: 24px;
    }

    .luno-relief-main {
        padding: 62px 0 72px;
    }

    .luno-relief-container {
        width: min(100% - 24px, 1180px);
    }

    .luno-relief-heading {
        margin-bottom: 38px;
    }

    .luno-relief-title {
        font-size: clamp(34px, 10vw, 46px);
    }

    .luno-relief-card {
        padding: 30px 22px;
        border-width: 2px;
    }

    .luno-relief-card__icon {
        width: 62px;
        height: 62px;
        margin-bottom: 22px;
    }

    .luno-relief-card h3 {
        font-size: 28px;
    }

    .luno-relief-card p {
        font-size: 17px;
    }
}
/*  */
.luno-service-cards {
    padding: clamp(72px, 8vw, 118px) 0;
    background: #ffffff;
    color: #101418;
    overflow: hidden;
}

.luno-service-cards__container {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
}

.luno-service-cards__heading {
    margin: 0 auto clamp(34px, 5vw, 52px);
    text-align: center;
}

.luno-service-cards__kicker {
    margin: 0 0 14px;
    color: #101418;
    font-size: clamp(17px, 1.5vw, 22px);
    font-weight: 900;
    line-height: 1.25;
}

.luno-service-cards__title {
    margin: 0;
    color: #d7a629;
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.luno-service-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.luno-service-card {
    position: relative;
    min-height: 230px;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    isolation: isolate;
    text-decoration: none;
    color: #ffffff;
    background: #101418;
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.14);
}

.luno-service-card__image {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    filter: brightness(0.58) saturate(0.9);
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.luno-service-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.35) 54%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.54) 100%);
    transition:
        opacity 0.35s ease,
        background 0.35s ease;
}

.luno-service-card__content {
    position: relative;
    z-index: 3;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(26px, 3vw, 34px);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

.luno-service-card__content h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(25px, 2.4vw, 34px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.luno-service-card__content p {
    max-width: 360px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(16px, 1.35vw, 19px);
    font-weight: 700;
    line-height: 1.5;
}

.luno-service-card__hover {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    transform: translate(-50%, -42%);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    color: #101418;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

.luno-service-card:hover .luno-service-card__image {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.06);
}

.luno-service-card:hover .luno-service-card__overlay {
    opacity: 0.12;
}

.luno-service-card:hover .luno-service-card__content {
    opacity: 0;
    transform: translateY(12px);
}

.luno-service-card:hover .luno-service-card__hover {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.luno-service-card:focus-visible {
    outline: 4px solid #d7a629;
    outline-offset: 5px;
}

.luno-service-cards__action {
    display: flex;
    justify-content: center;
    margin-top: clamp(34px, 5vw, 54px);
}

.luno-service-cards__button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 10px;
    color: #ffffff;
    background: #e1443f;
    border: 1px solid #e1443f;
    box-shadow: 0 16px 36px rgba(225, 68, 63, 0.22);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.luno-service-cards__button:hover {
    transform: translateY(-2px);
    background: #ff6b5f;
    border-color: #ff6b5f;
    box-shadow: 0 20px 42px rgba(225, 68, 63, 0.28);
}

/* Tablet */
@media (max-width: 980px) {
    .luno-service-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .luno-service-card,
    .luno-service-card__content {
        min-height: 240px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .luno-service-cards {
        padding: 58px 0 68px;
    }

    .luno-service-cards__container {
        width: min(100% - 24px, 1180px);
    }

    .luno-service-cards__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .luno-service-card,
    .luno-service-card__content {
        min-height: 220px;
    }

    .luno-service-card__content {
        padding: 26px;
    }

    .luno-service-card__content h3 {
        font-size: 28px;
    }

    .luno-service-card__content p {
        margin-top: 18px;
        font-size: 16px;
    }

    .luno-service-cards__button {
        width: 100%;
        max-width: 360px;
    }
}

/* На устройствах без hover текст оставляем видимым */
@media (hover: none) {
    .luno-service-card:hover .luno-service-card__image {
        transform: scale(1.02);
        filter: brightness(0.58) saturate(0.9);
    }

    .luno-service-card:hover .luno-service-card__overlay {
        opacity: 1;
    }

    .luno-service-card:hover .luno-service-card__content {
        opacity: 1;
        transform: none;
    }

    .luno-service-card:hover .luno-service-card__hover {
        opacity: 0;
    }
}
/*  */
.luno-quality-section {
    padding: clamp(72px, 8vw, 120px) 0;
    background: #ffffff;
    color: #080a0c;
    overflow: hidden;
}

.luno-quality-container {
    width: min(100% - 32px, 1160px);
    margin: 0 auto;
}

.luno-quality-intro {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
    gap: clamp(42px, 7vw, 82px);
    align-items: center;
}

.luno-quality-image-wrap {
    overflow: hidden;
    border-radius: 22px;
    background: #f2f4f5;
}

.luno-quality-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    object-position: center;
}

.luno-quality-content {
    max-width: 620px;
}

.luno-quality-label {
    margin: 0 0 22px;
    color: #080a0c;
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 900;
    line-height: 1.2;
}

.luno-quality-title {
    margin: 0 0 24px;
    color: #d7a629;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.luno-quality-content p:not(.luno-quality-label) {
    margin: 0 0 26px;
    color: #0c1116;
    font-size: clamp(17px, 1.45vw, 21px);
    font-weight: 500;
    line-height: 1.58;
}

.luno-quality-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
    padding: 14px 30px;
    border-radius: 999px;
    color: #050607;
    background: #d7a629;
    border: 1px solid #d7a629;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.luno-quality-button span {
    font-size: 24px;
    line-height: 1;
}

.luno-quality-button:hover {
    transform: translateY(-2px);
    background: #ecc34b;
    border-color: #ecc34b;
    box-shadow: 0 16px 34px rgba(215, 166, 41, 0.24);
}

.luno-quality-contact-card {
    margin-top: clamp(72px, 8vw, 112px);
    padding: clamp(34px, 5vw, 48px);
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: clamp(34px, 5vw, 56px);
    align-items: center;
    border-radius: 20px;
    background: #000000;
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.luno-quality-person {
    text-align: center;
}

.luno-quality-avatar-wrap {
    width: 170px;
    height: 170px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background: #151515;
}

.luno-quality-avatar {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.luno-quality-person-name {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.luno-quality-contact-content h3 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.luno-quality-contact-content p {
    max-width: 770px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(18px, 1.6vw, 23px);
    font-weight: 500;
    line-height: 1.55;
}

.luno-quality-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.luno-quality-contact-link {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: #d7a629;
    border: 1px solid #d7a629;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.luno-quality-contact-link:hover {
    transform: translateY(-2px);
    background: #ecc34b;
    border-color: #ecc34b;
}

.luno-quality-contact-link svg {
    width: 23px;
    height: 23px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.luno-quality-contact-link:first-child svg,
.luno-quality-contact-link:nth-child(3) svg {
    fill: currentColor;
    stroke: none;
}

/* Tablet */
@media (max-width: 980px) {
    .luno-quality-intro {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .luno-quality-image-wrap {
        max-width: 680px;
    }

    .luno-quality-image {
        aspect-ratio: 16 / 11;
    }

    .luno-quality-content {
        max-width: 760px;
    }

    .luno-quality-contact-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .luno-quality-contact-content p {
        margin: 0 auto;
    }

    .luno-quality-contact-actions {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .luno-quality-section {
        padding: 58px 0 72px;
    }

    .luno-quality-container {
        width: min(100% - 24px, 1160px);
    }

    .luno-quality-image {
        aspect-ratio: 4 / 3;
    }

    .luno-quality-title {
        font-size: clamp(34px, 10vw, 46px);
    }

    .luno-quality-button {
        width: 100%;
        max-width: 340px;
    }

    .luno-quality-contact-card {
        margin-top: 58px;
        padding: 30px 22px;
        border-radius: 18px;
    }

    .luno-quality-avatar-wrap {
        width: 136px;
        height: 136px;
    }

    .luno-quality-contact-content h3 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .luno-quality-contact-content p {
        font-size: 17px;
        line-height: 1.55;
    }
}