/* ===== ARMOR TEMPLATE — КОНТРАСТНЫЙ СТИЛЬ ===== */
/* Палитра: графит #1c1c1e, кремовый #f5f0eb, акцент #ff6b00 */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;600&display=swap');

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

:root {
    --color-dark: #1c1c1e;
    --color-light: #f5f0eb;
    --color-accent: #ff6b00;
    --font-heading: 'Inter', sans-serif;  /* Тонкий, современный */
    --font-body: 'Inter', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-dark);
    color: var(--color-light);
    line-height: 1.5;
    font-weight: 300;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

h1, h2, h3, .hero-title, .section-title {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== ШАПКА ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    transition: var(--transition);
    background: transparent;
    backdrop-filter: blur(0);
}

.site-header.scrolled {
    background: rgba(28, 28, 30, 0.85);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 107, 0, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--color-light);
    text-decoration: none;
}

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

.main-nav {
    display: flex;
    gap: 48px;
}

.main-nav a {
    color: var(--color-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--color-accent);
}

.header-contacts .btn-callback {
    background: var(--color-accent);
    border: none;
    color: var(--color-light);
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
}

.header-contacts .btn-callback:hover {
    background: #ff8833;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
}

.header-phone {
    color: var(--color-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-right: 24px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 28px;
    height: 2px;
    background: var(--color-light);
    transition: var(--transition);
}

/* ===== HERO — SPLIT-ЭКРАН ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-dark);
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
}

.hero-label {
    color: var(--color-accent);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.95;
    margin-bottom: 30px;
}

.hero-title span {
    color: var(--color-accent);
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.8;
    max-width: 450px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-light);
    border: none;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #ff8833;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--color-light);
    border: 1px solid rgba(245, 240, 235, 0.3);
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    transition: clip-path 0.8s var(--transition);
}

.hero-right:hover .hero-image {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0.6;
}

/* ===== СЕКЦИИ (ЧЕРЕДОВАНИЕ) ===== */
.section {
    padding: 120px 0;
}

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

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

.section-header {
    margin-bottom: 80px;
}

.section-label {
    color: var(--color-accent);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.7;
    max-width: 600px;
}

/* ===== УСЛУГИ — ГОРИЗОНТАЛЬНЫЕ ПОЛОСЫ ===== */
.services-strip {
    display: flex;
    flex-direction: column;
}

.service-strip-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-bottom: 1px solid rgba(245, 240, 235, 0.1);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.service-strip-item:last-child {
    border-bottom: none;
}

.service-strip-item:hover {
    background: rgba(255, 107, 0, 0.03);
}

.service-strip-left {
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--color-accent);
    opacity: 0.4;
    line-height: 1;
}

.service-info h3 {
    font-size: 36px;
    margin-bottom: 8px;
}

.service-info p {
    opacity: 0.7;
    font-weight: 300;
}

.service-strip-right {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.service-strip-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    transition: var(--transition);
    filter: grayscale(0.3);
}

.service-strip-item:hover .service-strip-image {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    filter: grayscale(0) brightness(1.1);
}

.service-strip-link {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: var(--color-light);
    background: var(--color-accent);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
    z-index: 3;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
}

.service-strip-item:hover .service-strip-link {
    opacity: 1;
    transform: translateX(0);
}

/* ===== ГАЛЕРЕЯ — БЕГУЩАЯ ЛЕНТА ===== */
.gallery-scroll {
    overflow: hidden;
    padding: 20px 0;
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: scroll 40s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-item {
    flex: 0 0 350px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(28, 28, 30, 0.9));
    color: var(--color-light);
    font-size: 14px;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ===== СТАТЬИ ===== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-10px);
}

.article-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 16/10;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-accent);
    color: var(--color-light);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-card h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.article-card p {
    opacity: 0.7;
    font-weight: 300;
    margin-bottom: 16px;
}

