/* =============================================
   RIELT ESTATE — Premium Design System
   Mobile-First
   ============================================= */

:root {
    --cream: #F6F3ED;
    --cream-dark: #EDE9E1;
    --white: #FFFFFF;
    --dark: #0F0F0F;
    --dark-2: #1A1A1A;
    --text: #111111;
    --muted: #6B6B6B;
    --gold: #A98445;
    --gold-light: rgba(169, 132, 69, 0.12);
    --gold-hover: #8C6C35;
    --border: rgba(0, 0, 0, 0.09);
    --border-d: rgba(255, 255, 255, 0.09);
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 20px;
    --px: 20px;
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--px);
}

/* --- Type --- */
h1 {
    font-size: clamp(36px, 9vw, 80px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

h3 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

p {
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.65;
    color: var(--muted);
}

.eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.eyebrow--gold {
    color: #C5A059;
    /* Чуть более светлый и насыщенный золотой для контраста */
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
    height: 46px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: background .3s var(--ease), transform .2s, box-shadow .3s;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.97);
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 16px rgba(169, 132, 69, 0.22);
}

.btn-gold:hover {
    background: var(--gold-hover);
    box-shadow: 0 6px 24px rgba(169, 132, 69, 0.32);
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--text);
    color: #fff;
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-1px);
}

.btn-outline-dark {
    background: transparent;
    border: 1.5px solid var(--text);
    color: var(--text);
    width: 100%;
}

.btn-outline-dark:hover {
    background: var(--text);
    color: #fff;
}

.btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    width: 100%;
}

.btn-outline-light:hover {
    border-color: #fff;
}

.btn-hero {
    height: 54px;
    padding: 0 36px;
    font-size: 16px;
}

.btn-lg {
    height: 54px;
    padding: 0 36px;
    font-size: 16px;
}

/* --- Sections --- */
.section {
    padding: 88px 0;
}

.section--light {
    background: var(--white);
}

.section--cream {
    background: var(--cream);
}

.section--dark {
    background: var(--dark);
    color: #fff;
}

.section--dark h2,
.section--dark h3 {
    color: #fff;
}

.section--dark p {
    color: rgba(255, 255, 255, 0.6);
}

.section__head {
    margin-bottom: 52px;
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 900;
    padding: 22px 0;
    transition: background .4s var(--ease), padding .4s, border-color .4s;
    border-bottom: 1px solid var(--border);
    background: rgba(246, 243, 237, 0.94);
    backdrop-filter: blur(18px);
}

.header.scrolled {
    padding: 14px 0;
}

.header__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: clamp(18px, 5vw, 22px);
    font-weight: 800;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.logo span {
    color: var(--gold);
    margin-left: 4px;
}

.logo--muted {
    color: rgba(255, 255, 255, 0.5);
}

.logo--muted span {
    color: var(--gold);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__phone {
    font-size: 15px;
    font-weight: 600;
    display: none;
}

/* Ссылка-кнопка в шапке (без фона) */
.header__cta-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 100px;
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    transition: background .3s, border-color .3s;
    white-space: nowrap;
}

.header__cta-link:hover {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

/* В scrolled-шапке выглядит аккуратно */
.header.scrolled .header__cta-link {
    border-color: rgba(0, 0, 0, 0.22);
}

.cta-pc {
    display: inline;
}

.cta-mobile {
    display: none;
}

@media (max-width: 480px) {
    .cta-pc {
        display: none;
    }

    .cta-mobile {
        display: inline;
    }
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    color: #fff;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease-out;
}

.hero.loaded .hero__bg {
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.20) 0%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 0, 0, 0.88) 100%);
}

/* Дополнительное затемнение снизу — там где текст */
.hero__text-shadow {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 60% at 0% 100%,
            rgba(0, 0, 0, 0.55) 0%,
            transparent 70%);
}

