/* =====================================================
   OVR Soojuspumbad — современный дизайн (mobile-first)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800;900&display=swap');

:root {
    /* Палитра */
    --c-bg:         #ffffff;
    --c-bg-soft:    #fafbfc;
    --c-bg-warm:    #fff7ee;
    --c-bg-cool:    #f0f6fd;
    --c-ink:        #0a1729;
    --c-ink-soft:   #2a3848;
    --c-muted:      #5b6b80;
    --c-line:       #e6ebf2;

    --c-primary:    #0a1729;
    --c-primary-2:  #14213d;
    --c-accent:     #ff6b1a;
    --c-accent-2:   #ffa040;
    --c-accent-soft:#ffeed8;

    --c-success:    #16a34a;
    --c-error:      #ef4444;

    /* Размеры */
    --container: 1240px;
    --radius:    14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    /* Тени (мягкие, многослойные) */
    --sh-1: 0 1px 2px rgba(10,23,41,.04), 0 1px 3px rgba(10,23,41,.04);
    --sh-2: 0 4px 12px rgba(10,23,41,.06), 0 2px 4px rgba(10,23,41,.04);
    --sh-3: 0 12px 32px -8px rgba(10,23,41,.16), 0 4px 12px rgba(10,23,41,.06);
    --sh-4: 0 30px 60px -20px rgba(10,23,41,.25), 0 8px 24px -4px rgba(10,23,41,.08);
    --sh-accent: 0 12px 36px -8px rgba(255,107,26,.45);

    /* Анимации */
    --ease: cubic-bezier(.16,1,.3,1);
}

/* ===== Reset / База ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-ink);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: var(--c-primary); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--c-accent); }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4, h5 {
    font-family: 'Manrope', 'Inter', sans-serif;
    color: var(--c-ink);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0 0 .6em;
}
h1 { font-size: clamp(1.85rem, 4vw + .5rem, 3.4rem); }
h2 { font-size: clamp(1.55rem, 2.5vw + .5rem, 2.5rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.15rem, 1vw + .8rem, 1.5rem); letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.4em; margin: 0 0 1em; }
ul li, ol li { margin-bottom: .35em; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* ===== Header / Nav ===== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid rgba(10,23,41,.06);
    transition: box-shadow .2s var(--ease);
}
.site-header__inner {
    display: flex; align-items: center;
    height: 64px;
    gap: 16px;
}
@media (min-width: 1024px) { .site-header__inner { height: 76px; } }

.brand {
    display: flex; align-items: center; gap: 12px;
    color: var(--c-ink); font-weight: 800; font-size: 1.05rem;
    text-decoration: none; flex-shrink: 0;
    min-width: 0;
}
.brand:hover { color: var(--c-ink); }
.brand__logo {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%);
    border-radius: 11px;
    display: grid; place-items: center;
    color: #fff; font-family: 'Manrope', sans-serif; font-weight: 900;
    font-size: .85rem; letter-spacing: .02em;
    box-shadow: var(--sh-2);
    position: relative; overflow: hidden;
}
.brand__logo::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,160,64,.5), transparent 60%);
}
.brand__name {
    line-height: 1.1;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    min-width: 0;
}
.brand__sub {
    display: block; font-weight: 500; font-size: .72rem;
    color: var(--c-muted); margin-top: 2px; letter-spacing: 0;
}
@media (max-width: 480px) { .brand__sub { display: none; } }

/* ===== Desktop nav ===== */
.nav-desktop {
    display: none;
    margin-left: auto;
    align-items: center; gap: 4px;
}
@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
}
.nav-desktop a {
    padding: 9px 14px; border-radius: 9px;
    color: var(--c-ink-soft); font-weight: 500; font-size: .92rem;
    transition: all .15s var(--ease);
    white-space: nowrap;
}
.nav-desktop a:hover {
    background: var(--c-bg-cool); color: var(--c-primary);
}
.nav-desktop a.active {
    color: var(--c-primary); font-weight: 600;
    background: var(--c-bg-cool);
}

/* ===== Phone / lang switch в шапке ===== */
.header-actions {
    margin-left: auto; display: flex; align-items: center; gap: 10px;
    flex-shrink: 0;
}
@media (min-width: 1024px) { .header-actions { margin-left: 16px; } }

.phone-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 12px 7px 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,107,26,.08), rgba(255,160,64,.08));
    color: var(--c-primary); font-weight: 700; font-size: .9rem;
    border: 1px solid rgba(255,107,26,.18);
    transition: all .15s var(--ease);
    white-space: nowrap;
}
.phone-pill:hover {
    background: var(--c-accent); color: #fff;
    border-color: var(--c-accent);
    transform: translateY(-1px);
    box-shadow: var(--sh-accent);
}
.phone-pill__icon {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--c-accent); color: #fff;
    display: grid; place-items: center; flex-shrink: 0;
}
.phone-pill:hover .phone-pill__icon { background: rgba(255,255,255,.2); }
.phone-pill__text { display: none; }
@media (min-width: 480px) { .phone-pill__text { display: inline; } }
@media (min-width: 480px) and (max-width: 1023px) {
    /* На средних экранах номер короче или скрыт чтобы не ломал шапку */
    .phone-pill__text { font-size: .85rem; }
}

