:root {
    --black: #050505;
    --ink: #111111;
    --muted: #666666;
    --line: #e6e6e3;
    --soft: #f6f6f4;
    --white: #ffffff;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
    --container: 1430px;
    --mj-black: #070707;
    --mj-dark: #111111;
    --mj-text: #151515;
    --mj-muted: #676767;
    --mj-border: rgba(0, 0, 0, 0.08);
    --mj-soft: #f3f3f3;
    --mj-white: #ffffff;
    --mj-radius-xl: 30px;
    --mj-radius-lg: 22px;
    --mj-shadow: 0 18px 70px rgba(0, 0, 0, 0.09);
    --mj-shadow-hover: 0 28px 90px rgba(0, 0, 0, 0.15);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Manrope, Arial, sans-serif;
    color: var(--ink);
    background: #ffffff;
    letter-spacing: -0.02em;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: min(var(--container), calc(100% - 56px));
    margin-inline: auto;
}
.popup {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 9999;
    width: min(520px, calc(100% - 32px));
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateX(-50%);
    color: #111111;
    font-family: Inter, Manrope, Arial, sans-serif;
}

.popup::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
            radial-gradient(circle at 90% 10%, rgba(0, 0, 0, 0.055), transparent 34%),
            linear-gradient(180deg, rgba(255,255,255,0.94), rgba(247,247,244,0.94));
    z-index: -1;
}

.popup h2 {
    margin: 0 0 10px;
    color: #050505;
    font-size: 26px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.popup p {
    margin: 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.65;
}

.popup-buttons {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.popup-button {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

#accept {
    background: #050505;
    color: #ffffff;
    border-color: #050505;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

#accept:hover {
    background: #1b1b1b;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

#refuse {
    background: #ffffff;
    color: #111111;
}

#refuse:hover {
    background: #f2f2ef;
}

.popup.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(18px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

@media (max-width: 560px) {
    .popup {
        bottom: 16px;
        padding: 22px;
        border-radius: 20px;
    }

    .popup h2 {
        font-size: 23px;
    }

    .popup-buttons {
        flex-direction: column;
    }

    .popup-button {
        width: 100%;
    }
}
.site-shell {
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.topbar {
    background: #0b0b0b;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.03em;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.topbar a,
.topbar span {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s ease;
}

.topbar a:hover {
    color: #ffffff;
}

.topbar i {
    font-size: 13px;
    color: #ffffff;
}

.main-header {
    background: rgba(255, 255, 255, 0.94);
}

.header-inner {
    height: 86px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    width: 142px;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    position: relative;
    color: #111111;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 32px 0;
    transition: color 0.25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 0;
    height: 2px;
    background: #111111;
    transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: #000000;
}

.main-nav i {
    font-size: 10px;
    margin-top: 1px;
}

.header-cta {
    min-height: 52px;
    padding: 0 26px;
    border-radius: 10px;
    background: #050505;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    background: #1b1b1b;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.nav-toggle {
    display: none;
    border: 0;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #0b0b0b;
    color: #ffffff;
    font-size: 18px;
}

.btn , .quote-product{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 18px 30px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-dark {
    background: #050505;
    color: #ffffff;
}

.btn-light {
    background: #ffffff;
    color: #050505;
    border-color: #cfcfcb;
}

.btn-white {
    background: #ffffff;
    color: #050505;
    border-color: #ffffff;
}

.btn:hover,
.product-card button:hover,
.featured-card button:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.section {
    padding: 92px 0;
}

.section-tight {
    padding: 55px 0;
}

.section-soft {
    background: linear-gradient(180deg, #fbfbfa, #f5f5f2);
}

.section-glow {
    background: radial-gradient(circle at 74% 30%, #eeeeee 0, #ffffff 35%, #ffffff 100%);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.27em;
    font-weight: 900;
    font-size: 13px;
    color: #222222;
    margin: 0 0 28px;
}

.hero {
    padding: 78px 0 74px;
    background-image: url("../img/bg-hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-grid {
    display: flex;
    gap: 70px;
    align-items: center;
}

.hero-copy {
    flex: 1;
    min-width: 0;
}

.hero-copy h1 {
    font-size: clamp(54px, 5.8vw, 70px);
    line-height: 0.98;
    margin: 0 0 36px;
    font-weight: 900;
    letter-spacing: -0.065em;
    max-width: 665px;
}

.hero-text {
    max-width: 650px;
    font-size: 20px;
    line-height: 1.75;
    color: #363636;
    margin: 0 0 36px;
}

.hero-actions {
    display: flex;
    gap: 22px;
    margin-bottom: 54px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 680px;
}

.hero-trust div {
    display: flex;
    gap: 16px;
    align-items: center;
    min-height: 62px;
    padding-right: 23px;
    margin-right: 23px;
    border-right: 1px solid #d7d7d4;
}

.hero-trust div:last-child {
    border-right: 0;
    margin-right: 0;
}

.hero-trust i {
    font-size: 30px;
    color: #050505;
    width: 34px;
    text-align: center;
}

.hero-trust span {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.25;
}

.hero-trust strong {
    font-weight: 900;
}

.hero-visual {
    flex: 1;
    min-width: 0;
    position: relative;
}

.hero-frame {
    position: relative;
    overflow: visible;
}

.hero-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: scale(1.4);
}

.visual-badge {
    position: absolute;
    right: 8%;
    bottom: 8%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #d7d7d2;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    color: #333333;
}

.section-head {
    margin-bottom: 34px;
}

.section-head h2 {
    font-size: clamp(33px, 3vw, 48px);
    line-height: 1.05;
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.section-head p {
    margin: 0;
    color: #626262;
    line-height: 1.6;
}

.section-head.split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.section-head.center {
    text-align: center;
    max-width: 730px;
    margin-inline: auto;
}

.slider-controls {
    display: flex;
    gap: 12px;
}

.slider-controls button {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    color: #050505;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.slider-controls button:hover {
    background: #050505;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
}

.mini-catalogue {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 112px 0 104px;
    background:
            radial-gradient(circle at 8% 12%, rgba(0, 0, 0, 0.055), transparent 28%),
            radial-gradient(circle at 92% 18%, rgba(0, 0, 0, 0.05), transparent 30%),
            linear-gradient(180deg, #ffffff 0%, #f7f7f5 44%, #ffffff 100%);
}

.mini-catalogue::before {
    content: "";
    position: absolute;
    inset: 54px -12vw auto auto;
    width: 54vw;
    height: 54vw;
    max-width: 820px;
    max-height: 820px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.06), transparent 62%);
    z-index: -1;
    pointer-events: none;
}

.mini-catalogue::after {
    content: "";
    position: absolute;
    left: -12vw;
    bottom: -18vw;
    width: 44vw;
    height: 44vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.045), transparent 62%);
    z-index: -1;
    pointer-events: none;
}

.catalogue-head-container {
    position: relative;
    z-index: 2;
}

.mini-catalogue .section-head {
    margin-bottom: 0;
}

.mini-catalogue .section-head.split {
    align-items: flex-end;
    gap: 44px;
}

.section-title-block {
    max-width: 870px;
}

.mini-catalogue .eyebrow {
    margin: 0 0 16px;
    color: #111111;
    font-size: 12px;
    letter-spacing: 0.31em;
}

.section-title-block h2 {
    margin: 0 0 18px;
    max-width: 760px;
    font-size: clamp(46px, 6vw, 86px);
    line-height: 0.88;
    letter-spacing: -0.085em;
    font-weight: 950;
}

.section-title-block p {
    margin: 0;
    max-width: 780px;
    color: #5f5f5f;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: -0.025em;
}

.catalogue-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.catalogue-count {
    min-width: 178px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.065);
    backdrop-filter: blur(14px);
}

.catalogue-count strong {
    display: block;
    font-size: 34px;
    line-height: 0.9;
    font-weight: 950;
    letter-spacing: -0.07em;
}

.catalogue-count span {
    display: block;
    margin-top: 9px;
    color: #666666;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.catalogue-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 38px;
}

.catalogue-filter {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.085);
    border-radius: 999px;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.82);
    color: #202020;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: -0.01em;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.045);
    backdrop-filter: blur(12px);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.catalogue-filter:hover,
.catalogue-filter.active {
    background: #050505;
    color: #ffffff;
    border-color: #050505;
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.catalogue-full-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 48px;
    z-index: 2;
}

.catalogue-swiper {
    padding: 22px 34px 66px;
    overflow: visible;
}

.catalogue-swiper .swiper-wrapper {
    align-items: stretch;
}

.mini-catalogue .product-card {
    position: relative;
    height: auto;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.075);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.08);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.mini-catalogue .product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.55), transparent 42%);
    pointer-events: none;
    z-index: 1;
}

