/* ============================================================================
   RENOVATION THEME — Warm Gold/Beige
   ============================================================================ */
:root {
    --ren-primary: #c8a96e;
    --ren-primary-hover: #b0945e;
    --ren-primary-light: rgba(200,169,110,0.1);
    --ren-accent: #b0945e;
    --ren-bg: #f8f7f4;
    --ren-bg-warm: #f0ede8;
    --ren-bg-white: #FFFFFF;
    --ren-bg-dark: #2a2a2a;
    --ren-bg-darker: #1e1e1e;
    --ren-text: #1e1e1e;
    --ren-text-secondary: #777777;
    --ren-text-light: #999999;
    --ren-text-white: #FFFFFF;
    --ren-border: #e8e5e0;
    --ren-border-light: #f0ede8;
    --ren-shadow: 0 2px 16px rgba(0,0,0,0.06);
    --ren-shadow-lg: 0 8px 28px rgba(67,49,34,.06);
    --ren-radius: 16px;
    --ren-radius-sm: 10px;
    --ren-radius-lg: 24px;
    --ren-container: 1200px;
    --ren-pad: 24px;
    --ren-header-h: 72px;
    --ren-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ren-font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================================================
   RESET & BASE
   ============================================================================ */
.renovation * { box-sizing: border-box; }
.renovation img { max-width: 100%; height: auto; display: block; }
.renovation a { text-decoration: none; color: inherit; transition: all 0.3s; }
.renovation ul, .renovation ol { list-style: none; margin: 0; padding: 0; }
.renovation button { cursor: pointer; font-family: inherit; border: none; background: none; }
.renovation input, .renovation textarea, .renovation select { font-family: inherit; font-size: inherit; }

.renovation .ren-container {
    max-width: var(--ren-container);
    margin: 0 auto;
    padding: 0 var(--ren-pad);
}

/* ============================================================================
   HEADER
   ============================================================================ */
.renovation .ren-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--ren-bg-white);
    border-bottom: 1px solid var(--ren-border-light);
    transition: all 0.3s;
}
.renovation .ren-header.is-scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.renovation .ren-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--ren-header-h);
}
.renovation .ren-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ren-font-display);
    font-weight: 800;
    font-size: 14px;
    color: var(--ren-text);
    line-height: 1.1;
}
.renovation .ren-header__logo svg {
    width: 32px;
    height: 32px;
    color: var(--ren-primary);
}
.renovation .ren-header__logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--ren-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.renovation .ren-header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.renovation .ren-header__nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ren-text-secondary);
    transition: color 0.3s;
}
.renovation .ren-header__nav a:hover {
    color: var(--ren-primary);
}
.renovation .ren-header__right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.renovation .ren-header__phone {
    font-size: 14px;
    font-weight: 600;
    color: var(--ren-text);
}
.renovation .ren-header__phone small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--ren-text-light);
}
.renovation .ren-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--ren-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s;
}
.renovation .ren-header__cta:hover {
    background: var(--ren-primary-hover);
    color: #fff;
}
.renovation .ren-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.renovation .ren-header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ren-text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile menu */
.renovation .ren-mobile-menu {
    display: none;
    position: fixed;
    top: var(--ren-header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ren-bg-white);
    z-index: 999;
    padding: 24px;
    overflow-y: auto;
}
.renovation .ren-mobile-menu.is-open { display: block; }
.renovation .ren-mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--ren-text);
    border-bottom: 1px solid var(--ren-border-light);
}

/* ============================================================================
   HERO
   ============================================================================ */
.renovation .ren-hero {
    margin-top: var(--ren-header-h);
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    overflow: hidden;
    border-radius: 28px;
    margin-left: var(--ren-pad);
    margin-right: var(--ren-pad);
}
.renovation .ren-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}
.renovation .ren-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,30,30,0.85) 0%, rgba(30,30,30,0.6) 50%, rgba(30,30,30,0.3) 100%);
}
.renovation .ren-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
}
.renovation .ren-hero__content {
    flex: 1;
    max-width: 520px;
}
.renovation .ren-hero__title {
    font-family: var(--ren-font-display);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--ren-text-white);
    margin-bottom: 16px;
}
.renovation .ren-hero__price {
    font-family: var(--ren-font-display);
    font-size: 52px;
    font-weight: 900;
    color: var(--ren-primary);
    margin-bottom: 16px;
    line-height: 1.1;
}
.renovation .ren-hero__price span {
    font-size: 22px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}
.renovation .ren-hero__subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 28px;
}
.renovation .ren-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--ren-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
    margin-bottom: 12px;
}
.renovation .ren-hero__cta:hover {
    background: var(--ren-primary-hover);
    transform: translateY(-2px);
    color: #fff;
}
.renovation .ren-hero__cta svg { width: 18px; height: 18px; }
.renovation .ren-hero__free {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.renovation .ren-hero__free svg { width: 16px; height: 16px; color: var(--ren-primary); }
.renovation .ren-hero__visual {
    flex: 1;
    max-width: 560px;
    position: relative;
}
.renovation .ren-hero__slider {
    position: relative;
    border-radius: var(--ren-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #444;
}
.renovation .ren-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.renovation .ren-hero__slide--after { clip-path: inset(0 50% 0 0); }
.renovation .ren-hero__slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}
.renovation .ren-hero__slider-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.renovation .ren-hero__slider-label {
    position: absolute;
    bottom: 16px;
    z-index: 2;
    padding: 6px 14px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
}
.renovation .ren-hero__slider-label--before { left: 16px; }
.renovation .ren-hero__slider-label--after { right: 16px; }
.renovation .ren-hero__badges {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}
.renovation .ren-hero__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
}
.renovation .ren-hero__badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.renovation .ren-hero__badge-icon--google { background: #4285F4; }
.renovation .ren-hero__badge-icon--projects { background: var(--ren-primary); }
.renovation .ren-hero__badge-text {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}
.renovation .ren-hero__badge-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

/* ============================================================================
   PROBLEMS SECTION
   ============================================================================ */
.renovation .ren-problems {
    padding: 80px 0;
    background: var(--ren-bg);
}
.renovation .ren-problems__title {
    font-family: var(--ren-font-display);
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    color: var(--ren-text);
    margin-bottom: 48px;
}
.renovation .ren-problems__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.renovation .ren-problem-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--ren-bg-white);
    border-radius: var(--ren-radius);
    border: 1px solid var(--ren-border-light);
}
.renovation .ren-problem-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ren-primary-light);
}
.renovation .ren-problem-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--ren-primary);
}
.renovation .ren-problem-card__content { flex: 1; }
.renovation .ren-problem-card__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ren-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.renovation .ren-problem-card__problem {
    font-size: 15px;
    font-weight: 600;
    color: var(--ren-text);
    margin-bottom: 8px;
}
.renovation .ren-problem-card__solution {
    font-size: 14px;
    color: var(--ren-text-secondary);
    line-height: 1.5;
}