.article-link {
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ===== КОНТАКТЫ ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-form-card {
    background: var(--color-dark);
    padding: 48px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}

.section-light .contact-form-card {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 32px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid rgba(245, 240, 235, 0.2);
    color: var(--color-light);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
}

.section-light .form-group input,
.section-light .form-group textarea {
    border-color: rgba(28, 28, 30, 0.15);
    color: var(--color-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.contact-item-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    opacity: 0.6;
}

.contact-item-text a {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

/* ===== ФУТЕР ===== */
.site-footer {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-desc {
    opacity: 0.6;
    font-weight: 300;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    opacity: 0.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: var(--color-light);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
    font-weight: 300;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 240, 235, 0.05);
    opacity: 0.4;
    font-size: 14px;
}

/* ===== МОБИЛЬНОЕ МЕНЮ ===== */
.mobile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-dark);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu nav a {
    color: var(--color-light);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 28px;
    transition: var(--transition);
}

.mobile-menu nav a:hover {
    color: var(--color-accent);
}

.mobile-number {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 30px;
    font-size: 14px;
    opacity: 0.6;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .main-nav { display: none; }
    .header-contacts { display: none; }
    .burger { display: flex; }
    
    .hero-split {
        grid-template-columns: 1fr;
        padding: 120px 0 60px;
    }
    
    .hero-left {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-right {
        min-height: 400px;
        order: -1;
    }
    
    .hero-image {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .hero-divider {
        display: none;
    }
    
    .service-strip-item {
        grid-template-columns: 1fr;
    }
    
    .service-strip-left {
        padding: 30px 20px;
    }
    
    .service-strip-right {
        min-height: 250px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .service-number {
        font-size: 48px;
    }
    
    .service-info h3 {
        font-size: 24px;
    }
}

/* ===== ПЛАВАЮЩАЯ ПАНЕЛЬ ===== */
.float-panel {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 0;
    background: var(--color-dark);
    border: 1px solid rgba(255, 107, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    text-decoration: none;
    transition: var(--transition);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 85% 100%, 0 100%);
}

.float-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateX(-5px);
}

.float-btn-callback {
    background: var(--color-accent);
    border: none;
    color: var(--color-light);
    padding: 16px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== МОДАЛЬНЫЕ ОКНА ===== */
.modal-overlay,
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: blur(8px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active,
.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal,
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    background: var(--color-dark);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 48px;
    max-width: 480px;
    width: 90%;
    z-index: 201;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}

.modal.active,
.popup.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%);
}

.modal-close,
.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-light);
    font-size: 28px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.modal-close:hover,
.popup-close:hover {
    opacity: 1;
    color: var(--color-accent);
}

.modal h3,
.popup-title {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 20px;
}

.modal p,
.popup-text {
    opacity: 0.7;
    margin-bottom: 30px;
}

.popup-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.popup-skip {
    margin-top: 20px;
    text-align: center;
    opacity: 0.4;
    cursor: pointer;
    transition: var(--transition);
}

.popup-skip:hover {
    opacity: 1;
    color: var(--color-accent);
}

.form-success {
    display: none;
    color: #00cc66;
    padding: 12px;
    margin-top: 16px;
    text-align: center;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(28, 28, 30, 0.98);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-inner {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--color-light);
    font-size: 40px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    z-index: 301;
}

.lightbox-close:hover {
    opacity: 1;
    color: var(--color-accent);
}

.lightbox-caption {
    color: var(--color-light);
    text-align: center;
    margin-top: 20px;
    opacity: 0.7;
}

/* ===== ХЛЕБНЫЕ КРОШКИ ===== */
.breadcrumbs {
    padding: 120px 0 20px;
    background: transparent;
    border-bottom: none;
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumbs-list li {
    font-size: 13px;
    color: var(--color-light);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs-list li a {
    color: var(--color-accent);
    text-decoration: none;
    opacity: 1;
}

.breadcrumbs-list li a:hover {
    text-decoration: underline;
}

.breadcrumbs-list li::after {
    content: '/';
    margin-left: 8px;
    color: rgba(245, 240, 235, 0.3);
}

.breadcrumbs-list li:last-child::after {
    display: none;
}

/* ===== ЗАГОЛОВОК СТРАНИЦЫ ===== */
.page-header {
    background: transparent;
    padding: 0 0 40px;
}

.page-header-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 400;
    color: var(--color-light);
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1;
}

.page-header-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--color-light);
    opacity: 0.7;
    max-width: 600px;
}

.section-light .page-header-title,
.section-light .page-header-subtitle,
.section-light .breadcrumbs-list li {
    color: var(--color-dark);
}

.section-light .breadcrumbs-list li a {
    color: var(--color-accent);
}

/* ===== СТРАНИЦА УСЛУГИ ===== */
.service-page {
    padding: 40px 0 80px;
}

.service-page-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.service-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-light);
    margin: 40px 0 20px;
    text-transform: uppercase;
}