.mini-catalogue .product-card:hover {
    transform: translateY(-9px);
    border-color: rgba(0, 0, 0, 0.16);
    box-shadow: 0 32px 95px rgba(0, 0, 0, 0.145);
}

.mini-catalogue .product-card.is-hidden {
    display: none;
}

.mini-catalogue .product-img {
    position: relative;
    isolation: isolate;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background:
            radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 1), rgba(238, 238, 236, 0.94) 58%, rgba(226, 226, 222, 0.9) 100%);
}

.mini-catalogue .product-img::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    z-index: 2;
    pointer-events: none;
}

.mini-catalogue .product-img::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 12px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    filter: blur(22px);
    z-index: 0;
}

.mini-catalogue .product-img img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    background: #eeeeec;
    filter: contrast(1.02) saturate(0.98);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.mini-catalogue .product-card:hover .product-img img {
    transform: scale(1.045);
    filter: contrast(1.04) saturate(1.02);
}

.example-badge,
.view-badge {
    position: absolute;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: -0.01em;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.example-badge {
    top: 28px;
    left: 28px;
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.9);
    color: #111111;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.view-badge {
    right: 28px;
    bottom: 28px;
    padding: 9px 13px;
    background: rgba(5, 5, 5, 0.88);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.mini-catalogue .product-content {
    position: relative;
    z-index: 3;
    padding: 24px 24px 26px;
    background: rgba(255, 255, 255, 0.94);
}

.product-type {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #eeeeec;
    color: #303030;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mini-catalogue .product-content h3 {
    margin: 0 0 11px;
    color: #090909;
    font-size: 22px;
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.mini-catalogue .product-content p {
    min-height: 62px;
    margin: 0;
    color: #686868;
    font-size: 14px;
    line-height: 1.58;
    letter-spacing: -0.015em;
}

.product-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 19px 0 22px;
}

.product-options span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f3f3f1;
    border: 1px solid rgba(0, 0, 0, 0.055);
    color: #303030;
    font-size: 12px;
    font-weight: 800;
}

.quote-product {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 14px;
    background: #050505;
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
    cursor: pointer;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.quote-product:hover {
    transform: translateY(-2px);
    background: #202020;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.catalogue-swiper .swiper-pagination {
    bottom: 15px;
}

.catalogue-swiper .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #111111;
    opacity: 0.18;
    transition: width 0.25s ease, opacity 0.25s ease;
}

.catalogue-swiper .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 999px;
    opacity: 1;
}

.universe-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.universe-grid article {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    text-align: center;
    padding: 31px 15px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.universe-grid article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.universe-grid i {
    font-size: 42px;
    margin-bottom: 18px;
}

.universe-grid h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.05;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.steps::before {
    content: "";
    position: absolute;
    top: 48px;
    left: 12%;
    right: 12%;
    border-top: 1px dashed #cccccc;
}

.steps article {
    position: relative;
    background: transparent;
    text-align: center;
    padding: 8px 20px;
}

.steps span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: #050505;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.steps i {
    width: 76px;
    height: 76px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 21px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
}