/* ============================================================================
   SERVICE DETAILS SECTION
   ============================================================================ */
.renovation .ren-service {
    padding: 80px 0;
    background: var(--ren-bg-white);
}
.renovation .ren-service__inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}
.renovation .ren-service__left { flex: 1; }
.renovation .ren-service__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.renovation .ren-service__heading {
    font-family: var(--ren-font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ren-text-secondary);
    margin-bottom: 8px;
}
.renovation .ren-service__title {
    font-family: var(--ren-font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--ren-text);
    margin-bottom: 4px;
}
.renovation .ren-service__title-price {
    font-family: var(--ren-font-display);
    font-size: 42px;
    font-weight: 900;
    color: var(--ren-primary);
}
.renovation .ren-service__title-price span {
    font-size: 18px;
    font-weight: 600;
    color: var(--ren-text-secondary);
}
.renovation .ren-service__list {
    margin-top: 24px;
}
.renovation .ren-service__list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--ren-border-light);
    font-size: 15px;
    color: var(--ren-text);
}
.renovation .ren-service__list-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--ren-primary);
}
.renovation .ren-service__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 14px 28px;
    border: 2px solid var(--ren-primary);
    color: var(--ren-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
}
.renovation .ren-service__cta:hover {
    background: var(--ren-primary);
    color: #fff;
}
.renovation .ren-service__cta svg { width: 16px; height: 16px; }
.renovation .ren-service__info-card {
    padding: 28px;
    background: var(--ren-bg);
    border-radius: var(--ren-radius);
    border: 1px solid var(--ren-border);
    position: relative;
    overflow: hidden;
}
.renovation .ren-service__info-title {
    font-family: var(--ren-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ren-text);
    margin-bottom: 12px;
}
.renovation .ren-service__info-text {
    font-size: 14px;
    color: var(--ren-text-secondary);
    line-height: 1.6;
}
.renovation .ren-service__discount {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    background: var(--ren-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ren-font-display);
    font-size: 16px;
    font-weight: 800;
}
.renovation .ren-service__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}
.renovation .ren-service__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ren-text-secondary);
}
.renovation .ren-service__feature svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--ren-primary);
}

/* ============================================================================
   PACKAGES SECTION
   ============================================================================ */
.renovation .ren-packages {
    padding: 80px 0;
    background: var(--ren-bg);
}
.renovation .ren-packages__title {
    font-family: var(--ren-font-display);
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    color: var(--ren-text);
    margin-bottom: 48px;
}
.renovation .ren-packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.renovation .ren-package {
    background: var(--ren-bg-white);
    border-radius: var(--ren-radius);
    border: 2px solid var(--ren-border-light);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}
.renovation .ren-package:hover {
    box-shadow: var(--ren-shadow-lg);
    transform: translateY(-4px);
}
.renovation .ren-package--popular {
    border-color: var(--ren-primary);
    box-shadow: 0 18px 42px rgba(200,169,110,.14);
}
.renovation .ren-package__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--ren-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    white-space: nowrap;
}
.renovation .ren-package__name {
    font-family: var(--ren-font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--ren-text);
    margin-bottom: 8px;
    margin-top: 8px;
}
.renovation .ren-package__desc {
    font-size: 14px;
    color: var(--ren-text-secondary);
    margin-bottom: 20px;
    min-height: 42px;
}
.renovation .ren-package__icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}
.renovation .ren-package__icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ren-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.renovation .ren-package__icon-circle svg {
    width: 16px;
    height: 16px;
    color: var(--ren-primary);
}
.renovation .ren-package__features {
    text-align: left;
    margin-bottom: 24px;
}
.renovation .ren-package__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--ren-text);
    border-bottom: 1px solid var(--ren-border-light);
}
.renovation .ren-package__feature:last-child { border-bottom: none; }
.renovation .ren-package__feature svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--ren-primary);
}
.renovation .ren-package__price {
    font-family: var(--ren-font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--ren-text);
    margin-bottom: 4px;
}
.renovation .ren-package__price-unit {
    font-size: 14px;
    color: var(--ren-text-secondary);
    margin-bottom: 20px;
}
.renovation .ren-package__btn {
    display: block;
    width: 100%;
    padding: 14px;
    border: 2px solid var(--ren-primary);
    color: var(--ren-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
    text-align: center;
}
.renovation .ren-package__btn:hover {
    background: var(--ren-primary);
    color: #fff;
}
.renovation .ren-package--popular .ren-package__btn {
    background: var(--ren-primary);
    color: #fff;
}
.renovation .ren-package--popular .ren-package__btn:hover {
    background: var(--ren-primary-hover);
}
.renovation .ren-package__note {
    font-size: 12px;
    color: var(--ren-text-light);
    margin-top: 12px;
}

/* ============================================================================
   ADVANTAGES + PORTFOLIO LAYOUT
   ============================================================================ */
.renovation .ren-portfolio-section {
    padding: 80px 0;
    background: var(--ren-bg-white);
}
.renovation .ren-portfolio-section__inner {
    display: flex;
    gap: 40px;
}
.renovation .ren-portfolio-section__sidebar {
    flex: 0 0 280px;
}
.renovation .ren-portfolio-section__main {
    flex: 1;
}
.renovation .ren-advantages__title {
    font-family: var(--ren-font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--ren-text);
    margin-bottom: 24px;
}
.renovation .ren-advantage {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--ren-border-light);
}
.renovation .ren-advantage:last-child { border-bottom: none; }
.renovation .ren-advantage__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--ren-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.renovation .ren-advantage__icon svg {
    width: 20px;
    height: 20px;
    color: var(--ren-primary);
}
.renovation .ren-advantage__text {
    font-size: 14px;
    font-weight: 600;
    color: var(--ren-text);
    line-height: 1.4;
}