.lang-pill {
    display: inline-flex; align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--c-line);
    background: #fff;
    color: var(--c-muted); font-weight: 700; font-size: .78rem;
    letter-spacing: .04em;
    transition: all .15s var(--ease);
}
.lang-pill:hover { border-color: var(--c-primary); color: var(--c-primary); }

/* ===== Burger ===== */
.burger {
    display: inline-grid; place-items: center;
    width: 42px; height: 42px;
    background: var(--c-bg-cool); border: 0; border-radius: 11px;
    color: var(--c-primary); cursor: pointer;
    transition: all .15s var(--ease);
}
.burger:hover { background: var(--c-primary); color: #fff; }
@media (min-width: 1024px) { .burger { display: none; } }

/* ===== Mobile menu overlay ===== */
.mobile-menu {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(10,23,41,.5);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    opacity: 0; visibility: hidden;
    transition: opacity .25s var(--ease), visibility .25s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__panel {
    position: absolute; top: 0; right: 0;
    width: min(360px, 88vw); height: 100%;
    background: #fff;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    display: flex; flex-direction: column;
    overflow-y: auto;
}
.mobile-menu.open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 28px;
}
.mobile-menu__close {
    width: 42px; height: 42px; border: 0;
    background: var(--c-bg-soft); color: var(--c-ink);
    border-radius: 11px; cursor: pointer;
    display: grid; place-items: center;
}
.mobile-menu nav { display: grid; gap: 4px; flex: 1; }
.mobile-menu nav a {
    padding: 14px 16px; border-radius: 12px;
    color: var(--c-ink); font-weight: 600; font-size: 1.05rem;
    transition: all .15s var(--ease);
    display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu nav a:hover, .mobile-menu nav a.active {
    background: var(--c-bg-cool); color: var(--c-primary);
}
.mobile-menu nav a::after {
    content: '→'; opacity: .35; transition: transform .15s;
}
.mobile-menu nav a:hover::after { transform: translateX(3px); opacity: 1; }
.mobile-menu__bottom {
    padding-top: 20px; margin-top: 20px;
    border-top: 1px solid var(--c-line);
    display: grid; gap: 12px;
}

/* ===== Hero ===== */
.hero {
    position: relative; overflow: hidden;
    background: var(--c-primary);
    color: #fff;
    padding: 50px 0 60px;
}
@media (min-width: 768px) { .hero { padding: 60px 0 70px; } }
@media (min-width: 1024px) { .hero { padding: 70px 0 80px; } }

/* Декоративный gradient mesh */
.hero::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 600px 400px at 80% 20%, rgba(255,107,26,.30), transparent 60%),
        radial-gradient(ellipse 500px 500px at 10% 80%, rgba(20,33,61,.6), transparent 60%),
        radial-gradient(ellipse 400px 300px at 90% 100%, rgba(255,160,64,.18), transparent 70%);
}
.hero::after {
    /* dotted grid texture */
    content: ''; position: absolute; inset: 0; z-index: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__grid {
    position: relative; z-index: 1;
    display: grid; gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1.3fr 1fr;
        gap: 24px;
        align-items: stretch;
    }
}

/* Мозаика правой колонки в hero */
.hero__mosaic {
    display: grid; gap: 16px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}
@media (max-width: 1023px) {
    .hero__mosaic { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 540px) {
    .hero__mosaic { grid-template-columns: 1fr; }
}

/* Мини product-promo в hero мозаике */
.hero-promo {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ee 100%);
    color: var(--c-ink);
    border-radius: var(--radius-lg);
    padding: 18px;
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    transition: all .25s var(--ease);
    position: relative; overflow: hidden;
}
.hero-promo:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-3);
    color: inherit;
}
.hero-promo__brand {
    color: var(--c-muted); font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px;
}
.hero-promo__name {
    font-family: 'Manrope', sans-serif;
    font-size: .95rem; font-weight: 700;
    color: var(--c-ink); margin-bottom: 10px;
    line-height: 1.25;
}
.hero-promo__image {
    flex: 1; min-height: 70px;
    background-size: cover; background-position: center;
    border-radius: 10px;
    margin-bottom: 10px;
    background-color: #fef1e0;
}
.hero-promo__footer {
    display: flex; align-items: baseline; gap: 8px; justify-content: space-between;
    margin-top: auto;
}
.hero-promo__price {
    font-family: 'Manrope', sans-serif;
    font-weight: 800; color: var(--c-accent); font-size: 1.05rem;
}
.hero-promo__from {
    font-size: .68rem; color: var(--c-muted);
    text-transform: uppercase; letter-spacing: .04em;
}
.hero-promo__arrow {
    color: var(--c-primary);
}