.steps h3 {
    font-size: 18px;
    margin: 0 0 9px;
}

.steps p {
    font-size: 14px;
    color: #666666;
    line-height: 1.55;
    margin: 0;
}

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

.featured-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.055);
}

.featured-card img {
    width: 100%;
    aspect-ratio: 1.16 / 1;
    object-fit: cover;
    display: block;
}

.featured-card div {
    padding: 22px;
}

.featured-card h3 {
    margin: 0 0 13px;
    font-size: 20px;
}

.featured-card ul {
    margin: 0 0 15px;
    padding-left: 18px;
    color: #444444;
    font-size: 14px;
    line-height: 1.7;
}

.featured-card p {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.featured-card span {
    background: #f1f1ef;
    border: 1px solid #e6e6e3;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 800;
}

.featured-card button {
    width: 100%;
    background: #ffffff;
    color: #050505;
    padding: 12px;
    border-radius: 8px;
    font-size: 12px;
    border: 1px solid var(--line);
    cursor: pointer;
}

.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.filters button {
    border: 1px solid var(--line);
    background: #ffffff;
    border-radius: 999px;
    padding: 11px 20px;
    font-weight: 800;
    cursor: pointer;
}

.filters button.active {
    background: #050505;
    color: #ffffff;
    border-color: #050505;
}

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

.real-grid article {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.real-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.08);
}

.real-grid article.hide {
    display: none;
}

.real-grid img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.real-grid h3 {
    font-size: 16px;
    margin: 16px 16px 18px;
}

.center {
    text-align: center;
}

.mt {
    margin-top: 30px;
}

.review-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 52px;
    align-items: start;
}

.stars {
    color: #f0b400;
    letter-spacing: 0.08em;
}

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

.testimonial-grid article,
.mini-review {
    border: 1px solid var(--line);
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.045);
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e9e9e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 12px;
}

.testimonial-grid h3 {
    margin: 0;
}

.role {
    font-size: 12px;
    color: #777777;
    margin: 4px 0 12px;
}

.testimonial-grid article > p:last-of-type {
    font-size: 14px;
    line-height: 1.6;
    color: #444444;
}

.testimonial-grid i {
    color: #4285f4;
}

.compact {
    margin-bottom: 22px;
}

.mini-review img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 13px;
    background: #f3f3f1;
}

.mini-review h3 {
    font-size: 15px;
    margin: 15px 0 5px;
}

.mini-review p {
    font-size: 13px;
    line-height: 1.45;
    color: #555555;
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
}

.reassurance-grid article {
    padding: 28px;
    border-right: 1px solid var(--line);
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 18px;
    align-items: start;
}

.reassurance-grid article:last-child {
    border-right: 0;
}

.reassurance-grid i {
    grid-row: span 2;
    width: 52px;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.reassurance-grid h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.reassurance-grid p {
    margin: 0;
    color: #666666;
    line-height: 1.5;
    font-size: 14px;
}

.cta-band {
    padding: 35px 0;
}

.cta-inner {
    background: #070707;
    color: #ffffff;
    border-radius: 0;
    padding: 48px 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.cta-inner::after {
    content: "";
    position: absolute;
    right: 55px;
    top: 50%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-50%);
}

.cta-inner h2 {
    font-size: 40px;
    line-height: 1.05;
    margin: 0 0 12px;
}

.cta-inner p {
    margin: 0;
    color: #d0d0d0;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 50px;
    align-items: start;
}

.contact-card {
    display: grid;
    gap: 26px;
}

.contact-card div {
    display: flex;
    gap: 17px;
}

.contact-card i {
    font-size: 25px;
    width: 30px;
    text-align: center;
}

.contact-card p {
    margin: 0;
    line-height: 1.55;
    color: #555555;
}

.contact-card strong {
    color: #111111;
}

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

.quote-form label {
    font-weight: 800;
    font-size: 13px;
    color: #222222;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 15px 16px;
    font: inherit;
    font-size: 14px;
    background: #ffffff;
    outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: #111111;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.quote-form .full {
    grid-column: 1 / -1;
}

.upload-zone {
    grid-row: span 2;
}

.upload-zone input {
    display: none;
}

.upload-zone span {
    min-height: 140px;
    border: 1px dashed #bdbdb7;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #555555;
    font-weight: 700;
    background: #fbfbfa;
    padding: 20px;
}

.upload-zone i {
    font-size: 28px;
    margin-bottom: 10px;
}

.submit-btn {
    grid-column: 2;
    background: #050505;
    color: #ffffff;
    padding: 17px;
    border-color: #050505;
}

.site-footer {
    background: #080808;
    color: #ffffff;
    padding: 54px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.site-footer img {
    width: 135px;
    filter: invert(1);
}

.site-footer p,
.site-footer a {
    color: #cfcfcf;
    line-height: 1.7;
    font-size: 14px;
}

.site-footer nav {
    display: flex;
    flex-direction: column;
}

.site-footer a {
    text-decoration: none;
    margin-bottom: 7px;
}

.site-footer h3 {
    margin: 0 0 16px;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 35px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: #aaaaaa;
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 0.8s ease forwards;
    flex: 1;
}

.delay-1 {
    animation-delay: 0.12s;
}
:root {
    --mj-black: #050505;
    --mj-ink: #111111;
    --mj-muted: #676767;
    --mj-line: rgba(0, 0, 0, 0.08);
    --mj-soft: #f5f5f2;
    --mj-white: #ffffff;
    --mj-radius: 24px;
    --mj-radius-lg: 34px;
    --mj-shadow: 0 24px 80px rgba(0, 0, 0, 0.09);
    --mj-shadow-strong: 0 34px 110px rgba(0, 0, 0, 0.16);
    --mj-container: 1430px;
}

.mj-section,
.mj-section-tight,
.mj-cta-band {
    position: relative;
    color: var(--mj-ink);
    font-family: Inter, Manrope, Arial, sans-serif;
}

.mj-section {
    padding: 60px 0;
}

.mj-section-tight {
    padding: 58px 0;
}

.mj-container {
    width: min(var(--mj-container), calc(100% - 56px));
    margin-inline: auto;
}

.mj-center {
    text-align: center;
}

.mj-mt {
    margin-top: 34px;
}

.mj-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    color: #202020;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.mj-section-head {
    max-width: 1000px;
    margin-bottom: 42px;
}

.mj-section-head.mj-center {
    margin-inline: auto;
}

.mj-section-head.mj-split {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 36px;
}

.mj-section-head h2,
.mj-process-intro h2,
.mj-review-main h2,
.mj-cta-inner h2 {
    margin: 0 0 16px;
    font-size: clamp(42px, 5vw, 55px);
    line-height: 0.9;
    font-weight: 950;
    letter-spacing: -0.075em;
}

.mj-section-head p,
.mj-process-intro p,
.mj-cta-inner p {
    margin: 0;
    color: var(--mj-muted);
    font-size: 17px;
    line-height: 1.75;
    letter-spacing: -0.02em;
}

.mj-btn,
.mj-text-link,
.mj-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.mj-btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 14px;
    border: 1px solid transparent;
}

