/* Дополнительные стили для темы */

html {
    overflow-x: clip;
}

:root {
    --btn-height: 3.5rem;
    --btn-radius: var(--radius);
    --btn-padding-x: 1.5rem;
    --btn-font-size: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: var(--btn-height);
    height: var(--btn-height);
    padding: 0 var(--btn-padding-x);
    border-radius: var(--btn-radius);
    font-family: Montserrat, system-ui, sans-serif;
    font-size: var(--btn-font-size);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-full {
    width: 100%;
}

.btn-cta {
    min-height: var(--btn-height);
    height: var(--btn-height);
    padding: 0 var(--btn-padding-x);
    border-radius: var(--btn-radius);
    font-size: var(--btn-font-size);
}

.btn-outline {
    color: hsl(var(--foreground));
    background: transparent;
    border-color: hsl(var(--border));
}

.btn-outline:hover {
    background: hsl(var(--muted));
}

.btn-outline-light {
    color: #fff;
    background: rgb(255 255 255 / 0.15);
    border-color: rgb(255 255 255 / 0.6);
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background: rgb(255 255 255 / 0.25);
}

.btn-secondary {
    color: #fff;
    background: rgb(255 255 255 / 0.1);
    border-color: rgb(255 255 255 / 0.2);
}

.btn-secondary:hover {
    background: rgb(255 255 255 / 0.2);
    border-color: rgb(255 255 255 / 0.3);
}

.btn-icon {
    width: var(--btn-height);
    min-width: var(--btn-height);
    padding: 0;
    color: hsl(var(--foreground));
    background: hsl(var(--background));
    border-color: hsl(var(--border));
    box-shadow: var(--shadow-medium);
}

.btn-icon:hover {
    color: hsl(var(--primary-foreground));
    background: hsl(var(--primary));
    border-color: hsl(var(--primary));
}

.site-brand__text {
    min-width: 0;
    line-height: 1.25;
}

.site-brand__title {
    display: block;
    font-family: Montserrat, system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease;
}

.site-brand__subtitle {
    display: block;
    margin-top: 0.125rem;
    font-size: 0.75rem;
    color: rgb(255 255 255 / 0.6);
    transition: color 0.3s ease;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    text-decoration: none;
}

.site-brand:hover .site-brand__title {
    color: hsl(var(--primary));
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header[data-scrolled="true"] {
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(var(--border) / 0.5);
    box-shadow: var(--shadow-medium);
}

.site-header[data-scrolled="true"] .site-brand__title {
    color: hsl(var(--foreground));
}

.site-header[data-scrolled="true"] .site-brand__subtitle {
    color: hsl(var(--muted-foreground));
}

.site-header[data-scrolled="true"] .site-brand:hover .site-brand__title {
    color: hsl(var(--primary));
}

.site-header__bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 5rem;
}

.site-header__desktop {
    display: none;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    min-width: 0;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-header__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: rgb(255 255 255 / 0.9);
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header__link:hover {
    color: #fff;
    background: rgb(255 255 255 / 0.1);
}

.site-header__link--active {
    color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.1);
}

.site-header[data-scrolled="true"] .site-header__link {
    color: hsl(var(--foreground));
}

.site-header[data-scrolled="true"] .site-header__link:hover {
    color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.1);
}

.site-header[data-scrolled="true"] .site-header__link--active {
    color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.1);
}

.site-header__chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.site-header__dropdown.group:hover .site-header__chevron {
    transform: rotate(180deg);
}

.site-header__dropdown {
    position: relative;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: Montserrat, system-ui, sans-serif;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-header__phone:hover {
    color: hsl(var(--primary));
}

.site-header__phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
}

.site-header__phone-text {
    display: none;
}

.site-header[data-scrolled="true"] .site-header__phone {
    color: hsl(var(--foreground));
}

.site-header[data-scrolled="true"] .site-header__phone:hover {
    color: hsl(var(--primary));
}

.site-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    padding: 0.5rem;
    border: 0;
    border-radius: 0.5rem;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header__toggle:hover {
    background: rgb(255 255 255 / 0.1);
}

.site-header[data-scrolled="true"] .site-header__toggle {
    color: hsl(var(--foreground));
}

.site-header[data-scrolled="true"] .site-header__toggle:hover {
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
}

@media (min-width: 1280px) {
    .site-header__phone-text {
        display: inline;
    }
}