/* Большой service-баннер на 2 колонки в мозаике */
.hero-service {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    display: flex; align-items: center; gap: 16px;
    text-decoration: none;
    transition: transform .15s var(--ease);
    position: relative; overflow: hidden;
}
.hero-service:hover { transform: translateY(-3px); color: #fff; }
.hero-service::before {
    content: ''; position: absolute; right: -40px; top: -40px;
    width: 180px; height: 180px; border-radius: 50%;
    background: rgba(255,255,255,.12);
}
.hero-service__icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    background: rgba(255,255,255,.2);
    border-radius: 14px;
    display: grid; place-items: center;
    position: relative; z-index: 1;
}
.hero-service__icon svg { width: 28px; height: 28px; }
.hero-service__body { flex: 1; position: relative; z-index: 1; }
.hero-service__title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(1.15rem, 1vw + .85rem, 1.45rem);
    line-height: 1.2;
    letter-spacing: -.01em;
}
.hero-service__sub {
    font-size: clamp(.88rem, .25vw + .8rem, 1rem);
    opacity: .92;
    margin-top: 4px;
}
.hero-service__arrow {
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: grid; place-items: center;
    position: relative; z-index: 1;
}
@media (max-width: 540px) { .hero-service { grid-column: 1; } }

/* Hero left column padding */
.hero__left { display: flex; flex-direction: column; justify-content: center; }

.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px 8px 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    font-size: .82rem; font-weight: 500;
    margin-bottom: 22px;
}
.hero__badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 4px rgba(74,222,128,.2);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(74,222,128,.2); }
    50% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}

.hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw + .5rem, 4rem);
    margin-bottom: 20px;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(120deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__sub {
    font-size: clamp(1rem, .5vw + .9rem, 1.2rem);
    opacity: .85; margin-bottom: 32px;
    max-width: 540px;
}

.hero__actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero__trust {
    display: flex; flex-wrap: wrap;
    gap: 20px 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.hero__trust-item {
    display: flex; align-items: center; gap: 10px;
}
.hero__trust-num {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem; font-weight: 800;
    color: var(--c-accent-2); line-height: 1;
}
.hero__trust-lbl {
    font-size: .8rem; opacity: .75; line-height: 1.3; max-width: 110px;
}

/* Hero card — форма заявки */
.hero__form-card {
    position: relative; z-index: 1;
    background: #fff; color: var(--c-ink);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--sh-4);
}
@media (min-width: 768px) { .hero__form-card { padding: 32px; } }
.hero__form-card h3 {
    margin: 0 0 6px; font-size: 1.25rem;
}
.hero__form-card__sub {
    color: var(--c-muted); margin-bottom: 22px; font-size: .92rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 24px;
    border-radius: 12px;
    font-weight: 600; font-size: .95rem;
    border: none; cursor: pointer;
    transition: all .2s var(--ease);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}
.btn--primary {
    background: var(--c-accent);
    color: #fff !important;
    box-shadow: 0 4px 14px -2px rgba(255,107,26,.4);
}
.btn--primary:hover {
    background: var(--c-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(255,107,26,.5);
}
.btn--dark {
    background: var(--c-primary);
    color: #fff !important;
}
.btn--dark:hover {
    background: var(--c-primary-2);
    transform: translateY(-2px);
    box-shadow: var(--sh-3);
}
.btn--ghost {
    background: transparent;
    color: var(--c-primary) !important;
    border: 1.5px solid var(--c-line);
}
.btn--ghost:hover {
    background: var(--c-primary); color: #fff !important;
    border-color: var(--c-primary);
}
.btn--ghost-light {
    background: transparent;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,.3);
}
.btn--ghost-light:hover {
    background: #fff; color: var(--c-primary) !important;
    border-color: #fff;
}
.btn--lg {
    padding: 15px 28px;
    font-size: 1rem;
    border-radius: 13px;
}
.btn--block { width: 100%; }
.btn--icon { padding: 13px; width: 48px; height: 48px; }

/* ===== Sections ===== */
.section { padding: 60px 0; }
@media (min-width: 768px) { .section { padding: 90px 0; } }
@media (min-width: 1024px) { .section { padding: 110px 0; } }

.section--warm { background: var(--c-bg-warm); }
.section--cool { background: var(--c-bg-cool); }
.section--soft { background: var(--c-bg-soft); }
.section--dark { background: var(--c-primary); color: #fff; }
.section--dark h2 { color: #fff; }

.section__head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}
@media (min-width: 768px) { .section__head { margin-bottom: 64px; } }
.section__eyebrow {
    display: inline-block;
    padding: 6px 12px;
    background: var(--c-accent-soft);
    color: var(--c-accent);
    font-size: .78rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 18px;
}
.section__title { margin-bottom: 16px; }
.section__sub {
    color: var(--c-muted);
    font-size: clamp(1rem, .3vw + .95rem, 1.1rem);
    line-height: 1.6; margin: 0;
}

/* ===== Grid utilities ===== */
.grid {
    display: grid; gap: 20px;
}
@media (min-width: 768px) {
    .grid--2 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .grid--3 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .grid--4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1024px) {
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Feature cards ===== */
.feature {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--c-line);
    transition: all .25s var(--ease);
    position: relative; overflow: hidden;
}
.feature:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: var(--sh-3);
}
.feature__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--c-accent-soft), #ffd4ad);
    color: var(--c-accent);
    display: grid; place-items: center;
    margin-bottom: 20px;
    transition: transform .25s var(--ease);
}
.feature:hover .feature__icon { transform: rotate(-8deg) scale(1.05); }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { color: var(--c-muted); margin: 0; font-size: .95rem; line-height: 1.55; }