.mj-btn:hover,
.mj-text-link:hover,
.mj-card-link:hover {
    transform: translateY(-2px);
}

.mj-btn-dark {
    background: var(--mj-black);
    color: var(--mj-white);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.mj-btn-light {
    background: #ffffff;
    color: #050505;
    border-color: var(--mj-line);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.mj-btn-white {
    background: #ffffff;
    color: #050505;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.mj-text-link {
    color: #111111;
    white-space: nowrap;
}

.mj-univers {
    overflow: hidden;
    background:
            radial-gradient(circle at 12% 18%, rgba(0, 0, 0, 0.05), transparent 30%),
            linear-gradient(180deg, #ffffff 0%, #f7f7f4 100%);
}

.mj-universe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mj-universe-card {
    position: relative;
    min-height: 280px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid var(--mj-line);
    border-radius: var(--mj-radius-lg);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(14px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.mj-universe-card::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.045);
    transition: transform 0.35s ease;
}

.mj-universe-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 0, 0, 0.16);
    box-shadow: var(--mj-shadow-strong);
}

.mj-universe-card:hover::after {
    transform: scale(1.35);
}

.mj-universe-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #050505;
    color: #ffffff;
    font-size: 26px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.mj-universe-card h3 {
    margin: 26px 0 12px;
    font-size: 26px;
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 950;
}

.mj-universe-card p {
    margin: 0;
    color: var(--mj-muted);
    font-size: 15px;
    line-height: 1.65;
}

.mj-card-link {
    margin-top: 26px;
    color: #111111;
    align-self: flex-start;
}

.mj-process {
    overflow: hidden;
    background:
            linear-gradient(135deg, rgba(5, 5, 5, 0.96), rgba(24, 24, 24, 0.96)),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 34%);
    color: #ffffff;
}

.mj-process .mj-kicker,
.mj-process h2,
.mj-process-intro p {
    color: #ffffff;
}

.mj-process-intro p {
    color: rgba(255, 255, 255, 0.72);
}

.mj-process-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 62px;
    align-items: center;
}


.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
    width: 30px;
    opacity: 1;
}
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:nth-child(n+7) {
    display: none;
}
.mj-process-intro .mj-btn {
    margin-top: 32px;
}
.mj-process .mj-btn-dark {
    background: #ffffff;
    color: #050505;
}

.mj-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.mj-step {
    min-height: 260px;
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.mj-step span {
    display: inline-flex;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 950;
    letter-spacing: -0.06em;
    font-size: 38px;
}

.mj-step i {
    float: right;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #ffffff;
    color: #050505;
    font-size: 22px;
}

.mj-step h3 {
    clear: both;
    margin: 0 0 12px;
    font-size: 24px;
    letter-spacing: -0.045em;
}

.mj-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.62;
}

.mj-featured {
    background: #ffffff;
}

.mj-featured-grid {
    display: grid;
    grid-template-columns: 1.15fr repeat(2, 0.925fr);
    gap: 22px;
}

.mj-featured-card {
    overflow: hidden;
    border: 1px solid var(--mj-line);
    border-radius: var(--mj-radius-lg);
    background: #ffffff;
    box-shadow: var(--mj-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.mj-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--mj-shadow-strong);
}

.mj-featured-large {
    grid-row: span 2;
}

.mj-featured-media {
    position: relative;
    aspect-ratio: 1.08 / 1;
    overflow: hidden;
    background: #f1f1ee;
}

.mj-featured-large .mj-featured-media {
    aspect-ratio: 1 / 1.05;
}

.mj-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.mj-featured-card:hover .mj-featured-media img {
    transform: scale(1.04);
}

.mj-featured-media span {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #111111;
    font-size: 12px;
    font-weight: 950;
    backdrop-filter: blur(10px);
}

.mj-featured-content {
    padding: 26px;
}

.mj-product-type {
    display: inline-flex;
    margin: 0 0 12px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #f1f1ef;
    color: #333333;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.mj-featured-content h3 {
    margin: 0 0 14px;
    font-size: 27px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.mj-featured-content ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
    color: #555555;
    font-size: 14px;
}

.mj-featured-content li {
    position: relative;
    padding-left: 18px;
}

.mj-featured-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #111111;
}

.mj-quote-product {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 14px;
    background: #050505;
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
    cursor: pointer;
}