@media (min-width: 1024px) {
    .site-header__desktop {
        display: flex;
    }

    .site-header__toggle {
        display: none;
    }
}

.site-brand:hover .site-brand__text span:first-child {
    color: hsl(var(--primary));
}

header[data-scrolled="true"] .site-brand:hover .site-brand__text span:first-child {
    color: hsl(var(--primary)) !important;
}

/* Старые классы — для совместимости */
header[data-scrolled="true"] .header-text-white {
    color: hsl(var(--foreground)) !important;
}

header[data-scrolled="true"] .header-text-white:hover {
    color: hsl(var(--primary)) !important;
}

header[data-scrolled="true"] .header-text-muted {
    color: hsl(var(--muted-foreground)) !important;
}

header[data-scrolled="true"] .header-button-white:hover {
    background-color: hsl(var(--primary) / 0.1) !important;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: calc(5rem + 2.5rem) 0 4.5rem;
}

@media (min-width: 1024px) {
    .page-hero {
        padding: calc(5rem + 3.5rem) 0 5.5rem;
    }
}

.page-hero--dark {
    background: hsl(220 30% 12%);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay--gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(0 0 0 / 0.9), rgb(0 0 0 / 0.7), rgb(0 0 0 / 0.5));
}

.page-hero__overlay--dots {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image: radial-gradient(circle at 1px 1px, rgb(255 255 255 / 0.15) 1px, transparent 0);
    background-size: 50px 50px;
}

.page-hero__inner {
    position: relative;
    z-index: 10;
    max-width: 48rem;
}

.page-hero__badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgb(255 255 255 / 0.1);
    color: rgb(255 255 255 / 0.8);
    font-size: 0.875rem;
    font-weight: 600;
}

.page-hero__title {
    margin: 0 0 1.5rem;
    font-family: Montserrat, system-ui, sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
}

.page-hero__subtitle {
    margin: 0;
    max-width: 42rem;
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: rgb(255 255 255 / 0.7);
}

.page-hero__meta {
    margin-top: 2rem;
}

.page-hero--service {
    min-height: clamp(22rem, 52vh, 34rem);
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
}

@media (min-width: 1024px) {
    .page-hero--service {
        padding-bottom: 5rem;
    }
}

.page-hero--service .page-hero__bg img {
    opacity: 1;
    object-position: center;
}

.page-hero__overlay--service {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            105deg,
            hsl(220 30% 12% / 0.98) 0%,
            hsl(220 30% 12% / 0.92) 34%,
            hsl(220 30% 12% / 0.55) 58%,
            hsl(220 30% 12% / 0.2) 100%
        ),
        linear-gradient(
            to top,
            hsl(220 30% 12% / 0.85) 0%,
            transparent 42%
        );
}

.page-hero--service .page-hero__inner {
    max-width: 52rem;
}

.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.125rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    border-radius: 0.75rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-medium);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    margin-bottom: 1rem;
    color: hsl(var(--muted-foreground));
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-item {
    padding: 1.5rem;
}

.advantage-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.25rem;
    border-radius: 1rem;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.advantage-description {
    color: hsl(var(--muted-foreground));
}

.contact-card {
    display: flex;
    gap: 1rem;
    min-width: 0;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    box-shadow: var(--shadow-soft, 0 1px 3px rgb(0 0 0 / 0.08));
}

.contact-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card__label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.25rem;
}

.contact-card__value {
    display: block;
    font-family: var(--font-heading, inherit);
    font-weight: 700;
    color: hsl(var(--foreground));
    text-decoration: none;
    transition: color 0.2s ease;
    overflow-wrap: anywhere;
}

a.contact-card__value:hover {
    color: hsl(var(--primary));
}

.contact-card__value--secondary {
    margin-top: 0.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: hsl(var(--muted-foreground));
}

.contact-card__note {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.contact-messengers {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--muted) / 0.3);
}

.contact-messengers__title {
    font-family: var(--font-heading, inherit);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.contact-map {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 4 / 3;
    min-height: 280px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid hsl(var(--border));
    box-shadow: var(--shadow-soft, 0 1px 3px rgb(0 0 0 / 0.08));
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
}

.contacts-layout,
.contacts-form-layout {
    display: grid;
    gap: 3rem;
    align-items: start;
}

.contacts-info {
    min-width: 0;
}

.contacts-cards {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contacts-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .contact-map {
        aspect-ratio: auto;
        min-height: 480px;
    }

    .contact-map iframe {
        min-height: 480px;
    }

    .contacts-layout,
    .contacts-form-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }
}