/* Portfolio */
.renovation .ren-portfolio__title {
    font-family: var(--ren-font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--ren-text);
    margin-bottom: 20px;
}
.renovation .ren-portfolio__filters {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.renovation .ren-portfolio__filter {
    padding: 8px 18px;
    background: var(--ren-bg);
    border: 1px solid var(--ren-border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ren-text-secondary);
    cursor: pointer;
    transition: all 0.3s;
}
.renovation .ren-portfolio__filter:hover,
.renovation .ren-portfolio__filter.is-active {
    background: var(--ren-primary);
    color: #fff;
    border-color: var(--ren-primary);
}
.renovation .ren-portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.renovation .ren-portfolio-card {
    border-radius: var(--ren-radius);
    overflow: hidden;
    border: 1px solid var(--ren-border-light);
    background: var(--ren-bg-white);
    transition: all 0.3s;
}
.renovation .ren-portfolio-card:hover {
    box-shadow: var(--ren-shadow-lg);
    transform: translateY(-4px);
}
.renovation .ren-portfolio-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.renovation .ren-portfolio-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.renovation .ren-portfolio-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.renovation .ren-portfolio-card__play svg {
    width: 16px;
    height: 16px;
    color: var(--ren-primary);
    margin-left: 2px;
}
.renovation .ren-portfolio-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
}
.renovation .ren-portfolio-card__body {
    padding: 16px;
}
.renovation .ren-portfolio-card__label {
    font-size: 11px;
    color: var(--ren-text-light);
    margin-bottom: 4px;
}
.renovation .ren-portfolio-card__title {
    font-family: var(--ren-font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ren-text);
    margin-bottom: 10px;
}
.renovation .ren-portfolio-card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}
.renovation .ren-portfolio-card__meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--ren-text-secondary);
}
.renovation .ren-portfolio-card__meta-item svg {
    width: 14px;
    height: 14px;
}
.renovation .ren-portfolio-card__review {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--ren-border-light);
}
.renovation .ren-portfolio-card__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ren-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--ren-text-secondary);
}
.renovation .ren-portfolio-card__review-text {
    flex: 1;
    font-size: 12px;
    color: var(--ren-text-secondary);
    line-height: 1.4;
}
.renovation .ren-portfolio-card__review-author {
    font-weight: 600;
    color: var(--ren-text);
}
.renovation .ren-portfolio-card__stars {
    display: flex;
    gap: 2px;
}
.renovation .ren-portfolio-card__stars svg {
    width: 12px;
    height: 12px;
    color: var(--ren-primary);
    fill: var(--ren-primary);
}
.renovation .ren-portfolio__cta {
    text-align: center;
    margin-top: 32px;
}
.renovation .ren-portfolio__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid var(--ren-primary);
    color: var(--ren-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
}
.renovation .ren-portfolio__cta-btn:hover {
    background: var(--ren-primary);
    color: #fff;
}
.renovation .ren-portfolio__cta-btn svg { width: 16px; height: 16px; }

/* ============================================================================
   CONTACT SECTION
   ============================================================================ */
.renovation .ren-contact {
    padding: 80px 0;
    background: var(--ren-bg-dark);
}
.renovation .ren-contact__inner {
    display: flex;
    align-items: center;
    gap: 48px;
}
.renovation .ren-contact__text { flex: 1; }
.renovation .ren-contact__title {
    font-family: var(--ren-font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--ren-text-white);
    margin-bottom: 12px;
}
.renovation .ren-contact__subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.renovation .ren-contact__form { flex: 1; }
.renovation .ren-contact__form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.renovation .ren-contact__input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}
.renovation .ren-contact__input::placeholder { color: rgba(255,255,255,0.4); }
.renovation .ren-contact__input:focus { border-color: var(--ren-primary); }
.renovation .ren-contact__submit {
    width: 100%;
    padding: 16px;
    background: var(--ren-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.renovation .ren-contact__submit:hover { background: var(--ren-primary-hover); }
.renovation .ren-contact__trust {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}
.renovation .ren-contact__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.renovation .ren-contact__trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--ren-primary);
}
.renovation .ren-contact__honeypot {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.renovation .ren-footer {
    padding: 48px 0 24px;
    background: var(--ren-bg-darker);
}
.renovation .ren-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.renovation .ren-footer__brand { max-width: 280px; }
.renovation .ren-footer__brand-name {
    font-family: var(--ren-font-display);
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.renovation .ren-footer__brand-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}
.renovation .ren-footer__col-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.renovation .ren-footer__link {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    padding: 4px 0;
    transition: color 0.3s;
}
.renovation .ren-footer__link:hover { color: var(--ren-primary); }
.renovation .ren-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}
.renovation .ren-footer__legal {
    display: flex;
    gap: 20px;
}
.renovation .ren-footer__legal a {
    color: rgba(255,255,255,0.35);
    font-size: 12px;
}
.renovation .ren-footer__legal a:hover { color: var(--ren-primary); }