.hero__grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero__container {
    position: relative;
    z-index: 4;
    padding-top: 120px;
    padding-bottom: 72px;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.hero__content {
    max-width: 680px;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero__sub {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero__sub strong {
    color: #fff;
}

.hero__badge {
    flex-shrink: 0;
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--r-lg);
    padding: 24px 28px;
    display: none;
}

.hero__badge-inner {
    text-align: center;
}

.hero__badge-val {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
}

.hero__badge-lab {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 6px;
    line-height: 1.4;
}

/* Stats bar */
.hero__stats-bar {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stats {
    display: flex;
    align-items: center;
    padding: 24px 0;
    gap: 0;
}

.hero__stat {
    flex: 1;
    text-align: center;
    padding: 4px 8px;
}

.hero__stat strong {
    display: block;
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}

.hero__stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.hero__sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* =============================================
   SPLIT блоки
   ============================================= */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.split--reverse .split__media {
    order: -1;
}

.split__media {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.split__media:hover img {
    transform: scale(1.03);
}

.split__media-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--r-sm);
    padding: 14px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.split__media-badge strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
}

.split__media-badge span {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

.split__text h2 {
    margin-bottom: 16px;
}

.split__desc {
    margin-bottom: 32px;
}

.split__points {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.split__point {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

.split__point-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
    min-width: 24px;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
    border-top: 1px solid var(--border-d);
}

.service {
    display: grid;
    grid-template-columns: 44px 1fr 28px;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-d);
    text-decoration: none;
    color: #fff;
    transition: background .3s;
}

.service:hover {
    background: rgba(255, 255, 255, 0.03);
}

.service:hover .service__arrow {
    transform: translateX(4px);
    opacity: 1;
}

.service__num {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.service__body h3 {
    margin-bottom: 4px;
    color: #fff;
}

.service__body p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.service__arrow {
    color: var(--gold);
    opacity: 0.4;
    transition: transform .3s var(--ease), opacity .3s;
    flex-shrink: 0;
}

/* =============================================
   CATALOG
   ============================================= */
.catalog {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.pcard {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.pcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.1);
}

.pcard__media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.pcard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.pcard:hover .pcard__media img {
    transform: scale(1.06);
}

.pcard__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
}

.pcard__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 5px 14px;
    border-radius: 100px;
}

.pcard__badge--dark {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.pcard__price-float {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.pcard__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pcard__body .btn {
    margin-top: auto;
}

.pcard__district {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.pcard__body h3 {
    margin-bottom: 16px;
    font-size: 19px;
}

.pcard__row {
    display: flex;
    gap: 24px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.pcard__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pcard__meta span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    font-weight: 600;
}

.pcard__meta strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.pcard__promo {
    font-size: 13px;
    font-weight: 500;
    color: #2A7A38;
    margin-bottom: 18px;
    line-height: 1.4;
}

/* =============================================
   CONDITIONS
   ============================================= */
.conditions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 48px;
}

.condition {
    padding: 44px 28px;
    transition: background .3s;
}

.condition:hover {
    background: rgba(255, 255, 255, 0.03);
}

.condition strong {
    display: block;
    font-size: clamp(40px, 7vw, 60px);
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 12px;
}

.condition p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* =============================================
   TRUST
   ============================================= */
.trust-nums {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 32px 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-radius: var(--r-sm);
    overflow: hidden;
}

.trust-num {
    padding: 24px 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-num strong {
    display: block;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1;
    margin-bottom: 6px;
}

.trust-num span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

.trust-note {
    font-size: 13px;
    color: var(--muted);
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 4px;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 48px;
}

.review {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 36px 32px;
    border: 1px solid var(--border);
    transition: transform .3s var(--ease), box-shadow .3s;
}

.review:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.review blockquote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin-bottom: 24px;
    border: none;
    padding: 0;
}

.review__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review__ava {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review__author strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.review__author span {
    font-size: 13px;
    color: var(--muted);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    border-top: 1px solid var(--border);
}

.faq__item {
    border-bottom: 1px solid var(--border);
}

.faq__q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq__q span {
    font-size: 22px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .35s var(--ease);
    line-height: 1;
}

.faq__item.open .faq__q span {
    transform: rotate(45deg);
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}

.faq__a p {
    padding-bottom: 20px;
    font-size: 15px;
}

.faq__item.open .faq__a {
    max-height: 200px;
}

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    color: #fff;
    padding: 100px 0;
}

.cta-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.cta-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.97) 40%, rgba(15, 15, 15, 0.7) 100%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

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

.cta__info h2 {
    color: #fff;
    margin-bottom: 14px;
}

.cta__info p {
    margin-bottom: 28px;
}

.cta__phone {
    display: block;
    font-size: clamp(26px, 5vw, 38px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1;
    transition: color .3s;
}

.cta__phone:hover {
    color: var(--gold);
}

.cta__form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-lg);
    padding: 36px 28px;
}

.form-group {
    margin-bottom: 14px;
}

input,
select,
textarea {
    width: 100%;
    height: 54px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-sm);
    font-size: 15px;
    font-family: inherit;
    color: #fff;
    outline: none;
    transition: border-color .3s;
    appearance: none;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

input:focus,
select:focus {
    border-color: var(--gold);
}

select option {
    background: var(--dark);
    color: #fff;
}

.cta__form .btn {
    margin-top: 6px;
    width: 100%;
}

.form-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 14px;
    text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 44px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer__inner p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

.footer__links {
    display: flex;
    gap: 20px;
}

.footer__links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    transition: color .3s;
}

.footer__links a:hover {
    color: var(--gold);
}

/* =============================================
   STICKY CTA
   ============================================= */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    padding: 10px var(--px) calc(10px + env(safe-area-inset-bottom));
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    transition: opacity .3s, transform .3s;
}

.sticky-cta.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
}

.sticky-cta__inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-cta__btn {
    flex: 1;
}

.sticky-cta__close {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}

.sticky-cta__close:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal-up,
.reveal-fade {
    opacity: 0;
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal-up {
    transform: translateY(32px);
}

.reveal-fade {
    transform: none;
}

.reveal-up.active,
.reveal-fade.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up[style*="--delay"],
.reveal-fade[style*="--delay"] {
    transition-delay: var(--delay, 0s);
}

/* =============================================
   DESKTOP (768px+)
   ============================================= */
@media (min-width:768px) {
    :root {
        --px: 40px;
    }

    .header__phone {
        display: block;
    }

    .hero__badge {
        display: block;
    }

    .hero__bg {
        background-position: center 30%;
    }

    .split {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .split--reverse .split__media {
        order: 0;
    }

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

    .reviews {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .reviews .review:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
    }

    .cta {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }

    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width:1024px) {
    :root {
        --px: 48px;
    }

    .section {
        padding: 110px 0;
    }

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

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

    .reviews .review:last-child {
        grid-column: auto;
        max-width: none;
    }

    .hero__container {
        padding-bottom: 88px;
    }
}

/* =============================================
   MOBILE ONLY
   ============================================= */
@media (max-width:767px) {
    .header:not(.scrolled) {
        background: transparent;
        backdrop-filter: none;
        border-color: transparent;
    }

    .footer {
        padding-bottom: calc(44px + 76px);
    }

    .sticky-cta {
        display: block;
    }

    .service {
        grid-template-columns: 36px 1fr;
    }

    .service__arrow {
        display: none;
    }

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

    .hero__stats {
        flex-wrap: wrap;
    }

    .hero__stat {
        flex: 0 0 50%;
        padding: 16px 0;
        text-align: center;
    }

    .hero__sep {
        display: none;
    }
}