.contact-info {
    text-align: center;
    font-size: 1.125rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info a {
    color: hsl(var(--primary));
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Стили для слайдера клиентов */
.clients-slider-track {
    transition: transform 0.4s ease;
    display: flex;
}

.clients-slider button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary .text-xs {
    font-weight: 500;
}

.trubo4ist-cf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trubo4ist-cf7-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .trubo4ist-cf7-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.trubo4ist-cf7-input,
.trubo4ist-cf7-textarea,
.trubo4ist-cf7 .wpcf7-form-control-wrap input,
.trubo4ist-cf7 .wpcf7-form-control-wrap textarea {
    width: 100%;
    min-height: var(--btn-height);
    padding: 0.75rem 1rem;
    border-radius: var(--btn-radius);
    border: 1px solid transparent;
    font-size: var(--btn-font-size);
    line-height: 1.5;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.trubo4ist-cf7-textarea,
.trubo4ist-cf7 .wpcf7-form-control-wrap textarea {
    min-height: 5rem;
    resize: vertical;
}

.trubo4ist-cf7--dark .trubo4ist-cf7-input,
.trubo4ist-cf7--dark .trubo4ist-cf7-textarea,
.trubo4ist-cf7--dark .wpcf7-form-control-wrap input,
.trubo4ist-cf7--dark .wpcf7-form-control-wrap textarea {
    color: #fff;
    background: rgb(255 255 255 / 0.1);
    border-color: rgb(255 255 255 / 0.2);
}

.trubo4ist-cf7--dark .trubo4ist-cf7-input::placeholder,
.trubo4ist-cf7--dark .trubo4ist-cf7-textarea::placeholder,
.trubo4ist-cf7--dark .wpcf7-form-control-wrap input::placeholder,
.trubo4ist-cf7--dark .wpcf7-form-control-wrap textarea::placeholder {
    color: rgb(255 255 255 / 0.5);
}

.trubo4ist-cf7--light .trubo4ist-cf7-input,
.trubo4ist-cf7--light .trubo4ist-cf7-textarea,
.trubo4ist-cf7--light .wpcf7-form-control-wrap input,
.trubo4ist-cf7--light .wpcf7-form-control-wrap textarea {
    color: hsl(var(--foreground));
    background: hsl(var(--background));
    border-color: hsl(var(--border));
}

.trubo4ist-cf7-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0.5rem;
}

@media (min-width: 640px) {
    .trubo4ist-cf7-actions {
        flex-direction: row;
    }
}

.trubo4ist-cf7-actions .wpcf7-submit,
.trubo4ist-cf7-actions input[type="submit"] {
    width: 100%;
}

.trubo4ist-cf7-actions .flex-1 {
    flex: 1 1 0%;
}

.trubo4ist-cf7-privacy {
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.trubo4ist-cf7--dark .trubo4ist-cf7-privacy {
    color: rgb(255 255 255 / 0.5);
}

.trubo4ist-cf7--light .trubo4ist-cf7-privacy {
    color: hsl(var(--muted-foreground));
}

.trubo4ist-cf7-privacy a {
    text-decoration: underline;
}

.trubo4ist-cf7-privacy a:hover {
    text-decoration: none;
}

.trubo4ist-cf7 .wpcf7-response-output {
    margin: 0;
    padding: 0.875rem 1rem;
    border-radius: var(--btn-radius);
    border-width: 1px;
    font-size: 0.875rem;
}

.trubo4ist-cf7--dark .wpcf7-response-output {
    color: #fff;
    border-color: rgb(255 255 255 / 0.2);
}

.trubo4ist-cf7 .wpcf7-not-valid-tip {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.trubo4ist-cf7 .wpcf7-spinner {
    margin-left: 0.75rem;
}

.work-gallery-photo {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.work-gallery-photo__frame {
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.work-gallery-photo:hover .work-gallery-photo__frame,
.work-gallery-photo:focus-visible .work-gallery-photo__frame {
    border-color: hsl(var(--primary) / 0.35);
    box-shadow: var(--shadow-medium);
    transform: translateY(-0.15rem);
}

.work-gallery-photo:focus-visible {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 4px;
    border-radius: 1rem;
}

.review-photos {
    margin: 0 0 1rem;
}

.review-photos__grid {
    display: grid;
    grid-template-columns: repeat(2, 3.25rem);
    gap: 0.375rem;
    width: fit-content;
    max-width: 100%;
}

@media (min-width: 768px) {
    .review-photos__grid {
        grid-template-columns: repeat(4, 3.25rem);
        gap: 0.375rem;
    }
}

.review-photos__frame {
    position: relative;
    display: block;
    aspect-ratio: 1;
    border-radius: 0.375rem;
    overflow: hidden;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
}

.review-photos__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
}

.review-photos__more {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(15 23 42 / 0.62);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
}

.review-photos .work-gallery-photo {
    width: 3.25rem;
    height: 3.25rem;
}

.review-photos .work-gallery-photo:hover .review-photos__frame,
.review-photos .work-gallery-photo:focus-visible .review-photos__frame {
    border-color: hsl(var(--primary) / 0.35);
}

.review-photos .work-gallery-photo:hover .review-photos__image,
.review-photos .work-gallery-photo:focus-visible .review-photos__image {
    opacity: 0.92;
}

.review-photos .work-gallery-photo:focus-visible {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
    border-radius: 0.5rem;
}

.work-gallery-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.work-gallery-pagination ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.work-gallery-pagination li {
    margin: 0;
}

.work-gallery-pagination a.page-numbers,
.work-gallery-pagination span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    height: 2.75rem;
    padding: 0 0.875rem;
    border-radius: var(--btn-radius);
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    color: hsl(var(--foreground));
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.work-gallery-pagination a.page-numbers:hover,
.work-gallery-pagination a.page-numbers:focus-visible {
    border-color: hsl(var(--primary) / 0.35);
    color: hsl(var(--primary));
}

.work-gallery-pagination span.page-numbers.current {
    background: hsl(var(--primary));
    border-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.work-gallery-pagination span.page-numbers.dots {
    min-width: auto;
    padding: 0 0.25rem;
    border: 0;
    background: transparent;
    color: hsl(var(--muted-foreground));
}

.work-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.work-gallery-lightbox.hidden {
    display: none !important;
}

.work-gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0.82);
    backdrop-filter: blur(6px);
}

.work-gallery-lightbox__panel {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.work-gallery-lightbox__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    color: #fff;
}

.work-gallery-lightbox__title {
    font-family: Montserrat, system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
}

.work-gallery-lightbox__counter {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: rgb(255 255 255 / 0.7);
}

.work-gallery-lightbox__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: var(--btn-radius);
    background: rgb(255 255 255 / 0.12);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.work-gallery-lightbox__close:hover {
    background: rgb(255 255 255 / 0.2);
}

.work-gallery-lightbox__stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.work-gallery-lightbox__image {
    max-width: 100%;
    max-height: calc(100vh - 10rem);
    border-radius: calc(var(--btn-radius) + 0.25rem);
    box-shadow: var(--shadow-strong);
    object-fit: contain;
    background: #111;
}

.work-gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--btn-height);
    height: var(--btn-height);
    border: 0;
    border-radius: var(--btn-radius);
    background: rgb(255 255 255 / 0.12);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.work-gallery-lightbox__nav:hover:not(:disabled) {
    background: rgb(255 255 255 / 0.22);
}

.work-gallery-lightbox__nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.work-gallery-lightbox__nav--prev {
    left: 0.75rem;
}

.work-gallery-lightbox__nav--next {
    right: 0.75rem;
}

@media (max-width: 640px) {
    .work-gallery-lightbox__nav {
        width: 2.5rem;
        height: 2.5rem;
    }

    .work-gallery-lightbox__nav--prev {
        left: 0.25rem;
    }

    .work-gallery-lightbox__nav--next {
        right: 0.25rem;
    }
}

.company-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-timeline::before {
    content: '';
    position: absolute;
    top: 0.75rem;
    bottom: 0.75rem;
    left: 1.35rem;
    width: 2px;
    background: linear-gradient(180deg, hsl(var(--primary)), hsl(var(--border)));
}

.company-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    gap: 1.5rem;
    align-items: start;
}

.company-timeline__marker {
    position: relative;
    z-index: 1;
}

.company-timeline__year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5.5rem;
    height: 2.75rem;
    padding: 0 0.75rem;
    border-radius: var(--btn-radius);
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-family: Montserrat, system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-medium);
}