/* ============================================================================
   CHAT SECTION (keeps existing chat styles, just wraps in renovation)
   ============================================================================ */
.renovation .chat-section,
.renovation .blog-preview {
    background: var(--ren-bg);
}
.renovation .chat-section .section-label,
.renovation .chat-section .section-title,
.renovation .blog-preview .section-label,
.renovation .blog-preview .section-title {
    color: var(--ren-text);
}
.renovation .chat-section .section-title em,
.renovation .blog-preview .section-title em {
    color: var(--ren-primary);
    font-style: normal;
}
.renovation .section-label {
    font-family: var(--ren-font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ren-primary);
    margin-bottom: 8px;
}
.renovation .section-title {
    font-family: var(--ren-font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--ren-text);
    margin-bottom: 8px;
}
.renovation .section-title em {
    color: var(--ren-primary);
    font-style: normal;
}
.renovation .section-subtitle {
    font-size: 15px;
    color: var(--ren-text-secondary);
}

/* ============================================================================
   SCROLL ANIMATIONS
   ============================================================================ */
.renovation .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.renovation .animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================================
   BLOG PREVIEW — inherited from old theme, adapted
   ============================================================================ */
.renovation .blog-preview {
    padding: 80px 0;
    background: var(--ren-bg);
}
.renovation .blog-preview__header {
    text-align: center;
    margin-bottom: 40px;
}
.renovation .blog-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.renovation .blog-preview-card {
    background: var(--ren-bg-white);
    border-radius: var(--ren-radius);
    overflow: hidden;
    border: 1px solid var(--ren-border-light);
    transition: all 0.3s;
}
.renovation .blog-preview-card:hover {
    box-shadow: var(--ren-shadow-lg);
    transform: translateY(-4px);
}
.renovation .blog-preview-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--ren-bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.renovation .blog-preview-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.renovation .blog-preview-card__body {
    padding: 20px;
}
.renovation .blog-preview-card__date {
    font-size: 12px;
    color: var(--ren-text-light);
    margin-bottom: 8px;
}
.renovation .blog-preview-card__title {
    font-family: var(--ren-font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ren-text);
    margin-bottom: 8px;
    line-height: 1.3;
}
.renovation .blog-preview-card__title a {
    color: inherit;
}
.renovation .blog-preview-card__title a:hover {
    color: var(--ren-primary);
}
.renovation .blog-preview-card__excerpt {
    font-size: 13px;
    color: var(--ren-text-secondary);
    line-height: 1.5;
}
.renovation .blog-preview__cta {
    text-align: center;
    margin-top: 32px;
}
.renovation .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.renovation .btn--outline {
    border: 2px solid var(--ren-primary);
    color: var(--ren-primary);
    background: transparent;
}
.renovation .btn--outline:hover {
    background: var(--ren-primary);
    color: #fff;
}
.renovation .btn--lg {
    padding: 14px 32px;
    font-size: 15px;
}

/* ============================================================================
   CHAT SECTION — adapted for renovation theme
   ============================================================================ */
.renovation .chat-section {
    padding: 80px 0;
    background: var(--ren-bg);
}
.renovation .chat-header {
    text-align: center;
    margin-bottom: 40px;
}

/* ==========================================================================
   PUBLIC LANDING REFRESH
   ========================================================================== */