.service-content p {
    font-size: 16px;
    color: var(--color-light);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-price-card {
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 32px;
    margin-bottom: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}

.section-light .service-price-card {
    background: #fff;
    border: 1px solid rgba(28, 28, 30, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-price-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.service-price-value {
    font-size: 36px;
    font-family: var(--font-heading);
    color: var(--color-light);
    margin-bottom: 8px;
}

.section-light .service-price-value {
    color: var(--color-dark);
}

.service-price-unit {
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 24px;
}

/* ===== СТРАНИЦА СТАТЬИ ===== */
.article-page-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}

.article-excerpt {
    font-size: 20px;
    line-height: 1.6;
    padding: 30px;
    border-left: 4px solid var(--color-accent);
    background: rgba(255, 107, 0, 0.05);
    margin-bottom: 40px;
    font-weight: 300;
    color: var(--color-light);
}

.section-light .article-excerpt {
    background: rgba(255, 107, 0, 0.03);
    color: var(--color-dark);
}

.article-body {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-light);
    opacity: 0.85;
}

.section-light .article-body {
    color: var(--color-dark);
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin: 40px 0 20px;
    text-transform: uppercase;
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin: 30px 0 15px;
    text-transform: uppercase;
}

.article-body p {
    margin-bottom: 20px;
    font-weight: 300;
}

.article-body ul,
.article-body ol {
    margin: 0 0 20px 24px;
    line-height: 1.8;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body a {
    color: var(--color-accent);
    text-decoration: underline;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.article-body table th {
    background: var(--color-accent);
    color: var(--color-light);
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.article-body table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(245, 240, 235, 0.1);
}

.section-light .article-body table td {
    border-bottom-color: rgba(28, 28, 30, 0.1);
}

.article-image {
    margin-bottom: 30px;
}

.article-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.article-aside {
    position: sticky;
    top: 100px;
}

/* ===== ПРАЙС-ЛИСТ ===== */
.price-table {
    border: 1px solid rgba(255, 107, 0, 0.2);
    background: transparent;
    overflow: hidden;
}

.section-light .price-table {
    border-color: rgba(28, 28, 30, 0.1);
    background: #fff;
}

.price-table-header {
    display: grid;
    grid-template-columns: 2fr 3fr 1.5fr 120px;
    background: var(--color-accent);
    color: var(--color-light);
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-table-row {
    display: grid;
    grid-template-columns: 2fr 3fr 1.5fr 120px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(245, 240, 235, 0.08);
    align-items: center;
    transition: background 0.3s;
}

.section-light .price-table-row {
    border-bottom-color: rgba(28, 28, 30, 0.06);
}

.price-table-row:hover {
    background: rgba(255, 107, 0, 0.03);
}

.price-service-link {
    font-weight: 600;
    color: var(--color-light);
    text-decoration: none;
    font-size: 15px;
}

.section-light .price-service-link {
    color: var(--color-dark);
}

.price-service-link:hover {
    color: var(--color-accent);
}

.price-col-desc {
    font-size: 13px;
    opacity: 0.6;
    padding-right: 16px;
}

.price-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent);
}

.price-unit {
    display: block;
    font-size: 11px;
    opacity: 0.4;
    margin-top: 2px;
}

.price-request {
    font-size: 14px;
    opacity: 0.5;
    font-style: italic;
}

.btn-price-order {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
}

.btn-price-order:hover {
    background: var(--color-accent);
    color: var(--color-light);
}

/* ===== ГАЛЕРЕЯ (ПОЛНАЯ СТРАНИЦА) ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    filter: grayscale(0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(28, 28, 30, 0.9));
    transform: translateY(100%);
    transition: transform 0.4s;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-title {
    color: var(--color-light);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== СТРАНИЦА КОНТАКТОВ ===== */
.map-container {
    border: 1px solid rgba(255, 107, 0, 0.2);
    overflow: hidden;
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    filter: grayscale(0.3);
}

.map-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px;
    background: rgba(28, 28, 30, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 0, 0.15);
    margin-top: 30px;
}

.section-light .map-info {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-light);
}

.section-light .map-info-item {
    color: var(--color-dark);
}

.map-info-icon {
    font-size: 24px;
    color: var(--color-accent);
}

.map-info-item a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}