/* ===== Services cards (большие, с большой иконкой и стрелкой) ===== */
.service {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--c-line);
    transition: all .25s var(--ease);
    display: flex; flex-direction: column;
    position: relative;
}
.service:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    transform: translateY(-4px);
    box-shadow: var(--sh-3);
    color: #fff;
}
.service:hover h3, .service:hover p { color: #fff; }
.service:hover .service__icon {
    background: var(--c-accent);
    color: #fff;
}
.service__num {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem; font-weight: 900;
    color: var(--c-bg-warm); line-height: 1;
    margin-bottom: 14px;
    transition: color .25s var(--ease);
}
.service:hover .service__num { color: rgba(255,255,255,.1); }
.service__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--c-bg-cool);
    color: var(--c-primary);
    display: grid; place-items: center;
    margin: -50px 0 20px auto;
    transition: all .25s var(--ease);
}
.service__icon svg { width: 28px; height: 28px; }
.service h3 { margin-bottom: 12px; }
.service p { color: var(--c-muted); margin: 0 0 18px; font-size: .95rem; }
.service__arrow {
    margin-top: auto;
    color: var(--c-accent); font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap .2s var(--ease);
}
.service:hover .service__arrow { color: var(--c-accent-2); gap: 12px; }

/* ===== Category cards ===== */
.cat-card {
    display: block;
    background: linear-gradient(135deg, #fff 0%, var(--c-bg-cool) 100%);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: inherit; text-decoration: none;
    transition: all .25s var(--ease);
    position: relative; overflow: hidden;
}
.cat-card::before {
    content: ''; position: absolute; right: -50px; top: -50px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,26,.06), transparent 70%);
    transition: transform .4s var(--ease);
}
.cat-card:hover {
    border-color: var(--c-primary);
    transform: translateY(-3px);
    box-shadow: var(--sh-3);
    color: inherit;
}
.cat-card:hover::before { transform: scale(1.4); }
.cat-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--c-primary); color: #fff;
    display: grid; place-items: center;
    margin-bottom: 20px;
    position: relative; z-index: 1;
}
.cat-card__icon svg { width: 28px; height: 28px; }
.cat-card h3 { margin-bottom: 8px; }
.cat-card p { color: var(--c-muted); font-size: .92rem; margin: 0 0 14px; }
.cat-card__more {
    color: var(--c-accent); font-weight: 600; font-size: .9rem;
    display: inline-flex; align-items: center; gap: 4px;
    transition: gap .15s var(--ease);
}
.cat-card:hover .cat-card__more { gap: 10px; }

/* ===== Product cards ===== */
.product-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    transition: all .25s var(--ease);
    position: relative;
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: var(--sh-3);
    color: inherit;
}
.product-card__image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--c-bg-cool) 0%, #fff 100%);
    display: grid; place-items: center;
    color: var(--c-muted);
    position: relative; overflow: hidden;
}
.product-card__image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s var(--ease);
}
.product-card:hover .product-card__image img { transform: scale(1.06); }
.product-card__placeholder {
    font-size: 3rem; opacity: .25;
    color: var(--c-primary);
}
.product-card__top-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--c-accent); color: #fff;
    padding: 5px 11px; border-radius: 999px;
    font-size: .7rem; font-weight: 700; letter-spacing: .04em;
    box-shadow: var(--sh-accent);
}
.product-card__body {
    padding: 22px 22px 24px;
    display: flex; flex-direction: column; flex: 1;
}
.product-card__brand {
    color: var(--c-muted);
    font-size: .8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .05em;
    margin-bottom: 6px;
}
.product-card__name {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--c-ink); margin-bottom: 14px;
    line-height: 1.3;
}
.product-card__specs {
    display: flex; gap: 6px; flex-wrap: wrap;
    margin-bottom: 18px;
}
.product-card__spec {
    background: var(--c-bg-soft);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: .78rem; font-weight: 500;
    color: var(--c-ink-soft);
}
.product-card__footer {
    margin-top: auto; padding-top: 16px;
    border-top: 1px solid var(--c-line);
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
}
.product-card__price {
    display: flex; flex-direction: column;
    line-height: 1.1;
}
.product-card__price small {
    color: var(--c-muted); font-size: .72rem;
    margin-bottom: 2px;
}
.product-card__price strong {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem; font-weight: 800;
    color: var(--c-ink);
}
.product-card__cta {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--c-accent); font-weight: 600; font-size: .85rem;
}