.renovation {
    --ren-primary: #c8a96e;
    --ren-primary-hover: #b0945e;
    --ren-bg: #f8f7f4;
    --ren-bg-warm: #f0ede8;
    --ren-text: #1e1e1e;
    --ren-text-secondary: #777777;
    --ren-border: #e8e5e0;
    --ren-border-light: #f0ede8;
    background: var(--ren-bg);
}
.renovation .ren-header {
    background: rgba(250, 247, 242, .94);
    border-bottom-color: rgba(39, 37, 34, .08);
    backdrop-filter: blur(18px);
}
.renovation .ren-header__inner { height: 78px; }
.renovation .ren-header__logo { letter-spacing: -.02em; }
.renovation .ren-header__logo svg { color: var(--ren-primary); }
.renovation .ren-header__nav { gap: 22px; }
.renovation .ren-header__nav a { font-size: 13px; }
.renovation .ren-header__cta,
.renovation .ren-hero__cta,
.renovation .ren-service__cta,
.renovation .ren-contact__submit,
.renovation .ren-package__btn,
.renovation .ren-portfolio__cta-btn,
.renovation .btn--outline { border-radius: 999px; }
.renovation .ren-hero {
    margin-top: calc(var(--ren-header-h) + 20px);
    margin-left: var(--ren-pad);
    margin-right: var(--ren-pad);
    min-height: 650px;
    background: #1e1e1e;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}
.renovation .ren-hero__bg { background-image: url('/uploads/hero.webp') !important; background-size: cover; background-position: center; }
.renovation .ren-hero__overlay {
    background: linear-gradient(90deg, rgba(30,30,30,.92), rgba(30,30,30,.58) 54%, rgba(30,30,30,.16));
}
.renovation .ren-hero__inner { gap: 72px; padding: 78px calc(max((100vw - var(--ren-container)) / 2, var(--ren-pad))); max-width: none; margin: 0; }
.renovation .ren-hero__title { font-size: clamp(38px, 4.4vw, 64px); letter-spacing: -.045em; }
.renovation .ren-hero__price { color: var(--ren-primary); font-size: clamp(42px, 5vw, 68px); letter-spacing: -.04em; }
.renovation .ren-hero__subtitle { max-width: 430px; font-size: 17px; }
.renovation .ren-hero__badges {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}
.renovation .ren-hero__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(30, 30, 30, .72);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}
.renovation .ren-hero__badge-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}
.renovation .ren-hero__badge-icon--google { background: transparent; }
.renovation .ren-hero__badge-icon--yandex { background: transparent; }
.renovation .ren-hero__badge-content { line-height: 1.3; }
.renovation .ren-hero__badge-rating { display: flex; align-items: center; gap: 4px; }
.renovation .ren-hero__badge-name { font-size: 15px; font-weight: 700; color: #fff; }
.renovation .ren-hero__badge-score { font-size: 15px; font-weight: 700; color: #fff; }
.renovation .ren-hero__badge-stars { font-size: 13px; color: var(--ren-primary); letter-spacing: 1px; }
.renovation .ren-hero__badge-label { font-size: 13px; color: rgba(255,255,255,.8); font-weight: 500; }
.renovation .ren-hero__badge-desc { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 1px; }
.renovation .ren-problems,
.renovation .ren-service,
.renovation .ren-packages,
.renovation .ren-portfolio-section,
.renovation .blog-preview,
.renovation .chat-section,
.renovation .ren-reviews { padding: 104px 0; }
.renovation .ren-problems { background: #f0ede8; }
.renovation .ren-problems__title,
.renovation .ren-packages__title,
.renovation .ren-advantages__title,
.renovation .ren-portfolio__title { letter-spacing: -.035em; }
.renovation .ren-problem-card,
.renovation .ren-package,
.renovation .ren-portfolio-card,
.renovation .blog-preview-card { border-radius: 22px; box-shadow: 0 8px 28px rgba(67, 49, 34, .06); }
.renovation .ren-service { background: #f8f7f4; }
.renovation .ren-service__info-card { border-radius: 28px; }
.renovation .ren-packages { background: #f0ede8; }
.renovation .ren-package--popular { border-color: var(--ren-primary); box-shadow: 0 18px 42px rgba(200,169,110,.14); }
.renovation .ren-portfolio-section { background: #f8f7f4; }
.renovation .ren-portfolio__filter { border-radius: 999px; }
.renovation .ren-portfolio-card__image { border-radius: 22px 22px 0 0; }
.renovation .chat-section { background: #f0ede8; }
.renovation .chat-layout { border-radius: 28px; overflow: hidden; box-shadow: 0 18px 50px rgba(67,49,34,.12); }
.renovation .blog-preview { background: #f8f7f4; }
.renovation .blog-preview-card__category { color: var(--ren-primary); }
.renovation .ren-reviews { background: #f0ede8; }
.ren-reviews__heading { text-align: center; margin-bottom: 42px; }
.ren-reviews__slider { overflow: hidden; }
.ren-reviews__loading { padding: 48px; text-align: center; color: var(--ren-text-secondary); }
.ren-reviews__slider .reviews__track { display: flex; gap: 20px; transition: transform .45s ease; }
.ren-reviews__slider .review-card { flex: 0 0 calc(50% - 10px); min-height: 240px; padding: 30px; background: #f8f7f4; border: 1px solid var(--ren-border-light); border-radius: 22px; box-shadow: 0 8px 28px rgba(67,49,34,.06); }
.ren-reviews__slider .review-card--light { background: #fff; }
.ren-reviews__slider .review-card__stars { color: var(--ren-primary); }
.ren-reviews__slider .review-card__text { color: var(--ren-text); font-size: 17px; line-height: 1.55; }
.ren-reviews__slider .review-card__author { margin-top: 28px; }
.ren-reviews__slider .review-card__avatar { background: var(--ren-primary); color: #fff; }
.ren-reviews__dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.ren-reviews__dots .reviews__dot { width: 8px; height: 8px; padding: 0; border-radius: 50%; background: #d5cfc8; }
.ren-reviews__dots .reviews__dot.is-active { width: 24px; border-radius: 999px; background: var(--ren-primary); }
.renovation .ren-contact { background: #2a2a2a; }
.renovation .ren-footer { background: #1e1e1e; }

/* Mobile hero overrides removed — see RESPONSIVE section below */

/* ============================================================================
   REVIEW STARS — warm theme
   ============================================================================ */
.ren-reviews__slider .review-card { display: flex; flex-direction: column; }
.ren-reviews__slider .review-card__stars { display: flex; gap: 4px; margin-bottom: 16px; }
.ren-reviews__slider .review-card__star { width: 22px; height: 22px; color: var(--ren-primary); fill: var(--ren-primary); }
.ren-reviews__slider .review-card__star--empty { color: #d5cfc8; fill: #d5cfc8; }
.ren-reviews__slider .review-card__text { flex: 1; }
.ren-reviews__slider .review-card__author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--ren-border-light); }
.ren-reviews__slider .review-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ren-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; flex-shrink: 0; }
.ren-reviews__slider .review-card__name { font-size: 14px; font-weight: 700; color: var(--ren-text); }
.ren-reviews__slider .review-card__niche { font-size: 12px; color: var(--ren-text-light); }

/* ============================================================================
   CHAT SECTION — warm theme adaptations
   ============================================================================ */
.renovation .chat-layout {
    background: #fff;
    border: 1px solid var(--ren-border-light);
    display: grid;
    grid-template-columns: 1fr 320px;
    height: 600px;
}
.renovation .chat-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-right: 1px solid var(--ren-border-light);
}
.renovation .chat-panel__header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: #fff;
    border-bottom: 1px solid var(--ren-border-light);
    flex-shrink: 0;
}
.renovation .chat-panel__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ren-primary), rgba(200,169,110,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.renovation .chat-panel__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.renovation .chat-panel__avatar svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
}
.renovation .chat-panel__info { flex: 1; min-width: 0; }
.renovation .chat-panel__title {
    font-size: 17px;
    font-weight: 700;
    font-family: var(--ren-font-display);
    color: var(--ren-text);
    line-height: 1.2;
}
.renovation .chat-panel__status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--ren-text-light);
    margin-top: 2px;
}
.renovation .chat-panel__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34,197,94,0.5);
    animation: pulse-dot 2s infinite;
}
.renovation .chat-panel__messages {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
    background: var(--ren-bg);
}
.renovation .chat-msg {
    display: flex;
    gap: 10px;
    max-width: 80%;
    animation: msgFadeIn .3s ease;
}
.renovation .chat-msg--ai { align-self: flex-start; }
.renovation .chat-msg--user { align-self: flex-end; flex-direction: row-reverse; }
.renovation .chat-msg__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
}
.renovation .chat-msg--ai .chat-msg__avatar {
    background: linear-gradient(135deg, var(--ren-primary), rgba(200,169,110,0.3));
    color: #fff;
}
.renovation .chat-msg__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.renovation .chat-msg--user .chat-msg__avatar {
    background: rgba(0,0,0,0.06);
    color: var(--ren-text);
}
.renovation .chat-msg__bubble {
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
    word-wrap: break-word;
}
.renovation .chat-msg--ai .chat-msg__bubble {
    background: #fff;
    color: var(--ren-text);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--ren-border-light);
}
.renovation .chat-msg--user .chat-msg__bubble {
    background: var(--ren-primary);
    color: #fff;
    border-bottom-right-radius: 4px;
    font-weight: 500;
}
.renovation .chat-msg__time {
    font-size: 10px;
    color: var(--ren-text-light);
    margin-top: 4px;
    padding: 0 4px;
}
.renovation .chat-msg--user .chat-msg__time { text-align: right; }
.renovation .chat-panel__typing {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px 8px;
    font-size: 12px;
    color: var(--ren-text-light);
    flex-shrink: 0;
}
.renovation .chat-panel__typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ren-primary);
    animation: typingBounce 1.4s infinite;
}
.renovation .chat-panel__typing-dot:nth-child(2) { animation-delay: 0.2s; }
.renovation .chat-panel__typing-dot:nth-child(3) { animation-delay: 0.4s; }
.renovation .chat-panel__input-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid var(--ren-border-light);
    background: #fff;
    flex-shrink: 0;
}
.renovation .chat-panel__input {
    flex: 1;
    padding: 14px 18px;
    background: var(--ren-bg);
    border: 1px solid var(--ren-border);
    border-radius: 12px;
    color: var(--ren-text);
    font-size: 14px;
    outline: none;
    transition: all .3s;
}
.renovation .chat-panel__input::placeholder { color: var(--ren-text-light); }
.renovation .chat-panel__input:focus {
    border-color: var(--ren-primary);
    box-shadow: 0 0 0 3px rgba(200,169,110,0.1);
}
.renovation .chat-panel__send {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--ren-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    flex-shrink: 0;
    border: none;
}
.renovation .chat-panel__send:hover { background: var(--ren-primary-hover); }
.renovation .chat-panel__send svg { width: 20px; height: 20px; }
.renovation .chat-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}
.renovation .chat-lead-success {
    text-align: center;
    padding: 20px;
    margin: 0 24px 16px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 12px;
}
.renovation .chat-lead-success__icon { font-size: 32px; margin-bottom: 8px; }
.renovation .chat-lead-success__title { font-size: 16px; font-weight: 700; color: #22c55e; margin-bottom: 4px; }
.renovation .chat-lead-success__text { font-size: 13px; color: var(--ren-text-light); }
.renovation .chat-panel__suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 12px;
    overflow-x: auto;
    scrollbar-width: none;
    flex-shrink: 0;
}
.renovation .chat-panel__suggestions::-webkit-scrollbar { display: none; }
.renovation .chat-chip {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--ren-primary);
    background: transparent;
    color: var(--ren-primary);
    font-size: 13px;
    font-family: var(--ren-font);
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s ease;
    flex-shrink: 0;
}
.renovation .chat-chip:hover {
    background: var(--ren-primary);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200,169,110,0.25);
}