/* ===== 404 ===== */
.page-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-404 h1 {
    font-family: var(--font-heading);
    font-size: 120px;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 20px;
}

.page-404 p {
    font-size: 20px;
    opacity: 0.7;
    margin-bottom: 40px;
}

/* ===== АДАПТИВ ДЛЯ ВНУТРЕННИХ СТРАНИЦ ===== */
@media (max-width: 1024px) {
    .service-page-grid,
    .article-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-sidebar,
    .article-aside {
        position: static;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .price-table-header {
        display: none;
    }
    
    .price-table-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
    }
    
    .price-col-desc {
        padding-right: 0;
    }
    
    .btn-price-order {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .breadcrumbs {
        padding: 100px 0 20px;
    }
}

@media (max-width: 480px) {
    .page-header-title {
        font-size: 36px;
    }
    
    .service-price-value {
        font-size: 28px;
    }
}

/* ===== СТРАНИЦА ВСЕХ УСЛУГ — КАРТОЧКИ В СТИЛЕ ARMOR ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    display: block;
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 0, 0.15);
    text-decoration: none;
    color: var(--color-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}

.section-light .service-card {
    background: #fff;
    border: 1px solid rgba(28, 28, 30, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    color: var(--color-dark);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.service-card-image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(0.2);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.service-card-title {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 24px 24px 12px;
    line-height: 1.1;
}

.service-card-desc {
    font-size: 15px;
    font-weight: 300;
    opacity: 0.7;
    padding: 0 24px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-card-price {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    font-size: 26px;
    color: var(--color-accent);
    padding: 0 24px;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-block;
    padding: 0 24px 24px;
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s;
}

.service-card:hover .service-card-link {
    transform: translateX(6px);
}

/* Адаптив для страницы услуг */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card-title {
        font-size: 24px;
    }
    
    .service-card-image {
        height: 220px;
    }
}

/* ===== CTA-СЕКЦИЯ В СТИЛЕ ARMOR ===== */
.cta-section {
    position: relative;
    background: var(--color-accent);
    padding: 100px 0;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 0 100%);
    margin-bottom: -1px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.03) 10px,
        rgba(0, 0, 0, 0.03) 20px
    );
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-light);
    margin-bottom: 20px;
    line-height: 1;
}

.cta-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: rgba(245, 240, 235, 0.85);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-white {
    display: inline-block;
    background: var(--color-light);
    color: var(--color-accent);
    border: none;
    padding: 18px 48px;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 92% 100%, 0 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-white:hover {
    background: var(--color-dark);
    color: var(--color-light);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 96% 100%, 0 100%);
}

/* Адаптив */
@media (max-width: 768px) {
    .cta-section {
        padding: 70px 20px;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 97% 100%, 0 100%);
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .cta-section .btn-white {
        padding: 16px 32px;
        font-size: 14px;
        width: 100%;
        max-width: 320px;
    }
}
/* ===== ГАЛЕРЕЯ — БЕГУЩАЯ ЛЕНТА ===== */
.gallery-scroll {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-item {
    flex: 0 0 350px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(28, 28, 30, 0.9), transparent);
    color: var(--color-light);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Адаптив */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 280px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 250px;
    }
    
    .gallery-caption {
        padding: 15px;
        font-size: 12px;
    }
}

/* ===== СТРАНИЦА СТАТЕЙ — КАРТОЧКИ В СТИЛЕ ARMOR ===== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card {
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 0, 0.15);
    text-decoration: none;
    color: var(--color-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-light .article-card {
    background: #fff;
    border: 1px solid rgba(28, 28, 30, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    color: var(--color-dark);
}

.article-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

/* Изображение статьи (если есть) */
.article-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(0.2);
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
    filter: grayscale(0);
}

/* Тело карточки */
.article-card-body {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-card-date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 12px;
    opacity: 0.8;
}

.article-card-title {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.article-card:hover .article-card-title {
    color: var(--color-accent);
}

.article-card-excerpt {
    font-size: 15px;
    font-weight: 300;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.article-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.3s;
}

.article-card:hover .article-card-link {
    gap: 12px;
}

/* Адаптив */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .article-card-body {
        padding: 24px;
    }
    
    .article-card-title {
        font-size: 22px;
    }
}



/* ===== КАРБОНОВАЯ ТЕКСТУРА ===== */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/carbon-texture3.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}

/* ===== СТРАНИЦА ГАЛЕРЕИ — УНИКАЛЬНЫЙ СТИЛЬ ===== */