/* ===== Catalog ===== */
.catalog-toolbar {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    background: #fff;
    padding: 14px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--c-line);
    margin-bottom: 30px;
}
.catalog-toolbar label {
    font-weight: 600; color: var(--c-ink-soft); font-size: .9rem;
}
.catalog-toolbar select {
    padding: 9px 14px;
    border: 1px solid var(--c-line);
    border-radius: 9px;
    background: #fff; font-size: .9rem; font-weight: 500;
    min-width: 200px; flex: 1;
    cursor: pointer;
}
.catalog-toolbar select:focus { outline: none; border-color: var(--c-primary); }
.catalog-empty {
    text-align: center; padding: 60px 20px;
    color: var(--c-muted);
    background: var(--c-bg-soft);
    border-radius: var(--radius-lg);
}

/* ===== Product detail ===== */
.product-detail {
    display: grid; gap: 32px;
    grid-template-columns: 1fr;
    margin: 24px 0 60px;
}
@media (min-width: 1024px) {
    .product-detail { grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: start; }
}

.product-detail__gallery img {
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-line);
    width: 100%;
}
.product-detail__placeholder {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--c-bg-cool), #fff);
    display: grid; place-items: center;
    color: var(--c-primary); font-size: 4rem; opacity: .25;
    border: 1px solid var(--c-line);
}
.product-detail__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px; margin-top: 12px;
}
.product-detail__thumbs img {
    aspect-ratio: 1; object-fit: cover;
    cursor: pointer; opacity: .65;
    border-radius: 10px;
    transition: opacity .15s, border-color .15s;
    border: 2px solid transparent;
}
.product-detail__thumbs img:hover { opacity: 1; }
.product-detail__thumbs img.active {
    opacity: 1; border-color: var(--c-primary);
}

.product-detail h1 {
    font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem);
    margin-bottom: 8px;
}
.product-detail__brand {
    color: var(--c-muted);
    font-size: .85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .06em;
    margin-bottom: 10px;
}

.specs-table {
    width: 100%; border-collapse: collapse;
    margin: 18px 0;
    background: var(--c-bg-soft);
    border-radius: var(--radius);
    overflow: hidden;
}
.specs-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--c-line);
}
.specs-table tr:last-child td { border-bottom: 0; }
.specs-table td:first-child {
    color: var(--c-muted); font-size: .9rem;
    width: 50%;
}
.specs-table td:last-child {
    font-weight: 600; color: var(--c-ink);
}

/* ===== Calculator ===== */
.calc {
    background: var(--c-bg-warm);
    border: 1px solid rgba(255,107,26,.15);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    margin: 24px 0;
}
@media (min-width: 768px) { .calc { padding: 28px; } }
.calc h3 {
    margin: 0 0 6px;
    display: flex; align-items: center; gap: 10px;
}
.calc h3::before {
    content: ''; display: inline-block;
    width: 6px; height: 24px;
    background: var(--c-accent);
    border-radius: 4px;
}
.calc__help {
    font-size: .9rem; color: var(--c-muted); margin-bottom: 20px;
}
.calc__base {
    display: flex; justify-content: space-between;
    padding: 10px 0; color: var(--c-ink-soft); font-size: .95rem;
}
.calc__row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0;
    border-top: 1px dashed rgba(255,107,26,.15);
    gap: 14px;
}
.calc__label {
    flex: 1; font-weight: 500; color: var(--c-ink-soft);
    font-size: .92rem;
}
.calc__price {
    color: var(--c-muted); font-size: .82rem; font-weight: 500;
    margin-left: 8px; white-space: nowrap;
}
.calc__control input[type="number"] {
    width: 72px;
    padding: 7px 10px;
    border: 1px solid rgba(255,107,26,.2);
    border-radius: 8px;
    text-align: center;
    font-size: .9rem; font-weight: 600;
    background: #fff;
}
.calc__control input[type="number"]:focus {
    outline: none; border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(255,107,26,.12);
}
.calc__control input[type="checkbox"] {
    width: 22px; height: 22px;
    cursor: pointer; accent-color: var(--c-accent);
}
.calc__total {
    display: flex; justify-content: space-between; align-items: baseline;
    padding-top: 18px; margin-top: 14px;
    border-top: 2px solid var(--c-accent);
    gap: 12px;
}
.calc__total span:first-child {
    font-size: 1rem; font-weight: 600; color: var(--c-ink-soft);
}
.calc__total span:last-child {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.5rem, 2vw + 1rem, 1.85rem);
    font-weight: 800; color: var(--c-primary);
}
.calc__disclaimer {
    font-size: .78rem; color: var(--c-muted);
    margin-top: 14px; line-height: 1.5;
}