/* ============================================================================
   CONSULTANT PANEL — warm theme
   ============================================================================ */
.renovation .consultant-panel {
    background: linear-gradient(180deg, #2a2a2a 0%, #1e1e1e 50%, #2a2a2a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.renovation .consultant-panel__photo-wrap {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.renovation .consultant-panel__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: none;
}
.renovation .consultant-panel__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: none;
}
.renovation .consultant-panel__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
}
.renovation .consultant-panel__placeholder svg {
    width: 80px;
    height: 80px;
    stroke: rgba(200,169,110,0.3);
}
.renovation .consultant-panel__cta-bubble {
    position: absolute;
    top: 240px;
    left: -12px;
    background: var(--ren-primary);
    color: #000;
    padding: 14px 20px;
    border-radius: 14px;
    transform: rotate(-5deg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 2;
    text-align: left;
    line-height: 1.3;
}
.renovation .consultant-panel__cta-bubble strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}
.renovation .consultant-panel__cta-bubble span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.8;
}
.renovation .consultant-panel__body {
    padding: 20px 24px 24px;
    text-align: center;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    overflow-y: auto;
}
.renovation .consultant-panel__name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    font-family: var(--ren-font-display);
}
.renovation .consultant-panel__role {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}
.renovation .consultant-panel__heading {
    font-family: var(--ren-font-display);
    font-size: 15px;
    font-weight: 800;
    color: var(--ren-primary);
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 0.5px;
}
.renovation .consultant-panel__timer { margin: 6px 0; text-align: center; }
.renovation .consultant-panel__timer-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 1px;
}
.renovation .consultant-panel__timer-digits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.renovation .consultant-panel__timer-digit {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 22px;
    font-weight: 700;
    font-family: var(--ren-font-display);
    color: #fff;
    min-width: 48px;
    text-align: center;
}
.renovation .consultant-panel__timer-sep {
    font-size: 22px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
}
.renovation .consultant-panel__btn {
    width: 100%;
    padding: 14px 16px;
    background: var(--ren-primary);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 12px;
    font-family: var(--ren-font-display);
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    line-height: 1.4;
    letter-spacing: 0.3px;
    margin-top: 6px;
}
.renovation .consultant-panel__btn:hover {
    background: var(--ren-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,169,110,0.3);
}
.renovation .consultant-panel__trust {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
}
.renovation .consultant-panel__trust-item {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.renovation .consultant-mobile-avatar {
    display: none;
}

/* ============================================================================
   CHAT RESPONSIVE — warm theme
   ============================================================================ */
@media(max-width: 900px) {
    .renovation .chat-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    .renovation .chat-panel {
        border-right: none;
        height: 500px;
    }
    .renovation .consultant-panel { display: none; }
    .renovation .consultant-mobile-avatar {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-height: 80px;
        overflow: hidden;
        border-radius: 22px;
        margin-bottom: 12px;
    }
    .renovation .consultant-mobile-avatar video {
        display: none !important;
    }
    .renovation .consultant-mobile-avatar img {
        width: 100%;
        max-height: 80px;
        object-fit: cover;
        border-radius: 22px;
    }
}
@media(max-width: 768px) {
    .renovation .chat-layout { height: 500px; border-radius: 16px; }
    .renovation .chat-panel__header { padding: 14px 16px; }
    .renovation .chat-panel__messages { padding: 16px; }
    .renovation .chat-msg { max-width: 90%; }
    .renovation .chat-panel__input-area { padding: 12px 16px; }
    .renovation .chat-panel__suggestions { padding: 0 16px 10px; }
    .renovation .chat-chip { font-size: 12px; padding: 6px 12px; }
}
@media(max-width: 600px) {
    .renovation .chat-layout { border-radius: 16px; }
    .renovation .chat-panel { height: 450px; }
    .renovation .consultant-mobile-avatar { max-height: 60px; }
    .renovation .consultant-mobile-avatar img { max-height: 60px; }
}
@media(max-width: 480px) {
    .renovation .chat-layout { border-radius: 12px; height: 420px; }
    .renovation .chat-panel { height: 420px; }
    .renovation .chat-panel__avatar { width: 40px; height: 40px; }
    .renovation .chat-panel__title { font-size: 15px; }
    .renovation .consultant-mobile-avatar { max-height: 50px; margin-bottom: 8px; }
    .renovation .consultant-mobile-avatar img { max-height: 50px; }
}

/* ============================================================================
   GALLERY CAROUSEL
   ============================================================================ */
.renovation .ren-gallery {
    padding: 80px 0;
    background: var(--ren-bg-warm);
    overflow: hidden;
}
.renovation .ren-gallery__title {
    font-family: var(--ren-font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--ren-text);
    text-align: center;
    margin-bottom: 40px;
}
.renovation .ren-gallery__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}
.renovation .ren-gallery__viewport {
    flex: 1;
    overflow: hidden;
    border-radius: var(--ren-radius);
}
.renovation .ren-gallery__track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.renovation .ren-gallery__item {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 0;
    border-radius: var(--ren-radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--ren-bg-white);
    box-shadow: var(--ren-shadow);
    transition: box-shadow 0.3s;
}
.renovation .ren-gallery__item:hover {
    box-shadow: var(--ren-shadow-lg);
}
.renovation .ren-gallery__item-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.renovation .ren-gallery__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.renovation .ren-gallery__item:hover .ren-gallery__item-img img {
    transform: scale(1.1);
}
.renovation .ren-gallery__item-title {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ren-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.renovation .ren-gallery__arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ren-bg-white);
    border: 1px solid var(--ren-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--ren-shadow);
    z-index: 2;
}
.renovation .ren-gallery__arrow:hover {
    background: var(--ren-primary);
    border-color: var(--ren-primary);
    color: #fff;
}
.renovation .ren-gallery__arrow svg {
    width: 20px;
    height: 20px;
}
.renovation .ren-gallery__arrow--prev {
    position: absolute;
    left: -8px;
}
.renovation .ren-gallery__arrow--next {
    position: absolute;
    right: -8px;
}
.renovation .ren-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.renovation .ren-gallery__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ren-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.renovation .ren-gallery__dot.is-active {
    background: var(--ren-primary);
    width: 28px;
    border-radius: 5px;
}