.mj-realisations {
    background:
            radial-gradient(circle at 90% 8%, rgba(0, 0, 0, 0.06), transparent 28%),
            linear-gradient(180deg, #f7f7f4 0%, #ffffff 100%);
}

.mj-filters {
    margin: 0 auto 34px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.mj-filters button {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--mj-line);
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.mj-filters button:hover,
.mj-filters button.active {
    transform: translateY(-2px);
    background: #050505;
    color: #ffffff;
}

.mj-real-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.mj-real-grid article {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    border-radius: 28px;
    background: #111111;
    box-shadow: var(--mj-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.mj-real-grid article:hover {
    transform: translateY(-8px);
    box-shadow: var(--mj-shadow-strong);
}

.mj-real-grid article.hide {
    display: none;
}

.mj-real-grid img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    opacity: 0.92;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.mj-real-grid article:hover img {
    transform: scale(1.06);
    opacity: 0.78;
}

.mj-real-grid article div {
    position: absolute;
    inset: auto 18px 18px 18px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
}

.mj-real-grid span {
    display: inline-flex;
    margin-bottom: 9px;
    color: #555555;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.mj-real-grid h3 {
    margin: 0 0 7px;
    font-size: 19px;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.mj-real-grid p {
    margin: 0;
    color: #626262;
    font-size: 13px;
    line-height: 1.45;
}
.mj-realisations {
    position: relative;
    overflow: hidden;
    background:
            radial-gradient(circle at 92% 10%, rgba(0, 0, 0, 0.075), transparent 28%),
            radial-gradient(circle at 8% 72%, rgba(0, 0, 0, 0.045), transparent 30%),
            linear-gradient(180deg, #ffffff 0%, #f5f5f2 48%, #ffffff 100%);
}

.mj-realisations::before {
    content: "";
    position: absolute;
    inset: 72px auto auto 50%;
    width: 760px;
    height: 760px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.055), transparent 64%);
    pointer-events: none;
}

.mj-real-toolbar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 38px;
}

.mj-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mj-filters button {
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #111111;
    font-weight: 900;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.055);
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.mj-filters button:hover,
.mj-filters button.active {
    transform: translateY(-2px);
    background: #050505;
    color: #ffffff;
    border-color: #050505;
}

.mj-real-controls {
    display: flex;
    gap: 10px;
    flex: none;
}

.mj-real-controls button {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 50%;
    background: #ffffff;
    color: #050505;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.mj-real-controls button:hover {
    transform: translateY(-2px);
    background: #050505;
    color: #ffffff;
}

.mj-real-slider-wrap {
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.mj-real-swiper {
    padding: 10px 34px 64px;
    overflow: visible;
}

.mj-real-card {
    height: auto;
}

.mj-real-open {
    position: relative;
    width: 100%;
    min-height: 570px;
    display: block;
    overflow: hidden;
    border: 0;
    border-radius: 34px;
    padding: 0;
    background: #111111;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.13);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.mj-real-card:hover .mj-real-open {
    transform: translateY(-8px);
    box-shadow: 0 36px 110px rgba(0, 0, 0, 0.22);
}

.mj-real-open::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.08) 36%, rgba(0, 0, 0, 0.78) 100%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18), transparent 32%);
    z-index: 1;
}

.mj-real-open img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    object-position: right bottom;
    transform: scale(1.01);
    transition: transform 0.42s ease, opacity 0.42s ease;
}

.mj-real-card:hover img {
    transform: scale(1.07);
    opacity: 0.9;
}

.mj-real-label {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #111111;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.mj-real-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    color: #111111;
    backdrop-filter: blur(16px);
}

.mj-real-content h3 {
    margin: 0 0 8px;
    font-size: 25px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.mj-real-content p {
    margin: 0 0 14px;
    color: #5c5c5c;
    font-size: 14px;
    line-height: 1.52;
}

.mj-real-content span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #050505;
    font-size: 13px;
    font-weight: 950;
}

.mj-real-pagination {
    bottom: 18px !important;
}

.mj-real-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #111111;
    opacity: 0.18;
    transition: width 0.25s ease, opacity 0.25s ease;
}

.mj-real-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 999px;
    opacity: 1;
}

.mj-real-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.mj-real-modal.is-open {
    display: flex;
}

.mj-real-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: blur(14px);
}

.mj-real-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(1120px, 100%);
    max-height: min(820px, calc(100vh - 56px));
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    overflow: hidden;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 44px 140px rgba(0, 0, 0, 0.34);
}

.mj-real-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #050505;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.mj-real-modal-media {
    min-height: 620px;
    background: #f1f1ef;
}

.mj-real-modal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mj-real-modal-content {
    padding: 56px 46px;
    overflow: auto;
}

.mj-real-modal-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 9px 13px;
    border-radius: 999px;
    background: #f1f1ef;
    color: #111111;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.mj-real-modal-content h3 {
    margin: 0 0 18px;
    color: #080808;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 0.9;
    font-weight: 950;
    letter-spacing: -0.075em;
}

.mj-real-modal-content p {
    margin: 0;
    color: #5f5f5f;
    font-size: 17px;
    line-height: 1.7;
}

.mj-real-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 28px 0 34px;
}

.mj-real-modal-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    background: #f4f4f2;
    color: #333333;
    font-size: 13px;
    font-weight: 850;
}

.mj-real-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mj-real-modal-actions .mj-btn {
    min-height: 52px;
}