/* ===== Forms ===== */
.form { display: grid; gap: 14px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
    font-weight: 600; font-size: .85rem;
    color: var(--c-ink-soft);
}
.form__field label .req { color: var(--c-error); }
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="number"],
.form textarea,
.form select {
    padding: 12px 14px;
    border: 1.5px solid var(--c-line);
    border-radius: 10px;
    font-size: .95rem;
    font-family: inherit;
    background: #fff;
    color: var(--c-ink);
    transition: border-color .15s, box-shadow .15s;
}
.form input::placeholder, .form textarea::placeholder { color: #9aa6b6; }
.form input:focus, .form textarea:focus, .form select:focus {
    outline: none;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(255,107,26,.12);
}
.form textarea { min-height: 110px; resize: vertical; }
.form__consent {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: .82rem; color: var(--c-muted);
    line-height: 1.5;
}
.form__consent input {
    margin-top: 3px; accent-color: var(--c-accent);
    flex-shrink: 0;
}
.form__hp {
    position: absolute; left: -9999px;
    opacity: 0; height: 0; width: 0;
    pointer-events: none;
}

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .15s;
}
.faq-item[open] { border-color: var(--c-primary); }
.faq-item summary {
    cursor: pointer;
    padding: 20px 22px;
    font-weight: 600;
    color: var(--c-ink);
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: ''; flex-shrink: 0;
    width: 28px; height: 28px;
    background: var(--c-bg-cool);
    color: var(--c-primary);
    border-radius: 8px;
    display: grid; place-items: center;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230a1729' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
    transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(180deg); background-color: var(--c-accent); background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); }
.faq-item__body {
    padding: 0 22px 20px;
    color: var(--c-muted);
    line-height: 1.65;
}

/* ===== CTA strip ===== */
.cta-strip {
    background: var(--c-primary);
    color: #fff;
    padding: 50px 0;
    text-align: center;
    position: relative; overflow: hidden;
}
@media (min-width: 768px) { .cta-strip { padding: 70px 0; } }
.cta-strip::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 500px 300px at 20% 0%, rgba(255,107,26,.25), transparent 60%),
        radial-gradient(ellipse 400px 200px at 80% 100%, rgba(255,160,64,.18), transparent 70%);
}
.cta-strip > .container { position: relative; z-index: 1; }
.cta-strip h2 { color: #fff; margin-bottom: 14px; }
.cta-strip p {
    opacity: .85; margin-bottom: 28px;
    font-size: clamp(.95rem, .3vw + .9rem, 1.1rem);
    max-width: 580px; margin-left: auto; margin-right: auto;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid; gap: 32px;
    grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
}
.contact-info { display: grid; gap: 18px; }
.contact-info__item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    transition: all .15s var(--ease);
}
.contact-info__item:hover {
    border-color: var(--c-primary);
    box-shadow: var(--sh-2);
}
.contact-info__icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--c-bg-cool);
    color: var(--c-primary);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.contact-info__label {
    font-size: .8rem; color: var(--c-muted);
    text-transform: uppercase; letter-spacing: .05em;
    margin-bottom: 2px;
}
.contact-info__value {
    font-weight: 600; color: var(--c-ink);
    font-size: 1rem; word-break: break-word;
}
.contact-info__value a { color: var(--c-ink); }
.contact-info__value a:hover { color: var(--c-accent); }

.map-embed {
    width: 100%; aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-line);
}

/* ===== Static content (страницы из БД) ===== */
.content h2 { margin-top: 1.8em; margin-bottom: .6em; }
.content h3 { margin-top: 1.4em; margin-bottom: .5em; color: var(--c-ink); }
.content p { line-height: 1.7; }
.content ul li, .content ol li { margin-bottom: 8px; }
.content a { color: var(--c-accent); border-bottom: 1px solid rgba(255,107,26,.3); }
.content a:hover { border-bottom-color: var(--c-accent); }

/* ===== Breadcrumbs ===== */
.breadcrumbs {
    display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
    font-size: .85rem; color: var(--c-muted);
    margin: 14px 0;
}
.breadcrumbs a { color: var(--c-muted); }
.breadcrumbs a:hover { color: var(--c-primary); }
.breadcrumbs__sep { opacity: .4; }