/* Контейнер для секции галереи */
.gallery-service-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

.gallery-service-section:last-child {
    border-bottom: none;
}

/* Двухколоночный layout */
.gallery-service-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
}

/* Левая колонка — оглавление + описание */
.gallery-service-sidebar {
    position: sticky;
    top: 100px;
}

.gallery-service-number {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.8;
}

.gallery-service-title {
    font-family: var(--font-body, 'Inter', sans-serif);  /* ← Обычный шрифт */
    font-size: 28px;                                      /* ← Компактный размер */
    font-weight: 600;                                     /* ← Полужирный */
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--color-light);
    position: relative;
    padding-bottom: 20px;
    word-break: normal;
    white-space: normal;
}

.gallery-service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-accent);
}

.section-light .gallery-service-title {
    color: var(--color-dark);
}

/* На мобильных ещё меньше */
@media (max-width: 768px) {
    .gallery-service-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .gallery-service-title {
        font-size: 20px;
    }
}

.gallery-service-desc {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.gallery-service-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.gallery-stat {
    text-align: left;
}

.gallery-stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
}

.gallery-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-top: 6px;
}

.gallery-service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 107, 0, 0.3);
    transition: all 0.3s;
}

.gallery-service-link:hover {
    gap: 16px;
    border-bottom-color: var(--color-accent);
}

/* Правая колонка — фотографии */
.gallery-service-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-photo-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--color-dark);
}

.gallery-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(0.2);
}

.gallery-photo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.gallery-photo-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0);
}

.gallery-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(28, 28, 30, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-photo-item:hover .gallery-photo-overlay {
    transform: translateY(0);
}

.gallery-photo-title {
    color: var(--color-light);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-photo-desc {
    color: rgba(245, 240, 235, 0.7);
    font-size: 11px;
    margin-top: 4px;
}

/* Кнопка "Смотреть все фото" */
.gallery-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 92% 100%, 0 100%);
}

.gallery-more-link:hover {
    background: var(--color-accent);
    color: var(--color-light);
    transform: translateY(-2px);
}

/* Секция "Другие работы" — упрощённый вид */
.other-works-section {
    padding: 60px 0;
}

.other-works-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 40px;
}

.other-works-title {
    font-family: var(--font-heading);
    font-size: 32px;
    text-transform: uppercase;
    position: relative;
    padding-left: 20px;
}

.other-works-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--color-accent);
}

.other-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.other-work-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.other-work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: grayscale(0.3);
}

.other-work-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0);
}

/* Адаптив */
@media (max-width: 1024px) {
    .gallery-service-layout {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }
    
    .gallery-service-photos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-works-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-service-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-service-sidebar {
        position: static;
    }
    
    .gallery-service-title {
        font-size: 32px;
    }
    
    .gallery-service-photos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .other-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-works-header {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-service-stats {
        gap: 20px;
    }
    
    .gallery-stat-number {
        font-size: 28px;
    }
    
    .gallery-photo-overlay {
        padding: 10px;
    }
    
    .gallery-photo-title {
        font-size: 11px;
    }
}

/* ===== ПЛАВАЮЩАЯ ПАНЕЛЬ (ГОРИЗОНТАЛЬНАЯ) ===== */
.float-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--color-secondary, #1a1a2e);
    display: flex;
    flex-direction: row;            /* ← ГОРИЗОНТАЛЬНО */
    align-items: center;
    justify-content: space-between;  /* ← РАЗНОСИТ ПО КРАЯМ */
    padding: 10px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.float-panel-left {
    display: flex;
    flex-direction: row;            /* ← ГОРИЗОНТАЛЬНО */
    align-items: center;
    gap: 8px;
}

.float-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition, 0.3s ease);
    flex-shrink: 0;
    text-decoration: none;
}

.float-btn svg {
    width: 22px;
    height: 22px;
}