body.mj-modal-lock {
    overflow: hidden;
}
.mj-real-pagination {
    margin: 2em auto;
    text-align: center;
}
@media (max-width: 1024px) {
    .mj-real-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .mj-real-controls {
        align-self: flex-end;
    }

    .mj-real-modal-dialog {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .mj-real-modal-media {
        min-height: 380px;
        max-height: 46vh;
    }

    .mj-real-modal-content {
        padding: 34px 28px;
    }
}

@media (max-width: 760px) {
    .mj-real-swiper {
        padding: 8px 18px 58px;
    }

    .mj-real-open {
        min-height: 500px;
        border-radius: 26px;
    }

    .mj-real-open img {
        height: 500px;
    }

    .mj-real-content {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 18px;
        border-radius: 20px;
    }

    .mj-real-content h3 {
        font-size: 22px;
    }

    .mj-real-modal {
        padding: 12px;
        align-items: flex-end;
    }

    .mj-real-modal-dialog {
        width: 100%;
        max-height: calc(100vh - 24px);
        border-radius: 26px 26px 0 0;
    }

    .mj-real-modal-media {
        min-height: 300px;
        max-height: 38vh;
    }

    .mj-real-modal-actions {
        flex-direction: column;
    }

    .mj-real-modal-actions .mj-btn {
        width: 100%;
    }
}
.mj-reviews {
    position: relative;
    overflow: hidden;
    background:
            radial-gradient(circle at 12% 18%, rgba(0, 0, 0, 0.055), transparent 32%),
            radial-gradient(circle at 90% 10%, rgba(0, 0, 0, 0.05), transparent 30%),
            linear-gradient(180deg, #ffffff 0%, #f7f7f4 52%, #ffffff 100%);
}

.mj-reviews::before {
    content: "";
    position: absolute;
    right: -220px;
    top: 80px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.07), transparent 66%);
    pointer-events: none;
}

.mj-google-reviews-header {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 42px;
    align-items: end;
    margin-bottom: 46px;
}

.mj-google-reviews-header h2 {
    max-width: 820px;
    margin: 0 0 18px;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.9;
    font-weight: 950;
    letter-spacing: -0.075em;
}

.mj-google-reviews-header p {
    max-width: 760px;
    margin: 0;
    color: #666666;
    font-size: 17px;
    line-height: 1.72;
}

.mj-google-score {
    min-height: 190px;
    padding: 26px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 75px rgba(0, 0, 0, 0.09);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    gap: 20px;
}

.mj-google-icon {
    width: 68px;
    height: 68px;
    flex: none;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: #050505;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.mj-google-score strong {
    display: block;
    margin-bottom: 8px;
    font-size: 42px;
    line-height: 0.9;
    font-weight: 950;
    letter-spacing: -0.075em;
}

.mj-stars {
    display: inline-flex;
    color: #f0b400;
    font-size: 24px;
    letter-spacing: 0.08em;
}

.mj-google-score p {
    margin: 8px 0 0;
    color: #666666;
    font-size: 14px;
    font-weight: 700;
}

.mj-google-reviews-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr repeat(2, 1fr);
    gap: 20px;
}

.mj-google-review-card {
    position: relative;
    min-height: 280px;
    padding: 26px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 58px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(14px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.mj-google-review-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 0, 0, 0.16);
    box-shadow: 0 32px 95px rgba(0, 0, 0, 0.14);
}

.mj-google-review-card.featured {
    grid-row: span 2;
    min-height: 580px;
    padding: 34px;
    background:
            radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.12), transparent 32%),
            linear-gradient(135deg, #070707, #1b1b1b);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mj-google-review-card.featured::after {
    content: "“";
    position: absolute;
    right: 34px;
    bottom: 12px;
    font-size: 180px;
    line-height: 0.8;
    font-weight: 950;
    color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.mj-review-top {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 22px;
}

.mj-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f1f1ef;
    color: #111111;
    font-weight: 950;
    font-size: 20px;
}

.mj-google-review-card.featured .mj-avatar {
    background: #ffffff;
    color: #050505;
}

.mj-review-top h3 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.mj-review-top p {
    margin: 0;
    color: #777777;
    font-size: 13px;
    font-weight: 800;
}

.mj-google-review-card.featured .mj-review-top p {
    color: rgba(255, 255, 255, 0.64);
}

.mj-review-top i {
    color: #4285f4;
    font-size: 22px;
}

.mj-google-review-card > p {
    margin: 18px 0 0;
    color: #444444;
    font-size: 15px;
    line-height: 1.72;
}

.mj-google-review-card.featured > p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 22px;
    line-height: 1.65;
    letter-spacing: -0.035em;
}

.mj-google-review-card.featured .mj-stars {
    font-size: 46px;
}
.mj-google-review-card.featured {
    display: flex;
    justify-content: center;
}
.mj-google-reviews-footer {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    padding: 26px 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 58px rgba(0, 0, 0, 0.065);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mj-google-reviews-footer strong {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.mj-google-reviews-footer p {
    margin: 0;
    color: #666666;
    line-height: 1.55;
}
.mj-google-review-card.featured {
    position: relative;
    overflow: hidden;
}

.mj-google-review-card.featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/logo-mj2r-trsp.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: min(62%, 420px) auto;
    filter: brightness(0) invert(1);
    opacity: 0.075;
    z-index: 0;
    pointer-events: none;
}

.mj-google-review-card.featured > * {
    position: relative;
    z-index: 2;
}

.mj-google-review-card.featured::after {
    z-index: 1;
}
@media (max-width: 1180px) {
    .mj-google-reviews-header {
        grid-template-columns: 1fr;
    }

    .mj-google-score {
        max-width: 380px;
    }

    .mj-google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mj-google-review-card.featured {
        grid-column: 1 / -1;
        min-height: 360px;
    }
}

@media (max-width: 760px) {
    .mj-google-reviews-header h2 {
        font-size: clamp(38px, 12vw, 56px);
    }

    .mj-google-reviews-grid {
        grid-template-columns: 1fr;
    }

    .mj-google-review-card,
    .mj-google-review-card.featured {
        min-height: auto;
        border-radius: 24px;
        padding: 24px;
    }

    .mj-google-review-card.featured > p {
        font-size: 18px;
    }

    .mj-review-top {
        grid-template-columns: 52px 1fr auto;
    }

    .mj-avatar {
        width: 52px;
        height: 52px;
    }

    .mj-google-reviews-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .mj-google-reviews-footer .mj-btn {
        width: 100%;
    }
}

.mj-reassurance {
    background: #ffffff;
}

.mj-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--mj-line);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06);
}