/* ===== Footer ===== */
.site-footer {
    background: var(--c-primary);
    color: #b8c4d4;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative; overflow: hidden;
}
.site-footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2), var(--c-accent));
}
.footer-grid {
    display: grid; gap: 36px;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.footer-col h4 {
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem; margin-bottom: 16px;
}
.footer-col a { color: #b8c4d4; }
.footer-col a:hover { color: var(--c-accent-2); }
.footer-col p { line-height: 1.6; opacity: .85; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
    font-size: .85rem; color: #7f8da0;
}

/* ===== 404 + thanks ===== */
.error-page {
    text-align: center;
    padding: 80px 20px 100px;
}
.error-page__code {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(5rem, 18vw, 8rem);
    font-weight: 900; line-height: 1;
    color: transparent;
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    -webkit-background-clip: text; background-clip: text;
    margin-bottom: 14px;
}

/* ===== Sticky mobile CTA bar ===== */
.mobile-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: #fff;
    border-top: 1px solid var(--c-line);
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    display: flex; gap: 8px;
    box-shadow: 0 -4px 20px -4px rgba(10,23,41,.1);
}
.mobile-cta .btn { flex: 1; padding: 12px 16px; font-size: .9rem; }
@media (min-width: 768px) { .mobile-cta { display: none; } }
/* Добавим место внизу страницы чтобы контент не скрывался под bar */
@media (max-width: 767px) {
    body { padding-bottom: 70px; }
    body.no-mobile-cta { padding-bottom: 0; }
}

/* ===== Утилиты для анимаций при появлении ===== */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        animation: fadeIn .6s var(--ease) both;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(12px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* ===== Safe-area для iPhone notch ===== */
.site-header { padding-top: env(safe-area-inset-top); }
.site-footer { padding-bottom: max(30px, env(safe-area-inset-bottom)); }

/* =====================================================
   Расширения по образцу citykliima.ee
   ===================================================== */

/* ===== Intro секция ===== */
.intro {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}
@media (min-width: 768px) { .intro { padding: 80px 0; } }
.intro__content { max-width: 800px; margin: 0 auto; }
.intro h2 {
    font-size: clamp(1.5rem, 2vw + .8rem, 2.2rem);
    margin-bottom: 20px;
}
.intro p {
    color: var(--c-muted); font-size: clamp(1rem, .3vw + .95rem, 1.15rem);
    line-height: 1.7; margin: 0;
}

/* ===== Hooldus banner ===== */
.hooldus-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--c-bg-warm) 0%, #ffe9d4 100%);
    position: relative; overflow: hidden;
}
@media (min-width: 768px) { .hooldus-banner { padding: 80px 0; } }
.hooldus-banner__grid {
    display: grid; gap: 32px;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 1024px) {
    .hooldus-banner__grid { grid-template-columns: 1.2fr 1fr; gap: 60px; }
}
.hooldus-banner h2 { margin-bottom: 16px; }
.hooldus-banner p {
    color: var(--c-ink-soft); font-size: 1.05rem; line-height: 1.65;
    margin-bottom: 24px;
}
.hooldus-banner__list {
    list-style: none; padding: 0; margin: 0 0 24px;
    display: grid; gap: 10px;
}
.hooldus-banner__list li {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: .95rem; margin: 0;
}
.hooldus-banner__list li::before {
    content: ''; flex-shrink: 0;
    width: 22px; height: 22px;
    background: var(--c-accent);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.hooldus-banner__visual {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--sh-3);
    display: grid; gap: 16px;
    grid-template-columns: 1fr 1fr;
}
.hooldus-stat {
    text-align: center; padding: 14px 8px;
    background: var(--c-bg-soft); border-radius: var(--radius);
}
.hooldus-stat__num {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem);
    font-weight: 900; color: var(--c-primary); line-height: 1;
}
.hooldus-stat__lbl {
    color: var(--c-muted); font-size: .85rem; margin-top: 6px;
}

/* ===== Партнёры ===== */
.partners-grid {
    display: grid; gap: 14px;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .partners-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .partners-grid { grid-template-columns: repeat(6, 1fr); } }

.partner-card {
    background: #fff; border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 22px 16px;
    display: grid; place-items: center; min-height: 88px;
    transition: all .2s var(--ease);
    text-align: center;
}
.partner-card:hover {
    transform: translateY(-3px); border-color: transparent;
    box-shadow: var(--sh-2);
}
.partner-card img { max-height: 36px; max-width: 100%; opacity: .75; transition: opacity .2s; }
.partner-card:hover img { opacity: 1; }
.partner-card__name {
    font-family: 'Manrope', sans-serif;
    font-weight: 700; font-size: .95rem;
    color: var(--c-ink-soft);
    letter-spacing: -.01em;
}
.partners-section__title {
    font-size: .85rem; font-weight: 700; color: var(--c-muted);
    text-transform: uppercase; letter-spacing: .08em;
    text-align: center; margin: 30px 0 18px;
}