.company-timeline__content {
    padding: 1.5rem;
    border-radius: 1rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    box-shadow: var(--shadow-soft);
}

@media (max-width: 640px) {
    .company-timeline::before {
        left: 1.1rem;
    }

    .company-timeline__item {
        grid-template-columns: 4.5rem 1fr;
        gap: 1rem;
    }

    .company-timeline__year {
        min-width: 4.5rem;
        height: 2.5rem;
        font-size: 0.8125rem;
    }
}

/* Стили для модального окна */
#form-modal {
    animation: fadeIn 0.3s ease;
}

#form-modal.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#form-modal > div {
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

.header-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 18rem;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 60;
}

.header-dropdown__panel {
    padding: 0.75rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--background) / 0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-medium);
}

.site-header[data-scrolled="true"] .header-dropdown__panel {
    background: hsl(var(--background));
}

.header-dropdown__all {
    display: block;
    padding: 0.625rem 0.875rem;
    margin-bottom: 0.25rem;
    border-radius: 0.625rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: hsl(var(--primary));
    text-decoration: none;
}

.header-dropdown__all:hover {
    background: hsl(var(--primary) / 0.08);
}

.header-dropdown__item {
    display: block;
    padding: 0.625rem 0.875rem;
    border-radius: 0.625rem;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header-dropdown__item:hover {
    background: hsl(var(--muted) / 0.5);
    color: hsl(var(--primary));
}

.service-breadcrumbs a {
    text-decoration: none;
}

.entry-content,
.richtext,
.service-content {
    color: hsl(var(--muted-foreground));
    font-size: 1.0625rem;
    line-height: 1.75;
}

.richtext--lg,
.service-content {
    font-size: 1.125rem;
}

.richtext--intro {
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center;
}

.entry-content > :first-child,
.richtext > :first-child,
.service-content > :first-child {
    margin-top: 0;
}

.entry-content p,
.richtext p,
.service-content p {
    margin: 0 0 1.25rem;
}

.entry-content p:last-child,
.richtext p:last-child,
.service-content p:last-child {
    margin-bottom: 0;
}

.entry-content h2,
.richtext h2,
.service-content h2 {
    margin: 2.5rem 0 1rem;
    font-family: Montserrat, system-ui, sans-serif;
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    line-height: 1.25;
    color: hsl(var(--foreground));
    letter-spacing: -0.01em;
}

.entry-content h2:first-child,
.richtext h2:first-child,
.service-content h2:first-child {
    margin-top: 0;
}

.entry-content h3,
.richtext h3,
.service-content h3 {
    margin: 2rem 0 0.75rem;
    font-family: Montserrat, system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: hsl(var(--foreground));
}

.entry-content h4,
.richtext h4,
.service-content h4 {
    margin: 1.5rem 0 0.5rem;
    font-family: Montserrat, system-ui, sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
    color: hsl(var(--foreground));
}

.entry-content ul,
.entry-content ol,
.richtext ul,
.richtext ol,
.service-content ul,
.service-content ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
}