.mj-reassurance-grid article {
    padding: 30px;
    border-right: 1px solid var(--mj-line);
}

.mj-reassurance-grid article:last-child {
    border-right: 0;
}

.mj-reassurance-grid i {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: #050505;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 21px;
}

.mj-reassurance-grid h3 {
    margin: 0 0 8px;
    font-size: 20px;
    letter-spacing: -0.04em;
}

.mj-reassurance-grid p {
    margin: 0;
    color: var(--mj-muted);
    line-height: 1.55;
    font-size: 14px;
}

.mj-cta-band {
    padding: 42px 0;
}

.mj-cta-inner {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 56px 64px;
    border-radius: 0;
    background:
            radial-gradient(circle at 88% 28%, rgba(255, 255, 255, 0.11), transparent 28%),
            linear-gradient(135deg, #050505, #181818);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.mj-cta-inner .mj-kicker,
.mj-cta-inner h2 {
    color: #ffffff;
}

.mj-cta-inner p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.7);
}

.mj-contact {
    background:
            radial-gradient(circle at 88% 10%, rgba(0, 0, 0, 0.055), transparent 30%),
            linear-gradient(180deg, #ffffff, #f7f7f4);
}

.mj-contact-grid {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 38px;
    align-items: start;
}

.mj-contact-card,
.mj-quote-form {
    border: 1px solid var(--mj-line);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--mj-shadow);
    backdrop-filter: blur(14px);
}

.mj-contact-card {
    position: sticky;
    top: 130px;
    padding: 28px;
    display: grid;
    gap: 22px;
}



.mj-contact-logo img {
    width: 100%;
    height: auto;
}

.mj-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mj-contact-item i {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: #050505;
    color: #ffffff;
    display: grid;
    place-items: center;
    flex: none;
}

.mj-contact-item p {
    margin: 0;
    color: #555555;
    line-height: 1.55;
}

.mj-contact-item strong {
    color: #111111;
}