/* ============================================================================
   LIGHTBOX
   ============================================================================ */
.renovation .ren-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lbFadeIn 0.3s ease;
}
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.renovation .ren-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.renovation .ren-lightbox__close:hover { background: rgba(255,255,255,0.25); }
.renovation .ren-lightbox__img-wrap {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.renovation .ren-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    animation: lbZoomIn 0.3s ease;
    user-select: none;
}
@keyframes lbZoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.renovation .ren-lightbox__prev,
.renovation .ren-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.renovation .ren-lightbox__prev { left: 20px; }
.renovation .ren-lightbox__next { right: 20px; }
.renovation .ren-lightbox__prev:hover,
.renovation .ren-lightbox__next:hover { background: var(--ren-primary); }
.renovation .ren-lightbox__prev svg,
.renovation .ren-lightbox__next svg { width: 24px; height: 24px; }
.renovation .ren-lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================================================
   FOOTER MAP
   ============================================================================ */
.renovation .ren-footer__map-wrap {
    margin-bottom: 32px;
}
.renovation .ren-footer__map {
    width: 100%;
    height: 300px;
    border-radius: var(--ren-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================================
   COOKIE BANNER — adapted
   ============================================================================ */
.renovation .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ren-bg-dark);
    padding: 16px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.renovation .cookie-banner.is-visible {
    transform: translateY(0);
}
.renovation .cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.renovation .cookie-banner__text {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}
.renovation .cookie-banner__text a {
    color: var(--ren-primary);
    text-decoration: underline;
}
.renovation .cookie-banner__buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.renovation .cookie-banner .btn--sm {
    padding: 8px 16px;
    font-size: 13px;
}
.renovation .cookie-banner .btn--primary {
    background: var(--ren-primary);
    color: #fff;
}
.renovation .cookie-banner .btn--primary:hover {
    background: var(--ren-primary-hover);
}

/* ============================================================================
   RESPONSIVE — TABLET
   ============================================================================ */
@media (max-width: 1024px) {
    .renovation .ren-header__nav { display: none; }
    .renovation .ren-header__phone { display: none; }
    .renovation .ren-header__burger { display: flex; }
    .renovation .ren-hero__inner { flex-direction: column; text-align: left; padding: 60px 32px; gap: 48px; }
    .renovation .ren-hero__content { max-width: 100%; }
    .renovation .ren-hero__badges { justify-content: flex-start; flex-wrap: wrap; }
    .renovation .ren-hero__free { justify-content: flex-start; }
    .renovation .ren-hero__cta { margin: 0 auto 12px 0; }
    .renovation .ren-service__inner { flex-direction: column; }
    .renovation .ren-portfolio-section__inner { flex-direction: column; }
    .renovation .ren-portfolio-section__sidebar { flex: none; width: 100%; }
    .renovation .ren-portfolio__grid { grid-template-columns: repeat(2, 1fr); }
    .renovation .blog-preview__grid { grid-template-columns: repeat(2, 1fr); }
    .renovation .ren-packages__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .renovation .ren-contact__inner { flex-direction: column; }
    .renovation .ren-footer__inner { flex-wrap: wrap; }
}

/* ============================================================================
   RESPONSIVE — MOBILE
   ============================================================================ */
@media (max-width: 600px) {
    :root {
        --ren-pad: 16px;
        --ren-header-h: 60px;
    }
    .renovation .ren-header__phone { display: none; }
    .renovation .ren-header__cta { display: none; }
    .renovation .ren-header__burger { display: flex; margin-left: auto; }
    .renovation .ren-hero { min-height: auto; margin-top: calc(60px + 12px); border-radius: 20px; margin-left: 12px; margin-right: 12px; }
    .renovation .ren-hero__inner { padding: 40px 16px; gap: 32px; flex-direction: column; text-align: left; }
    .renovation .ren-hero__title { font-size: 28px; letter-spacing: -.03em; }
    .renovation .ren-hero__price { font-size: 36px; }
    .renovation .ren-hero__subtitle { font-size: 14px; }
    .renovation .ren-hero__badges { flex-direction: column; gap: 10px; align-items: flex-start; }
    .renovation .ren-hero__badge { padding: 8px 14px; border-radius: 12px; }
    .renovation .ren-hero__badge-icon { width: 32px; height: 32px; }
    .renovation .ren-hero__badge-name,
    .renovation .ren-hero__badge-score { font-size: 13px; }
    .renovation .ren-hero__badge-desc { font-size: 10px; }
    .renovation .ren-problems__grid { grid-template-columns: 1fr; }
    .renovation .ren-problems__title { font-size: 24px; }
    .renovation .ren-problem-card { flex-direction: column; gap: 12px; padding: 20px; }
    .renovation .ren-service__inner { flex-direction: column; gap: 32px; }
    .renovation .ren-service__title { font-size: 24px; }
    .renovation .ren-service__title-price { font-size: 32px; }
    .renovation .ren-service__info-card { padding: 24px; }
    .renovation .ren-packages__title { font-size: 24px; }
    .renovation .ren-packages__grid { grid-template-columns: 1fr; max-width: 100%; }
    .renovation .ren-portfolio-section__inner { flex-direction: column; gap: 32px; }
    .renovation .ren-portfolio__grid { grid-template-columns: 1fr; }
    .renovation .ren-portfolio__filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
    .renovation .ren-contact { padding: 60px 0; }
    .renovation .ren-contact__title { font-size: 24px; }
    .renovation .ren-contact__form-row { flex-direction: column; }
    .renovation .ren-contact__trust { flex-direction: column; gap: 8px; }
    .renovation .ren-footer__inner { flex-direction: column; gap: 24px; }
    .renovation .ren-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
    .renovation .ren-footer__legal { flex-wrap: wrap; justify-content: center; }
    .renovation .ren-advantages__title { font-size: 22px; }
    .renovation .ren-portfolio__title { font-size: 22px; }
    .renovation .blog-preview { padding: 60px 0; }
    .renovation .ren-gallery { padding: 60px 0; }
    .renovation .ren-gallery__title { font-size: 24px; margin-bottom: 24px; }
    .renovation .ren-gallery__item { flex: 0 0 calc(50% - 8px); }
    .renovation .ren-gallery__arrow { width: 40px; height: 40px; }
    .renovation .ren-gallery__arrow svg { width: 16px; height: 16px; }
    .renovation .ren-footer__map { height: 200px; }
    .renovation .ren-lightbox__prev,
    .renovation .ren-lightbox__next { width: 40px; height: 40px; }
    .renovation .ren-lightbox__prev { left: 10px; }
    .renovation .ren-lightbox__next { right: 10px; }
    .renovation .ren-lightbox__prev svg,
    .renovation .ren-lightbox__next svg { width: 18px; height: 18px; }
    .renovation .ren-lightbox__close { top: 10px; right: 10px; width: 36px; height: 36px; font-size: 22px; }
    .renovation .ren-problems,
    .renovation .ren-service,
    .renovation .ren-packages,
    .renovation .ren-portfolio-section,
    .renovation .chat-section,
    .renovation .ren-reviews { padding: 60px 0; }
    .renovation .section-title { font-size: 22px; }
}