.entry-content ul,
.richtext ul,
.service-content ul {
    list-style: disc;
}

.entry-content ol,
.richtext ol,
.service-content ol {
    list-style: decimal;
}

.entry-content li,
.richtext li,
.service-content li {
    margin-bottom: 0.625rem;
    padding-left: 0.25rem;
}

.entry-content li::marker,
.richtext li::marker,
.service-content li::marker {
    color: hsl(var(--primary));
}

.entry-content li:last-child,
.richtext li:last-child,
.service-content li:last-child {
    margin-bottom: 0;
}

.entry-content strong,
.entry-content b,
.richtext strong,
.richtext b,
.service-content strong,
.service-content b {
    color: hsl(var(--foreground));
    font-weight: 700;
}

.entry-content a,
.richtext a,
.service-content a {
    color: hsl(var(--primary));
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: hsl(var(--primary) / 0.35);
    text-underline-offset: 0.2em;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.entry-content a:hover,
.richtext a:hover,
.service-content a:hover {
    color: hsl(var(--primary) / 0.85);
    text-decoration-color: hsl(var(--primary));
}

.entry-content blockquote,
.richtext blockquote,
.service-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid hsl(var(--primary));
    border-radius: 0 0.75rem 0.75rem 0;
    background: hsl(var(--muted) / 0.35);
    color: hsl(var(--foreground));
    font-style: italic;
}

.entry-content hr,
.richtext hr,
.service-content hr {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid hsl(var(--border));
}

.service-features,
.service-cta-box {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
}