/* Цвета кнопок мессенджеров */
.float-btn-phone {
    background: var(--color-accent, #ff6b00);
    color: #fff;
}

.float-btn-phone:hover {
    background: #ff8833;
    transform: scale(1.1);
}

.float-btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.float-btn-whatsapp:hover {
    background: #1da851;
    transform: scale(1.1);
}

.float-btn-viber {
    background: #7360f2;
    color: #fff;
}

.float-btn-viber:hover {
    background: #5d4dd6;
    transform: scale(1.1);
}

.float-btn-telegram {
    background: #2AABEE;
    color: #fff;
}

.float-btn-telegram:hover {
    background: #1a96d4;
    transform: scale(1.1);
}

/* Кнопка "Заказать звонок" */
.float-btn-callback {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-accent, #ff6b00);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition, 0.3s ease);
    white-space: nowrap;
}

.float-btn-callback:hover {
    background: #ff8833;
    transform: translateY(-2px);
}

/* Отступ снизу чтобы контент не перекрывался панелью */
body {
    padding-bottom: 68px;
}

@media (max-width: 480px) {
    
    .float-btn-callback {
        padding: 10px 16px;
    }

    .float-panel {
        padding: 8px 12px;
    }
    
    body {
        padding-bottom: 60px;
    }
}

/* ===== СТРАНИЦА ЦЕН — ИСПРАВЛЕНИЯ ===== */

/* Таблица цен */
.price-table {
    border: 1px solid rgba(255, 107, 0, 0.15);
    background: transparent;
    overflow: hidden;
    border-radius: 0;
}

.section-light .price-table {
    border-color: rgba(28, 28, 30, 0.1);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Заголовок таблицы */
.price-table-header {
    display: grid;
    grid-template-columns: 2fr 3fr 1.5fr 120px;
    background: var(--color-accent);
    color: #fff;
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Строки таблицы */
.price-table-row {
    display: grid;
    grid-template-columns: 2fr 3fr 1.5fr 120px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(245, 240, 235, 0.08);
    align-items: center;
    transition: background 0.3s;
}

.section-light .price-table-row {
    border-bottom-color: rgba(28, 28, 30, 0.06);
    color: var(--color-dark);  /* ← Тёмный текст на светлом фоне */
}

.price-table-row:hover {
    background: rgba(255, 107, 0, 0.03);
}

/* Название услуги */
.price-service-link {
    font-weight: 600;
    color: var(--color-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.section-light .price-service-link {
    color: var(--color-dark);  /* ← Тёмный текст */
}

.price-service-link:hover {
    color: var(--color-accent);
}

/* Описание */
.price-col-desc {
    font-size: 13px;
    opacity: 0.7;
    padding-right: 16px;
    line-height: 1.5;
}

.section-light .price-col-desc {
    color: var(--color-dark);
    opacity: 0.8;
}

/* Цена */
.price-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent);
    display: block;
}

.price-unit {
    display: block;
    font-size: 11px;
    opacity: 0.5;
    margin-top: 2px;
    text-transform: lowercase;
}

.section-light .price-unit {
    color: var(--color-dark);
    opacity: 0.6;
}

/* Кнопка "Записаться" */
.btn-price-order {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
    white-space: nowrap;
}

.btn-price-order:hover {
    background: var(--color-accent);
    color: #fff;
}

/* Блок с примечанием */
.price-note {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border-radius: 0;
    padding: 24px 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 4px solid var(--color-accent);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 97% 100%, 0 100%);
}

.section-light .price-note {
    background: var(--color-dark);
    border-left-color: var(--color-accent);
}

.price-note-icon {
    font-size: 28px;
    flex-shrink: 0;
    color: var(--color-accent);
}

.price-note-text {
    font-size: 15px;
    color: var(--color-dark);
    line-height: 1.7;
}

.section-light .price-note-text {
    color: var(--color-light);
}

.price-note-text strong {
    color: var(--color-accent);
    font-weight: 600;
}

/* Адаптив для таблицы */
@media (max-width: 768px) {
    .price-table-header {
        display: none;
    }
    
    .price-table-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px;
    }
    
    .price-col-desc {
        padding-right: 0;
    }
    
    .btn-price-order {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 12px;
    }
    
    .price-note {
        flex-direction: column;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .price-value {
        font-size: 20px;
    }
}

/* ===== МОБИЛЬНОЕ МЕНЮ — НОМЕР ТЕЛЕФОНА ===== */
.mobile-number {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.mobile-number a {
    color: var(--color-accent);
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.mobile-number a:hover {
    color: var(--color-light);
}

/* Адаптив для маленьких экранов */
@media (max-width: 480px) {
    .mobile-number {
        bottom: 30px;
    }
    
    .mobile-number a {
        font-size: 20px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 360px) {
    .mobile-number a {
        font-size: 18px;
    }
}