/* ===== Работы / портфолио ===== */
.work-card {
    background: #fff; border: 1px solid var(--c-line);
    border-radius: var(--radius-lg); overflow: hidden;
    display: flex; flex-direction: column;
    transition: all .25s var(--ease);
    text-decoration: none; color: inherit;
}
.work-card:hover {
    transform: translateY(-4px); border-color: transparent;
    box-shadow: var(--sh-3); color: inherit;
}
.work-card__image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--c-bg-cool), var(--c-primary-2));
    position: relative; overflow: hidden;
    display: grid; place-items: center;
    color: rgba(255,255,255,.3);
}
.work-card__image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s var(--ease);
}
.work-card:hover .work-card__image img { transform: scale(1.05); }
.work-card__location {
    position: absolute; top: 12px; left: 12px;
    background: rgba(255,255,255,.95);
    color: var(--c-primary); font-size: .78rem; font-weight: 600;
    padding: 5px 12px; border-radius: 999px;
    backdrop-filter: blur(6px);
    display: inline-flex; align-items: center; gap: 6px;
}
.work-card__body { padding: 22px; }
.work-card__date {
    color: var(--c-muted); font-size: .78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .05em;
    margin-bottom: 8px;
}
.work-card__title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700; font-size: 1.05rem;
    color: var(--c-ink); line-height: 1.35;
    margin-bottom: 10px;
}
.work-card__desc {
    color: var(--c-muted); font-size: .9rem; line-height: 1.55;
    margin: 0;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== Top-bar (тонкая полоса над шапкой) ===== */
.top-bar {
    background: var(--c-primary);
    color: #cbd5e1;
    font-size: .82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar__inner {
    display: flex; align-items: center; gap: 16px;
    justify-content: space-between; flex-wrap: wrap;
}
.top-bar__left, .top-bar__right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.top-bar a { color: #cbd5e1; }
.top-bar a:hover { color: #fff; }
.top-bar__phone { font-weight: 700; color: #fff; }
.top-bar__phone svg { color: var(--c-accent); vertical-align: middle; margin-right: 4px; }
@media (max-width: 600px) {
    .top-bar { display: none; }
}

/* ===== About-split (как citykliima "Miks valida") ===== */
.about-split {
    padding: 60px 0;
    background: #fff;
}
@media (min-width: 768px) { .about-split { padding: 90px 0; } }
.about-split__grid {
    display: grid; gap: 32px;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 1024px) {
    .about-split__grid { grid-template-columns: 1fr 1.1fr; gap: 64px; }
}
.about-split__visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px; margin: 0 auto;
}
.about-split__circle {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    padding: 14px;
    box-shadow: 0 30px 60px -20px rgba(255,107,26,.4);
}
.about-split__img-wrap {
    width: 100%; height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--c-primary);
}
.about-split__img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
}
.about-split__badge {
    position: absolute;
    top: 8%; right: 0;
    background: #fff;
    border-radius: 999px;
    padding: 10px 20px;
    box-shadow: var(--sh-3);
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; color: var(--c-primary);
}
.about-split__badge-num {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem; font-weight: 900;
    background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    line-height: 1;
}
.about-split__badge-lbl { font-size: .82rem; color: var(--c-muted); }
.about-split h2 { font-size: clamp(1.65rem, 2.5vw + .5rem, 2.5rem); }
.about-split__lead {
    font-size: 1.05rem;
    color: var(--c-ink-soft);
    line-height: 1.7;
    margin-bottom: 24px;
}
.about-split__cta {
    margin-bottom: 28px;
}
.about-split__finance-label {
    font-size: .78rem; font-weight: 700; color: var(--c-muted);
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: 14px;
}
.about-split__finance {
    display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
}
.about-split__finance img { max-height: 28px; opacity: .8; transition: opacity .15s; }
.about-split__finance img:hover { opacity: 1; }
.about-split__finance .name-fallback {
    font-family: 'Manrope', sans-serif;
    font-weight: 700; color: var(--c-ink-soft); font-size: .9rem;
    padding: 5px 12px;
    background: var(--c-bg-soft); border-radius: 6px;
}

/* ===== Work detail ===== */
.work-detail {
    display: grid; gap: 28px;
    grid-template-columns: 1fr;
    margin: 24px 0 60px;
}
@media (min-width: 1024px) {
    .work-detail { grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
}
.work-detail__gallery { display: grid; gap: 14px; }
.work-detail__main img {
    width: 100%; border-radius: var(--radius-lg);
    border: 1px solid var(--c-line);
}
.work-detail__main-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--c-bg-cool), var(--c-primary-2));
    border-radius: var(--radius-lg);
    display: grid; place-items: center;
    color: rgba(255,255,255,.4); font-size: 4rem;
}
.work-detail__thumbs {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px;
}
.work-detail__thumbs img {
    aspect-ratio: 1; object-fit: cover; border-radius: 10px;
    cursor: pointer; opacity: .75; transition: opacity .2s;
}
.work-detail__thumbs img:hover { opacity: 1; }
.work-detail__info {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.work-detail__info dl {
    margin: 0; display: grid; gap: 14px;
    grid-template-columns: 1fr;
}
.work-detail__info dt {
    font-size: .78rem; color: var(--c-muted);
    text-transform: uppercase; letter-spacing: .06em;
    margin-bottom: 4px;
}
.work-detail__info dd {
    margin: 0; font-weight: 600; color: var(--c-ink);
}