.mj-quote-form {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.mj-quote-form label {
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: #222222;
    font-size: 13px;
    font-weight: 900;
}

.mj-quote-form input,
.mj-quote-form select,
.mj-quote-form textarea {
    width: 100%;
    border: 1px solid var(--mj-line);
    border-radius: 14px;
    padding: 16px 17px;
    background: #ffffff;
    color: #111111;
    font: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mj-quote-form input:focus,
.mj-quote-form select:focus,
.mj-quote-form textarea:focus {
    border-color: #111111;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.055);
}

.mj-quote-form .full {
    grid-column: 1 / -1;
}

.mj-upload-zone {
    grid-row: span 2;
}

.mj-upload-zone input {
    display: none;
}

.mj-upload-zone span {
    min-height: 156px;
    border: 1px dashed #bdbdb7;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #555555;
    font-weight: 800;
    background: #fbfbfa;
    padding: 20px;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.mj-upload-zone span:hover,
.mj-upload-zone.is-dragover span {
    border-color: #111111;
    background: #f3f3f0;
}

.mj-upload-zone i {
    font-size: 30px;
    color: #111111;
}

.mj-upload-zone small {
    color: #777777;
    font-size: 12px;
}

.mj-submit-btn {
    grid-column: 2;
    min-height: 56px;
    border: 0;
    border-radius: 16px;
    background: #050505;
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}
.mj-contact {
    position: relative;
    overflow: hidden;
    background:
            radial-gradient(circle at 88% 12%, rgba(0, 0, 0, 0.055), transparent 30%),
            radial-gradient(circle at 10% 78%, rgba(0, 0, 0, 0.04), transparent 32%),
            linear-gradient(180deg, #ffffff 0%, #f7f7f4 100%);
}

.mj-contact-grid {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 38px;
    align-items: start;
}

.mj-contact-card,
.mj-contact-form {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.09);
    backdrop-filter: blur(14px);
}

.mj-contact-card {
    position: sticky;
    top: 130px;
    padding: 28px;
    display: grid;
    gap: 22px;
}

.mj-contact-logo {
    padding: 20px;
}

.mj-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mj-contact-item i {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: #050505;
    color: #ffffff;
    display: grid;
    place-items: center;
    flex: none;
}

.mj-contact-item p {
    margin: 0;
    color: #555555;
    line-height: 1.55;
}

.mj-contact-item strong {
    color: #111111;
}

.mj-contact-item a {
    color: inherit;
    text-decoration: none;
}

.mj-contact-item a:hover {
    color: #050505;
}

.mj-contact-facebook {
    min-height: 52px;
    border-radius: 16px;
    background: #050505;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mj-contact-facebook:hover {
    transform: translateY(-2px);
    background: #1b1b1b;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.mj-contact-form {
    padding: 30px;
    display: grid;
    gap: 18px;
}

.mj-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.mj-contact-form label {
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: #222222;
    font-size: 13px;
    font-weight: 900;
}

.mj-contact-form input,
.mj-contact-form select,
.mj-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 16px 17px;
    background: #ffffff;
    color: #111111;
    font: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mj-contact-form textarea {
    resize: vertical;
    min-height: 170px;
}

.mj-contact-form input:focus,
.mj-contact-form select:focus,
.mj-contact-form textarea:focus {
    border-color: #111111;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.055);
}

.mj-form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 6px;
}

.mj-form-bottom p {
    max-width: 520px;
    margin: 0;
    color: #777777;
    font-size: 13px;
    line-height: 1.55;
}

.mj-submit-btn {
    min-height: 56px;
    padding: 0 24px;
    border: 0;
    border-radius: 16px;
    background: #050505;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 950;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mj-submit-btn:hover {
    transform: translateY(-2px);
    background: #1b1b1b;
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1180px) {
    .mj-contact-grid {
        grid-template-columns: 1fr;
    }

    .mj-contact-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .mj-contact-card,
    .mj-contact-form {
        border-radius: 24px;
    }

    .mj-form-row {
        grid-template-columns: 1fr;
    }

    .mj-form-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .mj-submit-btn {
        width: 100%;
    }

    .mj-contact-facebook {
        width: 100%;
    }
}
@media (max-width: 1180px) {
    .mj-section-head.mj-split,
    .mj-process-layout,
    .mj-review-layout,
    .mj-contact-grid {
        grid-template-columns: 1fr;
    }

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

    .mj-universe-grid,
    .mj-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }

    .mj-featured-grid,
    .mj-real-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mj-featured-large {
        grid-row: auto;
    }

    .mj-reassurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mj-reassurance-grid article:nth-child(2) {
        border-right: 0;
    }

    .mj-reassurance-grid article {
        border-bottom: 1px solid var(--mj-line);
    }

    .mj-contact-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .mj-container {
        width: min(100% - 28px, var(--mj-container));
    }

    .mj-section {
        padding: 72px 0;
    }

    .mj-section-tight {
        padding: 36px 0;
    }

    .mj-section-head h2,
    .mj-process-intro h2,
    .mj-review-main h2,
    .mj-cta-inner h2 {
        font-size: clamp(38px, 12vw, 56px);
    }

    .mj-section-head p,
    .mj-process-intro p,
    .mj-cta-inner p {
        font-size: 16px;
    }

    .mj-universe-grid,
    .mj-steps,
    .mj-featured-grid,
    .mj-real-grid,
    .mj-testimonials,
    .mj-reassurance-grid,
    .mj-quote-form {
        grid-template-columns: 1fr;
    }

    .mj-universe-card,
    .mj-step,
    .mj-featured-card,
    .mj-product-reviews,
    .mj-contact-card,
    .mj-quote-form {
        border-radius: 24px;
    }

    .mj-real-grid article,
    .mj-real-grid img {
        min-height: 360px;
    }

    .mj-reassurance-grid article,
    .mj-reassurance-grid article:nth-child(2) {
        border-right: 0;
    }

    .mj-cta-inner {
        min-height: auto;
        padding: 36px 26px;
        flex-direction: column;
        align-items: flex-start;
    }

    .mj-submit-btn {
        grid-column: 1;
    }
}

@media (max-width: 430px) {
    .mj-filters {
        justify-content: flex-start;
    }

    .mj-filters button {
        min-height: 40px;
        padding: 0 14px;
        font-size: 12px;
    }

    .mj-mini-head {
        flex-direction: column;
    }
}
@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .site-header.nav-open .main-nav {
        position: absolute;
        top: 124px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
        padding: 16px 22px 22px;
    }

    .site-header.nav-open .main-nav a {
        padding: 17px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .site-header.nav-open .main-nav a::after {
        display: none;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero-copy h1 {
        max-width: 900px;
    }

    .hero-text {
        max-width: 780px;
    }

    .hero-visual {
        max-width: 900px;
    }

    .universe-grid,
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .real-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .review-layout {
        grid-template-columns: 1fr;
    }

    .reassurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reassurance-grid article {
        border-bottom: 1px solid var(--line);
    }

    .reassurance-grid article:nth-child(2) {
        border-right: 0;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mini-catalogue .section-head.split {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalogue-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .topbar-inner {
        min-height: auto;
        padding: 9px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .topbar-left,
    .topbar-right {
        gap: 12px;
    }

    .topbar a,
    .topbar span {
        font-size: 11px;
    }

    .header-inner {
        height: 76px;
    }

    .brand img {
        width: 118px;
    }

    .site-header.nav-open .main-nav {
        top: 132px;
    }

    .hero {
        padding: 44px 0 52px;
    }

    .hero-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 0.18em;
    }

    .hero-copy h1 {
        font-size: 45px;
        letter-spacing: -0.055em;
    }

    .hero-text {
        font-size: 17px;
        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;
        margin-bottom: 32px;
    }

    .btn {
        width: 100%;
    }

    .hero-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .hero-trust div {
        border: 0;
        margin: 0;
        padding: 0;
    }

    .hero-frame img {
        transform: scale(1.1);
    }

    .visual-badge {
        left: 16px;
        right: auto;
        bottom: 16px;
        font-size: 12px;
    }

    .section {
        padding: 62px 0;
    }

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

    .mini-catalogue {
        padding: 76px 0 72px;
    }

    .section-title-block h2 {
        font-size: clamp(42px, 13vw, 64px);
    }

    .section-title-block p {
        font-size: 16px;
    }

    .catalogue-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalogue-count {
        width: 100%;
    }

    .catalogue-full-slider {
        margin-top: 32px;
    }

    .catalogue-swiper {
        padding: 12px 18px 58px;
    }

    .mini-catalogue .product-content {
        padding: 21px 19px 23px;
    }

    .mini-catalogue .product-content h3 {
        font-size: 20px;
    }

    .example-badge,
    .view-badge {
        font-size: 10px;
    }

    .example-badge {
        top: 22px;
        left: 22px;
    }

    .view-badge {
        right: 22px;
        bottom: 22px;
    }

    .universe-grid,
    .featured-grid,
    .real-grid,
    .testimonial-grid,
    .reassurance-grid,
    .quote-form,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .steps::before {
        display: none;
    }

    .steps article {
        padding: 20px;
    }

    .real-grid img {
        height: 260px;
    }

    .cta-inner {
        padding: 34px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-inner h2 {
        font-size: 32px;
    }

    .submit-btn {
        grid-column: 1;
    }

    .copyright {
        flex-direction: column;
        gap: 10px;
    }

    .reassurance-grid article {
        border-right: 0 !important;
    }
}

@media (max-width: 420px) {
    .hero-copy h1 {
        font-size: 38px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        width: 100%;
    }

    .catalogue-filters {
        gap: 8px;
    }

    .catalogue-filter {
        padding: 11px 14px;
        font-size: 12px;
    }
}