.service-cta-box {
    background: hsl(var(--primary) / 0.06);
    border-color: hsl(var(--primary) / 0.15);
}

.service-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-faq__details {
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    background: hsl(var(--card));
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-faq__details[open] {
    border-color: hsl(var(--primary) / 0.35);
    box-shadow: var(--shadow-soft, 0 4px 16px rgb(0 0 0 / 0.06));
}

.service-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    font-family: Montserrat, system-ui, sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
    color: hsl(var(--foreground));
    cursor: pointer;
    list-style: none;
}

.service-faq__question::-webkit-details-marker {
    display: none;
}

.service-faq__question::marker {
    content: '';
}

.service-faq__icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
    transition: transform 0.25s ease;
}

.service-faq__details[open] .service-faq__icon {
    transform: rotate(180deg);
}

.service-faq__answer {
    padding: 0 1.25rem 1.25rem;
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid hsl(var(--border));
}

.service-faq__answer p {
    margin: 1rem 0 0;
}

/* Хлебные крошки */
.breadcrumbs {
    margin-bottom: 1.5rem;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.875rem;
    line-height: 1.4;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--muted-foreground));
}

.breadcrumbs__item:not(:last-child)::after {
    content: '/';
    color: hsl(var(--muted-foreground) / 0.5);
}

.breadcrumbs__link {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
    color: hsl(var(--primary));
}

.breadcrumbs__current {
    color: hsl(var(--foreground));
    font-weight: 600;
}

.breadcrumbs--light .breadcrumbs__item,
.breadcrumbs--light .breadcrumbs__link {
    color: rgb(255 255 255 / 0.65);
}

.breadcrumbs--light .breadcrumbs__item:not(:last-child)::after {
    color: rgb(255 255 255 / 0.35);
}

.breadcrumbs--light .breadcrumbs__link:hover {
    color: #fff;
}

.breadcrumbs--light .breadcrumbs__current {
    color: rgb(255 255 255 / 0.92);
}

.breadcrumbs--hero {
    margin-bottom: 1.5rem;
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0.55);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
    opacity: 1;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(100%, 22rem);
    height: 100%;
    padding: 1.25rem;
    background: hsl(var(--background));
    border-left: 1px solid hsl(var(--border));
    box-shadow: -8px 0 32px rgb(0 0 0 / 0.15);
    transform: translateX(100%);
    transition: transform 0.25s ease;
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid hsl(var(--border));
}

.mobile-menu__title {
    margin: 0;
    font-family: Montserrat, system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.mobile-menu__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 0.5rem;
    background: transparent;
    color: hsl(var(--foreground));
    cursor: pointer;
    transition: background 0.2s ease;
}

.mobile-menu__close:hover {
    background: hsl(var(--muted) / 0.5);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    overflow-y: auto;
}

.mobile-menu__link {
    display: block;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
}

.mobile-menu__link--sub {
    padding-left: 1.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
}

.mobile-menu__link--sub:hover {
    color: hsl(var(--primary));
}

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid hsl(var(--border));
}

body.mobile-menu-open {
    overflow: hidden;
}

.trubo4ist-cf7-acceptance,
.trubo4ist-cf7 .wpcf7-acceptance {
    display: block;
    margin-top: 0.75rem;
}

.trubo4ist-cf7-acceptance label,
.trubo4ist-cf7 .wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    cursor: pointer;
}

.trubo4ist-cf7--dark .trubo4ist-cf7-acceptance label,
.trubo4ist-cf7--dark .wpcf7-acceptance label {
    color: rgb(255 255 255 / 0.75);
}

.trubo4ist-cf7--light .trubo4ist-cf7-acceptance label,
.trubo4ist-cf7--light .wpcf7-acceptance label {
    color: hsl(var(--muted-foreground));
}

.trubo4ist-cf7-acceptance a,
.trubo4ist-cf7 .wpcf7-acceptance a {
    color: hsl(var(--primary));
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.trubo4ist-cf7-acceptance input[type="checkbox"],
.trubo4ist-cf7 .wpcf7-acceptance input[type="checkbox"] {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    accent-color: hsl(var(--primary));
}

.price-list {
    max-width: 56rem;
    margin: 0 auto;
}

.price-list__note {
    margin: 3rem auto 0;
    max-width: 48rem;
    text-align: center;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: hsl(var(--muted-foreground));
}

.price-section {
    padding: 1.5rem;
    border: 1px solid hsl(var(--border));
    border-radius: 1.25rem;
    background: hsl(var(--card));
    box-shadow: var(--shadow-soft);
}

.price-section__header {
    margin-bottom: 1.25rem;
}

.price-section__title {
    margin: 0 0 0.5rem;
    font-family: Montserrat, system-ui, sans-serif;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: hsl(var(--foreground));
}

.price-section__description {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: hsl(var(--muted-foreground));
}

.price-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-table__head,
.price-table__row {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.7fr) minmax(0, 0.7fr);
    gap: 1rem;
    align-items: start;
}

.price-table__head {
    padding: 0 1rem 0.75rem;
    border-bottom: 1px solid hsl(var(--border));
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
}

.price-table__row {
    padding: 1rem;
    border-radius: 0.9rem;
    background: hsl(var(--muted) / 0.18);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.price-table__row:hover {
    background: hsl(var(--primary) / 0.06);
    box-shadow: inset 0 0 0 1px hsl(var(--primary) / 0.12);
}

.price-table__name {
    display: block;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.price-table__link {
    font-weight: 600;
    color: hsl(var(--primary));
    text-decoration: none;
    transition: color 0.2s ease;
}

.price-table__link:hover {
    color: hsl(var(--primary) / 0.85);
    text-decoration: underline;
}

.price-table__note {
    margin: 0.35rem 0 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: hsl(var(--muted-foreground));
}

.price-table__unit {
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
}

.price-table__price {
    font-family: Montserrat, system-ui, sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    white-space: nowrap;
}

@media (max-width: 768px) {
    .price-section {
        padding: 1rem;
    }

    .price-table__head {
        display: none;
    }

    .price-table__row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .price-table__cell--unit,
    .price-table__cell--price {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .price-table__cell--unit::before,
    .price-table__cell--price::before {
        content: attr(data-label);
        font-size: 0.8125rem;
        font-weight: 600;
        color: hsl(var(--muted-foreground));
    }
}

.home-prices__table {
    border: 1px solid hsl(var(--border));
    border-radius: 1.25rem;
    background: hsl(var(--card));
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.home-prices__head,
.home-prices__row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.8fr);
    gap: 1rem;
    align-items: center;
}

.home-prices__head {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid hsl(var(--border));
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
    background: hsl(var(--muted) / 0.25);
}

.home-prices__row {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid hsl(var(--border));
    transition: background-color 0.2s ease;
}

.home-prices__row:last-child {
    border-bottom: 0;
}

.home-prices__row:hover {
    background: hsl(var(--primary) / 0.04);
}

.home-prices__link {
    display: block;
    font-weight: 600;
    color: hsl(var(--foreground));
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-prices__link:hover {
    color: hsl(var(--primary));
}

.home-prices__name {
    display: block;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.home-prices__category {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    color: hsl(var(--muted-foreground));
}

.home-prices__price {
    display: block;
    font-family: Montserrat, system-ui, sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: hsl(var(--primary));
    white-space: nowrap;
}

.home-prices__unit {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.8125rem;
    color: hsl(var(--muted-foreground));
}

.consultation-cta {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid hsl(var(--primary) / 0.2);
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--primary) / 0.03));
    box-shadow: var(--shadow-soft);
}

@media (min-width: 992px) {
    .consultation-cta {
        grid-template-columns: 1.4fr 0.8fr;
        align-items: center;
        padding: 2.5rem 3rem;
    }
}

.consultation-cta__badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.consultation-cta__title {
    margin: 0 0 0.75rem;
    font-family: Montserrat, system-ui, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: hsl(var(--foreground));
}

.consultation-cta__text {
    margin: 0 0 1.25rem;
    max-width: 38rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: hsl(var(--muted-foreground));
}

.consultation-cta__features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.consultation-cta__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: hsl(var(--foreground));
}

.consultation-cta__check {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    color: hsl(var(--primary));
}

.consultation-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.consultation-cta__note {
    margin: 0.25rem 0 0;
    text-align: center;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

@media (max-width: 768px) {
    .home-prices__head {
        display: none;
    }

    .home-prices__row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .home-prices__cell--price {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 1rem;
    }

    .home-prices__cell--price::before {
        content: attr(data-label);
        font-size: 0.8125rem;
        font-weight: 600;
        color: hsl(var(--muted-foreground));
    }

    .home-prices__unit {
        display: inline;
        margin-top: 0;
        margin-left: 0.35rem;
    }
}
